[DE] updated translations

This commit is contained in:
Maxim Kadushkin 2017-04-20 13:23:50 +03:00
parent 6842d8dfc2
commit 6e867fb9f0
3 changed files with 21 additions and 13 deletions

View file

@ -2740,7 +2740,7 @@ define([
me.toolbar.render(config);
if ( config.isEdit ) {
var tab = {action: 'review', caption: 'Review'};
var tab = {action: 'review', caption: me.toolbar.textTabReview};
var $panel = DE.getController('Common.Controllers.ReviewChanges').createToolbarPanel();
if ( $panel ) {

View file

@ -67,14 +67,7 @@ define([
var isFolded = false;
var optsFold = {timeout: 2000};
var config = {
tabs: [
{ caption: 'File', action: 'file'},
{ caption: 'Home', action: 'home'},
{ caption: 'Insert', action: 'ins'},
{ caption: 'Page Layout', action: 'layout'}
]
};
var config = {};
function hasTabInvisible() {
var _left_bound_ = $boxTabs.offset().left,
@ -195,14 +188,19 @@ define([
},
initialize: function () {
var me = this;
config.tabs = [
{ caption: me.textTabFile, action: 'file'},
{ caption: me.textTabHome, action: 'home', extcls: 'canedit'},
{ caption: me.textTabInsert, action: 'ins', extcls: 'canedit'},
{ caption: me.textTabLayout, action: 'layout', extcls: 'canedit'} ];
config.$dom = $(_.template(template, config));
/**
* UI Components
*/
var me = this;
this.SchemeNames = [
this.txtScheme1, this.txtScheme2, this.txtScheme3, this.txtScheme4, this.txtScheme5,
this.txtScheme6, this.txtScheme7, this.txtScheme8, this.txtScheme9, this.txtScheme10,
@ -2680,7 +2678,12 @@ define([
mniDelFootnote: 'Delete All Footnotes',
mniNoteSettings: 'Notes Settings',
textGotoFootnote: 'Go to Footnotes',
tipChangeChart: 'Change Chart Type'
tipChangeChart: 'Change Chart Type',
textTabFile: 'File',
textTabHome: 'Home',
textTabInsert: 'Insert',
textTabLayout: 'Page Layout',
textTabReview: 'Review'
}
})(), DE.Views.Toolbar || {}));
});

View file

@ -1630,5 +1630,10 @@
"DE.Views.Toolbar.txtScheme6": "Concourse",
"DE.Views.Toolbar.txtScheme7": "Equity",
"DE.Views.Toolbar.txtScheme8": "Flow",
"DE.Views.Toolbar.txtScheme9": "Foundry"
"DE.Views.Toolbar.txtScheme9": "Foundry",
"DE.Views.Toolbar.textTabFile": "File",
"DE.Views.Toolbar.textTabHome": "Home",
"DE.Views.Toolbar.textTabInsert": "Insert",
"DE.Views.Toolbar.textTabLayout": "Page Layout",
"DE.Views.Toolbar.textTabReview": "Review"
}