<% if (android) { %>
-
Edit Link
-
Remove Link
+
<%= scope.textEdit %>
+
<%= scope.textRemove %>
<% } else { %>
<% } %>
diff --git a/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js b/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js
index f6574b83b..2813d2b3b 100644
--- a/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js
+++ b/apps/documenteditor/mobile/app/view/edit/EditHyperlink.js
@@ -49,7 +49,7 @@ define([
], function (editTemplate, $, _, Backbone) {
'use strict';
- DE.Views.EditHyperlink = Backbone.View.extend((function() {
+ DE.Views.EditHyperlink = Backbone.View.extend(_.extend((function() {
// private
return {
@@ -79,7 +79,8 @@ define([
render: function () {
this.layout = $('
').append(this.template({
android : Common.SharedSettings.get('android'),
- phone : Common.SharedSettings.get('phone')
+ phone : Common.SharedSettings.get('phone'),
+ scope : this
}));
return this;
@@ -93,7 +94,13 @@ define([
}
return '';
- }
+ },
+
+ textLink: 'Link',
+ textDisplay: 'Display',
+ textTip: 'Screen Tip',
+ textEdit: 'Edit Link',
+ textRemove: 'Remove Link'
}
- })());
+ })(), DE.Views.EditHyperlink || {}))
});
\ No newline at end of file
diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json
index d48bb6198..cee250d71 100644
--- a/apps/documenteditor/mobile/locale/en.json
+++ b/apps/documenteditor/mobile/locale/en.json
@@ -205,5 +205,22 @@
"DE.Views.EditChart.textFill": "Fill",
"DE.Views.EditChart.textBorder": "Border",
"DE.Views.EditChart.textSize": "Size",
- "DE.Views.EditChart.textColor": "Color"
+ "DE.Views.EditChart.textColor": "Color",
+
+ "DE.Controllers.EditContainer.textSettings": "Settings",
+ "DE.Controllers.EditContainer.textText": "Text",
+ "DE.Controllers.EditContainer.textParagraph": "Paragraph",
+ "DE.Controllers.EditContainer.textTable": "Table",
+ "DE.Controllers.EditContainer.textShape": "Shape",
+ "DE.Controllers.EditContainer.textImage": "Image",
+ "DE.Controllers.EditContainer.textChart": "Chart",
+ "DE.Controllers.EditContainer.textHyperlink": "Hyperlink",
+
+ "DE.Views.EditHyperlink.textLink": "Link",
+ "DE.Views.EditHyperlink.textDisplay": "Display",
+ "DE.Views.EditHyperlink.textTip": "Screen Tip",
+ "DE.Views.EditHyperlink.textEdit": "Edit Link",
+ "DE.Views.EditHyperlink.textRemove": "Remove Link"
+
+
}
\ No newline at end of file