mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 08:38:30 -05:00
Updating localization includes to use short codes
This commit is contained in:
parent
7e342b6089
commit
960a4c43ff
1 changed files with 4 additions and 3 deletions
|
@ -46,12 +46,13 @@ Localization.includeLocales = function () {
|
|||
} else {
|
||||
Localization.currentLocale = localizationCookie;
|
||||
}
|
||||
|
||||
var topLevel = Localization.currentLocale.split('-')[0];
|
||||
// Intl locale-data
|
||||
document.write('<script src="' + Localization.root +
|
||||
'jssource/external/Intl/locale-data/jsonp/' + Localization.currentLocale + '.js"><\/script>');
|
||||
'jssource/external/Intl/locale-data/jsonp/' + topLevel + '.js"><\/script>');
|
||||
|
||||
// MessageFormat locale-data
|
||||
var topLevel = Localization.currentLocale.split('-')[0];
|
||||
document.write('<script src="' + Localization.root +
|
||||
'jssource/external/intl-messageformat/locale-data/' + topLevel + '.js"><\/script>');
|
||||
|
||||
|
@ -63,7 +64,7 @@ Localization.includeLocales = function () {
|
|||
|
||||
// Get messages synchronously
|
||||
var xhr = new XMLHttpRequest();
|
||||
xhr.open('GET', Localization.root + 'localizations/' + Localization.currentLocale + '.json', false);
|
||||
xhr.open('GET', Localization.root + 'localizations/' + topLevel + '.json', false);
|
||||
xhr.send(null);
|
||||
Localization.localizationMessages = JSON.parse(xhr.responseText);
|
||||
|
||||
|
|
Loading…
Reference in a new issue