[SSE mobile] Append translation for DocumentHolder, AddContainer, AddFunction
This commit is contained in:
parent
64d6f53869
commit
8e6c9b42de
|
@ -46,7 +46,7 @@ define([
|
|||
], function (core) {
|
||||
'use strict';
|
||||
|
||||
SSE.Controllers.DocumentHolder = Backbone.Controller.extend((function() {
|
||||
SSE.Controllers.DocumentHolder = Backbone.Controller.extend(_.extend((function() {
|
||||
// private
|
||||
var _isEdit = false;
|
||||
|
||||
|
@ -296,5 +296,5 @@ define([
|
|||
|
||||
warnMergeLostData: 'Operation can destroy data in the selected cells.<br>Continue?'
|
||||
}
|
||||
})());
|
||||
})(), SSE.Controllers.DocumentHolder || {}))
|
||||
});
|
|
@ -80,7 +80,7 @@ define([
|
|||
|
||||
uiApp.closeModal();
|
||||
|
||||
me.api.asc_getCellInfo();
|
||||
var cellinfo = me.api.asc_getCellInfo();
|
||||
var iscellmenu, isrowmenu, iscolmenu, isallmenu, ischartmenu, isimagemenu, istextshapemenu, isshapemenu, istextchartmenu,
|
||||
seltype = cellinfo.asc_getFlags().asc_getSelectionType(),
|
||||
iscelllocked = cellinfo.asc_getLocked(),
|
||||
|
|
|
@ -119,12 +119,7 @@ define([
|
|||
|
||||
onFunctionInfo: function (type) {
|
||||
this.getView('AddFunction').openFunctionInfo(type);
|
||||
},
|
||||
|
||||
txtDiagramTitle: 'Chart Title',
|
||||
txtXAxis: 'X Axis',
|
||||
txtYAxis: 'Y Axis',
|
||||
txtSeries: 'Seria'
|
||||
}
|
||||
}
|
||||
})(), SSE.Controllers.AddChart || {}))
|
||||
})(), SSE.Controllers.AddFunction || {}))
|
||||
});
|
|
@ -109,6 +109,8 @@
|
|||
"SSE.Controllers.Main.advDRMEnterPassword": "You password please:",
|
||||
"SSE.Controllers.Main.advDRMPassword": "Password",
|
||||
|
||||
"SSE.Controllers.DocumentHolder.warnMergeLostData": "Operation can destroy data in the selected cells.<br>Continue?",
|
||||
|
||||
"SSE.Controllers.Search.textNoTextFound": "Text not found",
|
||||
"SSE.Controllers.Search.textReplaceAll": "Replace All",
|
||||
"SSE.Views.Search.textFind": "Find",
|
||||
|
@ -152,6 +154,21 @@
|
|||
"SSE.Views.Settings.textEmail": "email",
|
||||
"SSE.Views.Settings.textTel": "tel",
|
||||
|
||||
"SSE.Controllers.Toolbar.dlgLeaveTitleText": "You leave the application",
|
||||
"SSE.Controllers.Toolbar.dlgLeaveMsgText": "You have unsaved changes in this document. Click \'Stay on this Page\' to await the autosave of the document. Click \'Leave this Page\' to discard all the unsaved changes.",
|
||||
"SSE.Controllers.Toolbar.leaveButtonText": "Leave this Page",
|
||||
"SSE.Controllers.Toolbar.stayButtonText": "Stay on this Page",
|
||||
|
||||
"SSE.Controllers.AddContainer.textChart": "Chart",
|
||||
"SSE.Controllers.AddContainer.textFormula": "Function",
|
||||
"SSE.Controllers.AddContainer.textShape": "Shape",
|
||||
"SSE.Controllers.AddContainer.textOther": "Other",
|
||||
|
||||
"SSE.Controllers.AddChart.txtDiagramTitle": "Chart Title",
|
||||
"SSE.Controllers.AddChart.txtXAxis": "X Axis",
|
||||
"SSE.Controllers.AddChart.txtYAxis": "Y Axis",
|
||||
"SSE.Controllers.AddChart.txtSeries": "Seria",
|
||||
|
||||
"SSE.Views.AddFunction.textGroups": "CATEGORIES",
|
||||
"SSE.Views.AddFunction.sCatLogical": "Logical",
|
||||
"SSE.Views.AddFunction.sCatDateAndTime": "Date and time",
|
||||
|
@ -163,6 +180,9 @@
|
|||
"SSE.Views.AddFunction.sCatStatistical": "Statistical",
|
||||
"SSE.Views.AddFunction.sCatTextAndData": "Text and data",
|
||||
|
||||
"SSE.Controllers.AddOther.textInvalidRange": "ERROR! Invalid cells range",
|
||||
"SSE.Controllers.AddOther.textEmptyImgUrl": "You need to specify image URL.",
|
||||
"SSE.Controllers.AddOther.txtNotUrl": "This field should be a URL in the format 'http://www.example.com'",
|
||||
"SSE.Views.AddOther.textInsertImage": "Insert Image",
|
||||
"SSE.Views.AddOther.textSort": "Sort and Filter",
|
||||
"SSE.Views.AddOther.textLink": "Link",
|
||||
|
|
Loading…
Reference in a new issue