[DE] Refactoring for localization
This commit is contained in:
parent
bd44f6b773
commit
c0507f7749
|
@ -56,8 +56,8 @@ Common.Locale = new(function() {
|
|||
obj = obj[p[i]];
|
||||
}
|
||||
|
||||
if (obj) {
|
||||
obj[p[p.length - 1]] = l10n[prop];
|
||||
if (obj && obj.prototype) {
|
||||
obj.prototype[p[p.length - 1]] = l10n[prop];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@ define([
|
|||
], function ($, _, Backbone, template, template_view) {
|
||||
'use strict';
|
||||
|
||||
DE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend((function(){
|
||||
DE.Views.Toolbar = Common.UI.Mixtbar.extend((function(){
|
||||
|
||||
return {
|
||||
el: '#toolbar',
|
||||
|
@ -2326,5 +2326,5 @@ define([
|
|||
textRemWatermark: 'Remove Watermark',
|
||||
tipWatermark: 'Edit watermark'
|
||||
}
|
||||
})(), DE.Views.Toolbar || {}));
|
||||
})());
|
||||
});
|
||||
|
|
|
@ -159,8 +159,6 @@ require([
|
|||
]
|
||||
});
|
||||
|
||||
Common.Locale.apply(
|
||||
function() {
|
||||
require([
|
||||
'documenteditor/main/app/controller/Viewport',
|
||||
'documenteditor/main/app/controller/DocumentHolder',
|
||||
|
@ -196,10 +194,10 @@ require([
|
|||
,'common/main/lib/controller/Desktop'
|
||||
], function() {
|
||||
window.compareVersions = true;
|
||||
Common.Locale.apply(function () {
|
||||
app.start();
|
||||
});
|
||||
}
|
||||
);
|
||||
});
|
||||
}, function(err) {
|
||||
if (err.requireType == 'timeout' && !reqerr && window.requireTimeourError) {
|
||||
reqerr = window.requireTimeourError();
|
||||
|
|
Loading…
Reference in a new issue