[SSE] Bug 41549
This commit is contained in:
parent
61de22e1d7
commit
13276e3f16
|
@ -65,6 +65,7 @@
|
||||||
saveAsUrl: 'folder for saving files'
|
saveAsUrl: 'folder for saving files'
|
||||||
licenseUrl: <url for license>,
|
licenseUrl: <url for license>,
|
||||||
customerId: <customer id>,
|
customerId: <customer id>,
|
||||||
|
region: <regional settings> // can be 'en-us' or lang code
|
||||||
|
|
||||||
user: {
|
user: {
|
||||||
id: 'user id',
|
id: 'user id',
|
||||||
|
|
|
@ -308,6 +308,7 @@ define([
|
||||||
this.appOptions.createUrl = this.editorConfig.createUrl;
|
this.appOptions.createUrl = this.editorConfig.createUrl;
|
||||||
this.appOptions.lang = this.editorConfig.lang;
|
this.appOptions.lang = this.editorConfig.lang;
|
||||||
this.appOptions.location = (typeof (this.editorConfig.location) == 'string') ? this.editorConfig.location.toLowerCase() : '';
|
this.appOptions.location = (typeof (this.editorConfig.location) == 'string') ? this.editorConfig.location.toLowerCase() : '';
|
||||||
|
this.appOptions.region = (typeof (this.editorConfig.region) == 'string') ? this.editorConfig.region.toLowerCase() : this.editorConfig.region;
|
||||||
this.appOptions.canAutosave = false;
|
this.appOptions.canAutosave = false;
|
||||||
this.appOptions.canAnalytics = false;
|
this.appOptions.canAnalytics = false;
|
||||||
this.appOptions.sharingSettingsUrl = this.editorConfig.sharingSettingsUrl;
|
this.appOptions.sharingSettingsUrl = this.editorConfig.sharingSettingsUrl;
|
||||||
|
@ -333,7 +334,13 @@ define([
|
||||||
if (value!==null)
|
if (value!==null)
|
||||||
this.api.asc_setLocale(parseInt(value));
|
this.api.asc_setLocale(parseInt(value));
|
||||||
else {
|
else {
|
||||||
this.api.asc_setLocale((this.editorConfig.lang) ? parseInt(Common.util.LanguageInfo.getLocalLanguageCode(this.editorConfig.lang)) : 0x0409);
|
value = this.appOptions.region;
|
||||||
|
value = Common.util.LanguageInfo.getLanguages().hasOwnProperty(value) ? value : Common.util.LanguageInfo.getLocalLanguageCode(value);
|
||||||
|
if (value!==null)
|
||||||
|
value = parseInt(value);
|
||||||
|
else
|
||||||
|
value = (this.editorConfig.lang) ? parseInt(Common.util.LanguageInfo.getLocalLanguageCode(this.editorConfig.lang)) : 0x0409;
|
||||||
|
this.api.asc_setLocale(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
value = Common.localStorage.getBool("sse-settings-r1c1");
|
value = Common.localStorage.getBool("sse-settings-r1c1");
|
||||||
|
|
Loading…
Reference in a new issue