diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 5574a51f6..24d244e68 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -160,7 +160,8 @@ define([ "The Formula Not In Table": this.txtFormulaNotInTable, "Table Index Cannot be Zero": this.txtTableInd, "Undefined Bookmark": this.txtUndefBookmark, - "Unexpected End of Formula": this.txtEndOfFormula + "Unexpected End of Formula": this.txtEndOfFormula, + "Hyperlink": this.txtHyperlink }; styleNames.forEach(function(item){ translate[item] = me.translationTable[item] = me['txtStyle_' + item.replace(/ /g, '_')] || item; @@ -2574,7 +2575,8 @@ define([ txtUndefBookmark: 'Undefined Bookmark', txtEndOfFormula: 'Unexpected End of Formula', errorEmailClient: 'No email client could be found', - textCustomLoader: 'Please note that according to the terms of the license you are not entitled to change the loader.
Please contact our Sales Department to get a quote.' + textCustomLoader: 'Please note that according to the terms of the license you are not entitled to change the loader.
Please contact our Sales Department to get a quote.', + txtHyperlink: 'Hyperlink' } })(), DE.Controllers.Main || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 456f6135c..bea82f22b 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -436,6 +436,7 @@ "DE.Controllers.Main.txtFooter": "Footer", "DE.Controllers.Main.txtFormulaNotInTable": "The Formula Not In Table", "DE.Controllers.Main.txtHeader": "Header", + "DE.Controllers.Main.txtHyperlink": "Hyperlink", "DE.Controllers.Main.txtIndTooLarge": "Index Too Large", "DE.Controllers.Main.txtLines": "Lines", "DE.Controllers.Main.txtMath": "Math", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 8ee6592a8..50a1a2524 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -436,6 +436,7 @@ "DE.Controllers.Main.txtFooter": "Нижний колонтитул", "DE.Controllers.Main.txtFormulaNotInTable": "Формула не в таблице", "DE.Controllers.Main.txtHeader": "Верхний колонтитул", + "DE.Controllers.Main.txtHyperlink": "Гиперссылка", "DE.Controllers.Main.txtIndTooLarge": "Индекс слишком большой", "DE.Controllers.Main.txtLines": "Линии", "DE.Controllers.Main.txtMath": "Математические знаки",