From c39cee6880009b465e09182aa519bab166f6f0ef Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Sun, 26 Jun 2022 13:43:51 +0300 Subject: [PATCH] Fix tooltips with special keys on Win/Mac, fix translation --- apps/common/main/lib/util/utils.js | 12 +++++++++--- .../main/app/controller/DocumentHolder.js | 2 +- apps/documenteditor/main/app/view/DocumentHolder.js | 2 +- apps/documenteditor/main/locale/az.json | 2 +- apps/documenteditor/main/locale/be.json | 2 +- apps/documenteditor/main/locale/bg.json | 2 +- apps/documenteditor/main/locale/ca.json | 2 +- apps/documenteditor/main/locale/cs.json | 2 +- apps/documenteditor/main/locale/da.json | 2 +- apps/documenteditor/main/locale/de.json | 5 ++++- apps/documenteditor/main/locale/el.json | 2 +- apps/documenteditor/main/locale/en.json | 5 ++++- apps/documenteditor/main/locale/es.json | 2 +- apps/documenteditor/main/locale/eu.json | 2 +- apps/documenteditor/main/locale/fi.json | 2 +- apps/documenteditor/main/locale/fr.json | 2 +- apps/documenteditor/main/locale/gl.json | 2 +- apps/documenteditor/main/locale/hu.json | 2 +- apps/documenteditor/main/locale/hy.json | 2 +- apps/documenteditor/main/locale/id.json | 2 +- apps/documenteditor/main/locale/it.json | 2 +- apps/documenteditor/main/locale/ja.json | 2 +- apps/documenteditor/main/locale/ko.json | 2 +- apps/documenteditor/main/locale/lo.json | 2 +- apps/documenteditor/main/locale/lv.json | 2 +- apps/documenteditor/main/locale/ms.json | 2 +- apps/documenteditor/main/locale/nl.json | 2 +- apps/documenteditor/main/locale/pl.json | 2 +- apps/documenteditor/main/locale/pt-PT.json | 2 +- apps/documenteditor/main/locale/pt.json | 2 +- apps/documenteditor/main/locale/ro.json | 2 +- apps/documenteditor/main/locale/ru.json | 2 +- apps/documenteditor/main/locale/sk.json | 2 +- apps/documenteditor/main/locale/sl.json | 2 +- apps/documenteditor/main/locale/sv.json | 2 +- apps/documenteditor/main/locale/tr.json | 2 +- apps/documenteditor/main/locale/uk.json | 2 +- apps/documenteditor/main/locale/vi.json | 2 +- apps/documenteditor/main/locale/zh-TW.json | 2 +- apps/documenteditor/main/locale/zh.json | 2 +- .../main/app/controller/DocumentHolder.js | 2 +- .../main/app/view/DocumentHolder.js | 2 +- apps/presentationeditor/main/locale/az.json | 2 +- apps/presentationeditor/main/locale/be.json | 2 +- apps/presentationeditor/main/locale/bg.json | 2 +- apps/presentationeditor/main/locale/ca.json | 2 +- apps/presentationeditor/main/locale/cs.json | 2 +- apps/presentationeditor/main/locale/da.json | 2 +- apps/presentationeditor/main/locale/de.json | 5 ++++- apps/presentationeditor/main/locale/el.json | 2 +- apps/presentationeditor/main/locale/en.json | 5 ++++- apps/presentationeditor/main/locale/es.json | 2 +- apps/presentationeditor/main/locale/eu.json | 2 +- apps/presentationeditor/main/locale/fi.json | 2 +- apps/presentationeditor/main/locale/fr.json | 2 +- apps/presentationeditor/main/locale/gl.json | 2 +- apps/presentationeditor/main/locale/hu.json | 2 +- apps/presentationeditor/main/locale/hy.json | 2 +- apps/presentationeditor/main/locale/id.json | 2 +- apps/presentationeditor/main/locale/it.json | 2 +- apps/presentationeditor/main/locale/ja.json | 2 +- apps/presentationeditor/main/locale/ko.json | 2 +- apps/presentationeditor/main/locale/lo.json | 2 +- apps/presentationeditor/main/locale/lv.json | 2 +- apps/presentationeditor/main/locale/ms.json | 2 +- apps/presentationeditor/main/locale/nl.json | 2 +- apps/presentationeditor/main/locale/pl.json | 2 +- apps/presentationeditor/main/locale/pt-PT.json | 2 +- apps/presentationeditor/main/locale/pt.json | 2 +- apps/presentationeditor/main/locale/ro.json | 2 +- apps/presentationeditor/main/locale/ru.json | 2 +- apps/presentationeditor/main/locale/sk.json | 2 +- apps/presentationeditor/main/locale/sl.json | 2 +- apps/presentationeditor/main/locale/sv.json | 2 +- apps/presentationeditor/main/locale/tr.json | 2 +- apps/presentationeditor/main/locale/uk.json | 2 +- apps/presentationeditor/main/locale/vi.json | 2 +- apps/presentationeditor/main/locale/zh-TW.json | 2 +- apps/presentationeditor/main/locale/zh.json | 2 +- 79 files changed, 99 insertions(+), 81 deletions(-) diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 92ec5261f..52ca72d75 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -436,7 +436,7 @@ var metrics = new(function() { } })(); -Common.Utils.Metric = _extend_object(Common.Utils.Metric, metrics); +Common.Utils.Metric = _extend_object(metrics, Common.Utils.Metric); Common.Utils.RGBColor = function(colorString) { var r, g, b; @@ -603,8 +603,12 @@ Common.Utils.RGBColor = function(colorString) { } }; -Common.Utils.String = new (function() { +var utilsString = new (function() { return { + textCtrl: 'Ctrl', + textShift: 'Shift', + textAlt: 'Alt', + format: function(format) { var args = _.toArray(arguments).slice(1); if (args.length && typeof args[0] == 'object') @@ -648,7 +652,7 @@ Common.Utils.String = new (function() { return Common.Utils.String.format(template, string.replace(/\+(?=\S)/g, '').replace(/Ctrl|ctrl/g, '⌘').replace(/Alt|alt/g, '⌥').replace(/Shift|shift/g, '⇧')); } - return Common.Utils.String.format(template, string); + return Common.Utils.String.format(template, string.replace(/Ctrl|ctrl/g, this.textCtrl).replace(/Alt|alt/g, this.textAlt).replace(/Shift|shift/g, this.textShift)); }, parseFloat: function(string) { @@ -680,6 +684,8 @@ Common.Utils.String = new (function() { } })(); +Common.Utils.String = _extend_object(utilsString, Common.Utils.String); + Common.Utils.isBrowserSupported = function() { return !((Common.Utils.ieVersion != 0 && Common.Utils.ieVersion < 10.0) || (Common.Utils.safariVersion != 0 && Common.Utils.safariVersion < 5.0) || diff --git a/apps/documenteditor/main/app/controller/DocumentHolder.js b/apps/documenteditor/main/app/controller/DocumentHolder.js index bb8e521f1..edd05a06c 100644 --- a/apps/documenteditor/main/app/controller/DocumentHolder.js +++ b/apps/documenteditor/main/app/controller/DocumentHolder.js @@ -998,7 +998,7 @@ define([ ToolTip = Common.Utils.String.htmlEncode(ToolTip); if (screenTip.tipType !== type || screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 ) { - screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (ToolTip + '
' + me.documentHolder.txtPressLink + '') : ToolTip); + screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (ToolTip + '
' + Common.Utils.String.platformKey('Ctrl', me.documentHolder.txtPressLink) + '') : ToolTip); screenTip.tipLength = ToolTip.length; screenTip.strTip = ToolTip; screenTip.tipType = type; diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 41e2eba48..86905e901 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -2876,7 +2876,7 @@ define([ styleText : 'Formatting as Style', saveStyleText : 'Create new style', updateStyleText : 'Update %1 style', - txtPressLink : 'Press CTRL and click link', + txtPressLink : 'Press {0} and click link', selectText : 'Select', insertRowText : 'Insert Row', insertColumnText : 'Insert Column', diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index c018b1eab..1b30cd9ec 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -1569,7 +1569,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Mətnin üstündə xətt", "DE.Views.DocumentHolder.txtOverwriteCells": "Xanaların üzərinə yazın", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mənbə formatını saxlayın", - "DE.Views.DocumentHolder.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin", + "DE.Views.DocumentHolder.txtPressLink": "{0} düyməsinə basıb linkə klikləyin", "DE.Views.DocumentHolder.txtPrintSelection": "Seçimi çap edin", "DE.Views.DocumentHolder.txtRemFractionBar": "Kəsr xəttini silin", "DE.Views.DocumentHolder.txtRemLimit": "Limiti silin", diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index 019484c50..4dec95a20 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -1501,7 +1501,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Лінія па-над тэкстам", "DE.Views.DocumentHolder.txtOverwriteCells": "Перазапісаць ячэйкі", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Пакінуць зыходнае фарматаванне", - "DE.Views.DocumentHolder.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", + "DE.Views.DocumentHolder.txtPressLink": "Націсніце {0} і пстрыкніце па спасылцы", "DE.Views.DocumentHolder.txtPrintSelection": "Надрукаваць вылучанае", "DE.Views.DocumentHolder.txtRemFractionBar": "Выдаліць рыску дробу", "DE.Views.DocumentHolder.txtRemLimit": "Выдаліць ліміт", diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index f5dc726a2..7f0c0dbaa 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -1272,7 +1272,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Завършете текст", "DE.Views.DocumentHolder.txtOverwriteCells": "Презаписване на клетки", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Запазете форматирането на източника", - "DE.Views.DocumentHolder.txtPressLink": "Натиснете CTRL и кликнете върху връзката", + "DE.Views.DocumentHolder.txtPressLink": "Натиснете {0} и кликнете върху връзката", "DE.Views.DocumentHolder.txtRemFractionBar": "Премахване на фракционната лента", "DE.Views.DocumentHolder.txtRemLimit": "Премахване на ограничението", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Премахване на акцент", diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 69ddbae69..20bcdba04 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriu les cel·les", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", - "DE.Views.DocumentHolder.txtPressLink": "Premeu CTRL i feu clic a l'enllaç", + "DE.Views.DocumentHolder.txtPressLink": "Premeu {0} i feu clic a l'enllaç", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", "DE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", "DE.Views.DocumentHolder.txtRemLimit": "Suprimeix el límit", diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 6af05fb02..f4d6fb513 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Čárka nad textem", "DE.Views.DocumentHolder.txtOverwriteCells": "Přepsat buňky", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", - "DE.Views.DocumentHolder.txtPressLink": "Stiskněte CTRL a klikněte na odkaz", + "DE.Views.DocumentHolder.txtPressLink": "Stiskněte {0} a klikněte na odkaz", "DE.Views.DocumentHolder.txtPrintSelection": "Vytisknout vybrané", "DE.Views.DocumentHolder.txtRemFractionBar": "Odstranit zlomkovou čáru", "DE.Views.DocumentHolder.txtRemLimit": "Odebrat limit", diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index ecef6db09..d56c71d49 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -1569,7 +1569,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Linie over tekst", "DE.Views.DocumentHolder.txtOverwriteCells": "Overskriv celler", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behold oprindelig formattering", - "DE.Views.DocumentHolder.txtPressLink": "Tryk CTRL og klik på linket", + "DE.Views.DocumentHolder.txtPressLink": "Tryk {0} og klik på linket", "DE.Views.DocumentHolder.txtPrintSelection": "Printer-valg", "DE.Views.DocumentHolder.txtRemFractionBar": "Fjern fraktionsbar", "DE.Views.DocumentHolder.txtRemLimit": "Slet begrænsning", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index abea14fec..d6c02286f 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -207,6 +207,9 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Strg", + "Common.Utils.String.textShift": "Umschalt", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "Adresse:", "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", @@ -1618,7 +1621,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Balken über dem Text", "DE.Views.DocumentHolder.txtOverwriteCells": "Zellen überschreiben", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten", - "DE.Views.DocumentHolder.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", + "DE.Views.DocumentHolder.txtPressLink": "Drücken Sie {0} und klicken Sie auf den Link", "DE.Views.DocumentHolder.txtPrintSelection": "Auswahl drucken", "DE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen", "DE.Views.DocumentHolder.txtRemLimit": "Grenzwert entfernen", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 65b86fd89..7eb5f8486 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Μπάρα πάνω από κείμενο", "DE.Views.DocumentHolder.txtOverwriteCells": "Αντικατάσταση κελιών", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής", - "DE.Views.DocumentHolder.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", + "DE.Views.DocumentHolder.txtPressLink": "Πατήστε {0} και κάντε κλικ στο σύνδεσμο", "DE.Views.DocumentHolder.txtPrintSelection": "Εκτύπωση Επιλογής", "DE.Views.DocumentHolder.txtRemFractionBar": "Αφαίρεση γραμμής κλάσματος", "DE.Views.DocumentHolder.txtRemLimit": "Αφαίρεση ορίου", diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 76ab2592b..eb4275d16 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -211,6 +211,9 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "address: ", "Common.Views.About.txtLicensee": "LICENSEE", "Common.Views.About.txtLicensor": "LICENSOR", @@ -1626,7 +1629,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", - "DE.Views.DocumentHolder.txtPressLink": "Press Ctrl and click link", + "DE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "DE.Views.DocumentHolder.txtPrintSelection": "Print Selection", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index acfa162e7..f2d66d601 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir las celdas", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original", - "DE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace", + "DE.Views.DocumentHolder.txtPressLink": "Pulse {0} y haga clic en el enlace", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "DE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción", "DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 39f92198f..2201e7e5e 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra testuaren gainean", "DE.Views.DocumentHolder.txtOverwriteCells": "Gainidatzi gelaxkak", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantendu jatorrizko formatua", - "DE.Views.DocumentHolder.txtPressLink": "Sakatu Ctrl eta egin klik estekan", + "DE.Views.DocumentHolder.txtPressLink": "Sakatu {0} eta egin klik estekan", "DE.Views.DocumentHolder.txtPrintSelection": "Inprimatu hautapena", "DE.Views.DocumentHolder.txtRemFractionBar": "Kendu frakzio-barra", "DE.Views.DocumentHolder.txtRemLimit": "Kendu muga", diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index f4f120ca5..36183c2ba 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -956,7 +956,7 @@ "DE.Views.DocumentHolder.txtMatchBrackets": "Sovita hakasulkeet argumentin korkeuteen", "DE.Views.DocumentHolder.txtMatrixAlign": "Matriisin tasaus", "DE.Views.DocumentHolder.txtOverbar": "Tekstin yläpalkki", - "DE.Views.DocumentHolder.txtPressLink": "Paina CTRL näppäintä ja klikkaa linkkiä", + "DE.Views.DocumentHolder.txtPressLink": "Paina {0} näppäintä ja klikkaa linkkiä", "DE.Views.DocumentHolder.txtRemFractionBar": "Poista murtoluku pylväs", "DE.Views.DocumentHolder.txtRemLimit": "Poista rajoitus", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Poista aksentti kirjain", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 9bdcbaa0d..d28fd860a 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barre au-dessus d'un texte", "DE.Views.DocumentHolder.txtOverwriteCells": "Remplacer les cellules", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source", - "DE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", + "DE.Views.DocumentHolder.txtPressLink": "Appuyez sur {0} et cliquez sur le lien", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimer la sélection", "DE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction", "DE.Views.DocumentHolder.txtRemLimit": "Supprimer la limite", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 984e44efc..fd6215e5c 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir as celdas", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatación original", - "DE.Views.DocumentHolder.txtPressLink": "Prema Ctrl e na ligazón", + "DE.Views.DocumentHolder.txtPressLink": "Prema {0} e na ligazón", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "DE.Views.DocumentHolder.txtRemFractionBar": "Eliminar a barra de fracción", "DE.Views.DocumentHolder.txtRemLimit": "Eliminar límite", diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 012046e31..f0f3f8db6 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött", "DE.Views.DocumentHolder.txtOverwriteCells": "Cellák felülírása", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása", - "DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", + "DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a {0} billentyűt és kattintson a hivatkozásra", "DE.Views.DocumentHolder.txtPrintSelection": "Nyomtató kiválasztás", "DE.Views.DocumentHolder.txtRemFractionBar": "Törtjel eltávolítása", "DE.Views.DocumentHolder.txtRemLimit": "Limit eltávolítása", diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index cffbc7d96..d3cc4deb0 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Տեքստի վրա գիծ", "DE.Views.DocumentHolder.txtOverwriteCells": "Փոխարինել վանդակների բովանդակությունը", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Պահպանել սկզբնական ձևաչափը", - "DE.Views.DocumentHolder.txtPressLink": "Սեղմել Ctrl և անցնել հղումը", + "DE.Views.DocumentHolder.txtPressLink": "Սեղմել {0} և անցնել հղումը", "DE.Views.DocumentHolder.txtPrintSelection": "Տպել ընտրվածքը", "DE.Views.DocumentHolder.txtRemFractionBar": "Հեռացնել կոտորակի գիծը", "DE.Views.DocumentHolder.txtRemLimit": "Հեռացնել սահմանը", diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index db551b104..2d240427b 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -1584,7 +1584,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar di atas teks", "DE.Views.DocumentHolder.txtOverwriteCells": "Tiban sel", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", - "DE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik link", + "DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik link", "DE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan", "DE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", "DE.Views.DocumentHolder.txtRemLimit": "Hilangkan limit", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 22d8d43cd..96682099c 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sopra al testo", "DE.Views.DocumentHolder.txtOverwriteCells": "Sovrascrivi celle", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantieni la formattazione sorgente", - "DE.Views.DocumentHolder.txtPressLink": "Premi CTRL e clicca sul collegamento", + "DE.Views.DocumentHolder.txtPressLink": "Premi {0} e clicca sul collegamento", "DE.Views.DocumentHolder.txtPrintSelection": "Stampa Selezione", "DE.Views.DocumentHolder.txtRemFractionBar": "Rimuovi la barra di frazione", "DE.Views.DocumentHolder.txtRemLimit": "Rimuovi limite", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 9af1424a2..23a40e9de 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "テキストの上のバー", "DE.Views.DocumentHolder.txtOverwriteCells": "セルを上書きする", "DE.Views.DocumentHolder.txtPasteSourceFormat": "元の書式付けを保存する", - "DE.Views.DocumentHolder.txtPressLink": "Ctrlキーを押しながらリンクをクリックしてください", + "DE.Views.DocumentHolder.txtPressLink": "{0}キーを押しながらリンクをクリックしてください", "DE.Views.DocumentHolder.txtPrintSelection": "選択範囲の印刷", "DE.Views.DocumentHolder.txtRemFractionBar": "分数線の削除", "DE.Views.DocumentHolder.txtRemLimit": "制限を削除する", diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index b7543c2c8..621917c9a 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기", "DE.Views.DocumentHolder.txtOverwriteCells": "셀에 덮어쓰기", "DE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요", - "DE.Views.DocumentHolder.txtPressLink": "Ctrl 키를 누르고 링크를 클릭합니다.", + "DE.Views.DocumentHolder.txtPressLink": "{0} 키를 누르고 링크를 클릭합니다.", "DE.Views.DocumentHolder.txtPrintSelection": "선택 항목 인쇄", "DE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거", "DE.Views.DocumentHolder.txtRemLimit": "제한 제거", diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index e3122f883..51f0cbee7 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "ຂີດທັບຕົວໜັງສື", "DE.Views.DocumentHolder.txtOverwriteCells": "ຂຽນທັບແຊວ", "DE.Views.DocumentHolder.txtPasteSourceFormat": "ຮັກສາຮູບແບບແຫຼ່ງຂໍ້ມູນ", - "DE.Views.DocumentHolder.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", + "DE.Views.DocumentHolder.txtPressLink": "ກົດ {0} ແລະກົດລິ້ງ", "DE.Views.DocumentHolder.txtPrintSelection": "ານຄັດເລືອກການພິມ", "DE.Views.DocumentHolder.txtRemFractionBar": "ລຶບແຖບສວ່ນໜຶ່ງອອກ", "DE.Views.DocumentHolder.txtRemLimit": "ເອົາຂໍ້ຈຳກັດອອກ", diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index 35882dd72..a99946de3 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -966,7 +966,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Pārrakstīt šūnas", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Atstāt sākotnējo formatējumu", - "DE.Views.DocumentHolder.txtPressLink": "Nospiediet CTRL un noklikšķiniet saiti", + "DE.Views.DocumentHolder.txtPressLink": "Nospiediet {0} un noklikšķiniet saiti", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Remove accent character", diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index c64c5657c..330a312ea 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -1582,7 +1582,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar melepasi teks", "DE.Views.DocumentHolder.txtOverwriteCells": "Tulis Ganti Sel", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Kekalkan sumber pemformatan", - "DE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik pautan", + "DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik pautan", "DE.Views.DocumentHolder.txtPrintSelection": "Pemilihan Cetakan", "DE.Views.DocumentHolder.txtRemFractionBar": "Alih keluar bar pecahan", "DE.Views.DocumentHolder.txtRemLimit": "Alih keluar had", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 9f6b0cb17..7e6b4f61d 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Streep boven tekst", "DE.Views.DocumentHolder.txtOverwriteCells": "Cellen overschrijven", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", - "DE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling", + "DE.Views.DocumentHolder.txtPressLink": "Druk op {0} en klik op koppeling", "DE.Views.DocumentHolder.txtPrintSelection": "Selectie afdrukken", "DE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", "DE.Views.DocumentHolder.txtRemLimit": "Limiet verwijderen", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 57c43b75a..cf41e9243 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -1572,7 +1572,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", "DE.Views.DocumentHolder.txtOverwriteCells": "Wymień zawartość komórki", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Zachowaj formatowanie źródłowe", - "DE.Views.DocumentHolder.txtPressLink": "Naciśnij Ctrl i kliknij w link", + "DE.Views.DocumentHolder.txtPressLink": "Naciśnij {0} i kliknij w link", "DE.Views.DocumentHolder.txtPrintSelection": "Drukuj wybrane", "DE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", "DE.Views.DocumentHolder.txtRemLimit": "Usuń limit", diff --git a/apps/documenteditor/main/locale/pt-PT.json b/apps/documenteditor/main/locale/pt-PT.json index 662dfaa60..36bbe4329 100644 --- a/apps/documenteditor/main/locale/pt-PT.json +++ b/apps/documenteditor/main/locale/pt-PT.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra por cima do texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Substituir células", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", - "DE.Views.DocumentHolder.txtPressLink": "Prima Ctrl e clique na ligação", + "DE.Views.DocumentHolder.txtPressLink": "Prima {0} e clique na ligação", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "DE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", "DE.Views.DocumentHolder.txtRemLimit": "Remover limite", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 51c69b92d..52a005760 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobrescrever células", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação da origem", - "DE.Views.DocumentHolder.txtPressLink": "Pressione CTRL e clique no link", + "DE.Views.DocumentHolder.txtPressLink": "Pressione {0} e clique no link", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "DE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", "DE.Views.DocumentHolder.txtRemLimit": "Remover limite", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 504296b27..1ab03d52e 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -1626,7 +1626,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bară deasupra textului", "DE.Views.DocumentHolder.txtOverwriteCells": "Suprascriere celule", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Păstrare formatare sursă", - "DE.Views.DocumentHolder.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", + "DE.Views.DocumentHolder.txtPressLink": "Apăsați {0} și faceți clic pe linkul", "DE.Views.DocumentHolder.txtPrintSelection": "Imprimare selecție", "DE.Views.DocumentHolder.txtRemFractionBar": "Eliminare bară de fracție", "DE.Views.DocumentHolder.txtRemLimit": "Eliminare limită", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 59c005cdb..1115bed98 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -1626,7 +1626,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Черта над текстом", "DE.Views.DocumentHolder.txtOverwriteCells": "Заменить содержимое ячеек", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование", - "DE.Views.DocumentHolder.txtPressLink": "Нажмите Ctrl и щелкните по ссылке", + "DE.Views.DocumentHolder.txtPressLink": "Нажмите {0} и щелкните по ссылке", "DE.Views.DocumentHolder.txtPrintSelection": "Напечатать выделенное", "DE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту", "DE.Views.DocumentHolder.txtRemLimit": "Удалить предел", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index be69cf270..f63430b8c 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -1584,7 +1584,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Čiara nad textom", "DE.Views.DocumentHolder.txtOverwriteCells": "Prepísať bunky", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Uchovať zdrojové formátovanie", - "DE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", + "DE.Views.DocumentHolder.txtPressLink": "Stlačte {0} a kliknite na odkaz", "DE.Views.DocumentHolder.txtPrintSelection": "Výber tlače", "DE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "DE.Views.DocumentHolder.txtRemLimit": "Odstrániť limitu", diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index a6caaaa87..4a53ab72d 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -1083,7 +1083,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ohrani izvorno oblikovanje", - "DE.Views.DocumentHolder.txtPressLink": "Pritisnite CTRL in pritisnite povezavo", + "DE.Views.DocumentHolder.txtPressLink": "Pritisnite {0} in pritisnite povezavo", "DE.Views.DocumentHolder.txtPrintSelection": "Nastisni izbor", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 90c03b301..dd40e5824 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -1584,7 +1584,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Linje ovanför text", "DE.Views.DocumentHolder.txtOverwriteCells": "Skriv över celler", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll källformatering", - "DE.Views.DocumentHolder.txtPressLink": "Tryck på CTRL och klicka på länken", + "DE.Views.DocumentHolder.txtPressLink": "Tryck på {0} och klicka på länken", "DE.Views.DocumentHolder.txtPrintSelection": "Skriv ut markering", "DE.Views.DocumentHolder.txtRemFractionBar": "Ta bort fraktionslinje", "DE.Views.DocumentHolder.txtRemLimit": "Ta bort begränsning", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 7386264cf..8a7f60afd 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -1618,7 +1618,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Hücrelerin üzerine yaz", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Kaynak biçimlendirmesini koruyun", - "DE.Views.DocumentHolder.txtPressLink": "Ctrl'ye basın ve bağlantıya tıklayın", + "DE.Views.DocumentHolder.txtPressLink": "{0}'ye basın ve bağlantıya tıklayın", "DE.Views.DocumentHolder.txtPrintSelection": "Seçimi Yazdır", "DE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", "DE.Views.DocumentHolder.txtRemLimit": "Remove limit", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 8fafe542d..d434ab71e 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -1580,7 +1580,7 @@ "DE.Views.DocumentHolder.txtOverbar": "Риска над текстом", "DE.Views.DocumentHolder.txtOverwriteCells": "Перезаписати комірки", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", - "DE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "DE.Views.DocumentHolder.txtPressLink": "Натисніть {0} та клацніть по посиланню", "DE.Views.DocumentHolder.txtPrintSelection": "Надрукувати виділене", "DE.Views.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", "DE.Views.DocumentHolder.txtRemLimit": "Вилучити обмеження", diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index c16aaaf88..2f60b0c02 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -854,7 +854,7 @@ "DE.Views.DocumentHolder.txtMatchBrackets": "Chỉnh dấu ngoặc phù hợp với độ cao đối số", "DE.Views.DocumentHolder.txtMatrixAlign": "Căn chỉnh ma trận", "DE.Views.DocumentHolder.txtOverbar": "Gạch trên văn bản", - "DE.Views.DocumentHolder.txtPressLink": "Ấn CTRL và nhấp vào liên kết", + "DE.Views.DocumentHolder.txtPressLink": "Ấn {0} và nhấp vào liên kết", "DE.Views.DocumentHolder.txtRemFractionBar": "Xóa dấu phân số", "DE.Views.DocumentHolder.txtRemLimit": "Xóa giới hạn", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Xóa ký tự dấu phụ", diff --git a/apps/documenteditor/main/locale/zh-TW.json b/apps/documenteditor/main/locale/zh-TW.json index f47995b9e..ada8f16d1 100644 --- a/apps/documenteditor/main/locale/zh-TW.json +++ b/apps/documenteditor/main/locale/zh-TW.json @@ -1586,7 +1586,7 @@ "DE.Views.DocumentHolder.txtOverbar": "槓覆蓋文字", "DE.Views.DocumentHolder.txtOverwriteCells": "覆蓋儲存格", "DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "DE.Views.DocumentHolder.txtPressLink": "按Ctrl並單擊連結", + "DE.Views.DocumentHolder.txtPressLink": "按{0}並單擊連結", "DE.Views.DocumentHolder.txtPrintSelection": "列印選擇", "DE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", "DE.Views.DocumentHolder.txtRemLimit": "取消限制", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index cc163eb67..8f87062c3 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -1619,7 +1619,7 @@ "DE.Views.DocumentHolder.txtOverbar": "文本上一条", "DE.Views.DocumentHolder.txtOverwriteCells": "覆盖单元格", "DE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "DE.Views.DocumentHolder.txtPressLink": "按CTRL并单击链接", + "DE.Views.DocumentHolder.txtPressLink": "按{0}并单击链接", "DE.Views.DocumentHolder.txtPrintSelection": "打印选择", "DE.Views.DocumentHolder.txtRemFractionBar": "去除分数吧", "DE.Views.DocumentHolder.txtRemLimit": "删除限制", diff --git a/apps/presentationeditor/main/app/controller/DocumentHolder.js b/apps/presentationeditor/main/app/controller/DocumentHolder.js index e4988371d..e684c1287 100644 --- a/apps/presentationeditor/main/app/controller/DocumentHolder.js +++ b/apps/presentationeditor/main/app/controller/DocumentHolder.js @@ -829,7 +829,7 @@ define([ ToolTip = ToolTip.substr(0, 256) + '...'; if (screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 ) { - screenTip.toolTip.setTitle(ToolTip + (me.isPreviewVisible ? '' : '
' + me.documentHolder.txtPressLink + '')); + screenTip.toolTip.setTitle(ToolTip + (me.isPreviewVisible ? '' : '
' + Common.Utils.String.platformKey('Ctrl', me.documentHolder.txtPressLink) + '')); screenTip.tipLength = ToolTip.length; screenTip.strTip = ToolTip; recalc = true; diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index ebb431b4a..44fdb2786 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -2269,7 +2269,7 @@ define([ hyperlinkText : 'Hyperlink', editHyperlinkText : 'Edit Hyperlink', removeHyperlinkText : 'Remove Hyperlink', - txtPressLink : 'Press CTRL and click link', + txtPressLink : 'Press {0} and click link', selectText : 'Select', insertRowText : 'Insert Row', insertColumnText : 'Insert Column', diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index f21aeaf3d..0d386d7a3 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -1256,7 +1256,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Təyinat mövzusundan istifadə edin", "PE.Views.DocumentHolder.txtPastePicture": "Şəkil", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mənbə formatını saxlayın", - "PE.Views.DocumentHolder.txtPressLink": "Ctrl düyməsinə basıb linkə klikləyin", + "PE.Views.DocumentHolder.txtPressLink": "{0} düyməsinə basıb linkə klikləyin", "PE.Views.DocumentHolder.txtPreview": "Slaydı başladın", "PE.Views.DocumentHolder.txtPrintSelection": "Seçimi çap edin", "PE.Views.DocumentHolder.txtRemFractionBar": "Kəsr xəttini silin", diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index 097de55d8..f420ff8c3 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -1229,7 +1229,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Выкарыстоўваць канцавую тэму", "PE.Views.DocumentHolder.txtPastePicture": "Малюнак", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Пакінуць зыходнае фарматаванне", - "PE.Views.DocumentHolder.txtPressLink": "Націсніце CTRL і пстрыкніце па спасылцы", + "PE.Views.DocumentHolder.txtPressLink": "Націсніце {0} і пстрыкніце па спасылцы", "PE.Views.DocumentHolder.txtPreview": "Распачаць слайд-шоу", "PE.Views.DocumentHolder.txtPrintSelection": "Надрукаваць вылучанае", "PE.Views.DocumentHolder.txtRemFractionBar": "Выдаліць рыску дробу", diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index c228f1005..b3a0fcada 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -1072,7 +1072,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Използвайте целевата тема", "PE.Views.DocumentHolder.txtPastePicture": "Снимка", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Запазете форматирането на източника", - "PE.Views.DocumentHolder.txtPressLink": "Натиснете CTRL и кликнете върху връзката", + "PE.Views.DocumentHolder.txtPressLink": "Натиснете {0} и кликнете върху връзката", "PE.Views.DocumentHolder.txtPreview": "Започнете слайдшоуто", "PE.Views.DocumentHolder.txtRemFractionBar": "Премахване на фракционната лента", "PE.Views.DocumentHolder.txtRemLimit": "Премахване на ограничението", diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 325a3381e..0a43e242d 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Fes servir el tema de destinació", "PE.Views.DocumentHolder.txtPastePicture": "Imatge", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", - "PE.Views.DocumentHolder.txtPressLink": "Prem CTRL i clica a l'enllaç", + "PE.Views.DocumentHolder.txtPressLink": "Prem {0} i clica a l'enllaç", "PE.Views.DocumentHolder.txtPreview": "Inicia la presentació de diapositives", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimeix la selecció", "PE.Views.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 4b5313b92..f12659f8b 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Použít cílový vzhledu prostředí", "PE.Views.DocumentHolder.txtPastePicture": "Obrázek", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", - "PE.Views.DocumentHolder.txtPressLink": "Stikněte CTRL a klikněte na odkaz", + "PE.Views.DocumentHolder.txtPressLink": "Stikněte {0} a klikněte na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustit prezentaci", "PE.Views.DocumentHolder.txtPrintSelection": "Vytisknout vybrané", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstranit zlomkovou čáru", diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index 0b6c12005..65c5270c3 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -1254,7 +1254,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Brug destinations tema", "PE.Views.DocumentHolder.txtPastePicture": "Billede", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behold oprindelig formatering", - "PE.Views.DocumentHolder.txtPressLink": "Tryk CTRL og klik på linket", + "PE.Views.DocumentHolder.txtPressLink": "Tryk {0} og klik på linket", "PE.Views.DocumentHolder.txtPreview": "Start diasshow", "PE.Views.DocumentHolder.txtPrintSelection": "Printer-valg", "PE.Views.DocumentHolder.txtRemFractionBar": "Fjern fraktionsbar", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index a92441f9d..0573af4ad 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -294,6 +294,9 @@ "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Strg", + "Common.Utils.String.textShift": "Umschalt", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "Adresse: ", "Common.Views.About.txtLicensee": "LIZENZNEHMER", "Common.Views.About.txtLicensor": "LIZENZGEBER", @@ -1536,7 +1539,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Zieldesign verwenden", "PE.Views.DocumentHolder.txtPastePicture": "Bild", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ursprüngliche Formatierung beibehalten", - "PE.Views.DocumentHolder.txtPressLink": "Drücken Sie auf die STRG-Taste und klicken Sie auf den Link", + "PE.Views.DocumentHolder.txtPressLink": "Drücken Sie auf die {0}-Taste und klicken Sie auf den Link", "PE.Views.DocumentHolder.txtPreview": "Vorschau starten", "PE.Views.DocumentHolder.txtPrintSelection": "Auswahl drucken", "PE.Views.DocumentHolder.txtRemFractionBar": "Bruchstrich entfernen", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 06276115a..32d7da4f9 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Χρήση θέματος προορισμού", "PE.Views.DocumentHolder.txtPastePicture": "Εικόνα", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής", - "PE.Views.DocumentHolder.txtPressLink": "Πατήστε Ctrl και κάντε κλικ στο σύνδεσμο", + "PE.Views.DocumentHolder.txtPressLink": "Πατήστε {0} και κάντε κλικ στο σύνδεσμο", "PE.Views.DocumentHolder.txtPreview": "Εκκίνηση παρουσίασης", "PE.Views.DocumentHolder.txtPrintSelection": "Εκτύπωση Επιλογής", "PE.Views.DocumentHolder.txtRemFractionBar": "Αφαίρεση γραμμής κλάσματος", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index a6224767f..79183af7e 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -298,6 +298,9 @@ "Common.UI.Window.yesButtonText": "Yes", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", + "Common.Utils.String.textAlt": "Alt", "Common.Views.About.txtAddress": "address: ", "Common.Views.About.txtLicensee": "LICENSEE", "Common.Views.About.txtLicensor": "LICENSOR", @@ -1544,7 +1547,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use destination theme", "PE.Views.DocumentHolder.txtPastePicture": "Picture", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", - "PE.Views.DocumentHolder.txtPressLink": "Press Ctrl and click link", + "PE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "PE.Views.DocumentHolder.txtPreview": "Start slideshow", "PE.Views.DocumentHolder.txtPrintSelection": "Print Selection", "PE.Views.DocumentHolder.txtRemFractionBar": "Remove fraction bar", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 5d7a8c0b7..5695fc706 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use el tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imagen", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantener el formato original", - "PE.Views.DocumentHolder.txtPressLink": "Pulse CTRL y haga clic en el enlace", + "PE.Views.DocumentHolder.txtPressLink": "Pulse {0} y haga clic en el enlace", "PE.Views.DocumentHolder.txtPreview": "Iniciar presentación", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "PE.Views.DocumentHolder.txtRemFractionBar": "Quitar la barra de fracción", diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json index ff5229a4f..f91c1d005 100644 --- a/apps/presentationeditor/main/locale/eu.json +++ b/apps/presentationeditor/main/locale/eu.json @@ -1536,7 +1536,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Erabili helburuko gaia", "PE.Views.DocumentHolder.txtPastePicture": "Irudia", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantendu jatorrizko formatua", - "PE.Views.DocumentHolder.txtPressLink": "Sakatu Ctrl eta egin klik estekan", + "PE.Views.DocumentHolder.txtPressLink": "Sakatu {0} eta egin klik estekan", "PE.Views.DocumentHolder.txtPreview": "Aurkezpena hasi", "PE.Views.DocumentHolder.txtPrintSelection": "Inprimatu hautapena", "PE.Views.DocumentHolder.txtRemFractionBar": "Kendu frakzio-barra", diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index 877281a4c..a84a7609c 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -830,7 +830,7 @@ "PE.Views.DocumentHolder.txtNewSlide": "Uusi dia", "PE.Views.DocumentHolder.txtOverbar": "Tekstin yläpalkki", "PE.Views.DocumentHolder.txtPastePicture": "Kuva", - "PE.Views.DocumentHolder.txtPressLink": "Paina CTRL näppäintä ja klikkaa linkkiä", + "PE.Views.DocumentHolder.txtPressLink": "Paina {0} näppäintä ja klikkaa linkkiä", "PE.Views.DocumentHolder.txtPreview": "Aloita Diaesitys", "PE.Views.DocumentHolder.txtRemFractionBar": "Poista murtoluku pylväs", "PE.Views.DocumentHolder.txtRemLimit": "Poista rajoitus", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 62971c10e..0dd2e484e 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Utiliser le thème de destination", "PE.Views.DocumentHolder.txtPastePicture": "Image", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Garder la mise en forme source", - "PE.Views.DocumentHolder.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", + "PE.Views.DocumentHolder.txtPressLink": "Appuyez sur {0} et cliquez sur le lien", "PE.Views.DocumentHolder.txtPreview": "Démarrer le diaporama", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimer la sélection", "PE.Views.DocumentHolder.txtRemFractionBar": "Supprimer la barre de fraction", diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index cc70610b3..7d6b495bd 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -1536,7 +1536,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use o tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imaxe", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatación original", - "PE.Views.DocumentHolder.txtPressLink": "Prema Ctrl e na ligazón", + "PE.Views.DocumentHolder.txtPressLink": "Prema {0} e na ligazón", "PE.Views.DocumentHolder.txtPreview": "Iniciar presentación", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir selección", "PE.Views.DocumentHolder.txtRemFractionBar": "Eliminar a barra de fracción", diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index 78bd2b90b..e6f301429 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -1293,7 +1293,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Cél téma használata", "PE.Views.DocumentHolder.txtPastePicture": "Kép", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása", - "PE.Views.DocumentHolder.txtPressLink": "Nyomja meg a CTRL billentyűt és kattintson a hivatkozásra", + "PE.Views.DocumentHolder.txtPressLink": "Nyomja meg a {0} billentyűt és kattintson a hivatkozásra", "PE.Views.DocumentHolder.txtPreview": "Diavetítés elindítása", "PE.Views.DocumentHolder.txtPrintSelection": "Nyomtató kiválasztás", "PE.Views.DocumentHolder.txtRemFractionBar": "Törtjel eltávolítása", diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index 26272880d..f0d1b393a 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Օգտագործել նպատակակետի ոճը", "PE.Views.DocumentHolder.txtPastePicture": "Նկար", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Պահպանել աղբյուրի ձևաչափը", - "PE.Views.DocumentHolder.txtPressLink": "Սեղմել Ctrl և անցնել հղումը", + "PE.Views.DocumentHolder.txtPressLink": "Սեղմել {0} և անցնել հղումը", "PE.Views.DocumentHolder.txtPreview": "Սկսել պատկերահանդեսը", "PE.Views.DocumentHolder.txtPrintSelection": "Տպել ընտրվածքը", "PE.Views.DocumentHolder.txtRemFractionBar": "Հեռացնել կոտորակի գիծը", diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index 5916b4f0e..a5a7a9583 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -1479,7 +1479,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Gunakan tema destinasi", "PE.Views.DocumentHolder.txtPastePicture": "Gambar", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", - "PE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik link", + "PE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik link", "PE.Views.DocumentHolder.txtPreview": "Mulai slideshow", "PE.Views.DocumentHolder.txtPrintSelection": "Print Pilihan", "PE.Views.DocumentHolder.txtRemFractionBar": "Hilangkan bar pecahan", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index d9a98adc8..17a662d76 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Usa tema di destinazione", "PE.Views.DocumentHolder.txtPastePicture": "Immagine", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Mantieni la formattazione sorgente", - "PE.Views.DocumentHolder.txtPressLink": "Premi CTRL e clicca sul collegamento", + "PE.Views.DocumentHolder.txtPressLink": "Premi {0} e clicca sul collegamento", "PE.Views.DocumentHolder.txtPreview": "Avvia presentazione", "PE.Views.DocumentHolder.txtPrintSelection": "Stampa Selezione", "PE.Views.DocumentHolder.txtRemFractionBar": "Rimuovi la barra di frazione", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 090b12876..e90507939 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -1536,7 +1536,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "宛先テーマを使用する", "PE.Views.DocumentHolder.txtPastePicture": "画像", "PE.Views.DocumentHolder.txtPasteSourceFormat": "元の書式付けを保存する", - "PE.Views.DocumentHolder.txtPressLink": "CTRLを押してリンクをクリックしてください。", + "PE.Views.DocumentHolder.txtPressLink": "{0}を押してリンクをクリックしてください。", "PE.Views.DocumentHolder.txtPreview": "スライドショーの開始", "PE.Views.DocumentHolder.txtPrintSelection": "選択範囲の印刷", "PE.Views.DocumentHolder.txtRemFractionBar": "分数線の削除", diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index be65671ea..1616ba0ce 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -1495,7 +1495,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "목적 테마를 사용하기", "PE.Views.DocumentHolder.txtPastePicture": "그림", "PE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요", - "PE.Views.DocumentHolder.txtPressLink": "Ctrl 키를 누르고 링크를 클릭합니다.", + "PE.Views.DocumentHolder.txtPressLink": "{0} 키를 누르고 링크를 클릭합니다.", "PE.Views.DocumentHolder.txtPreview": "슬라이드 쇼 시작", "PE.Views.DocumentHolder.txtPrintSelection": "선택 항목 인쇄", "PE.Views.DocumentHolder.txtRemFractionBar": "분수 막대 제거", diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 91ec52946..bbf6f6d8c 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -1494,7 +1494,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "ໃຊ້ຫົວຂໍ້ເປົ້າໝາຍ", "PE.Views.DocumentHolder.txtPastePicture": "ຮູບພາບ", "PE.Views.DocumentHolder.txtPasteSourceFormat": "ຈັດຮູບແບບແຫຼ່ງທີ່ມາ", - "PE.Views.DocumentHolder.txtPressLink": "ກົດ Ctrl ແລະກົດລິ້ງ", + "PE.Views.DocumentHolder.txtPressLink": "ກົດ {0} ແລະກົດລິ້ງ", "PE.Views.DocumentHolder.txtPreview": "ເລີ່ມສະໄລ້", "PE.Views.DocumentHolder.txtPrintSelection": "ານຄັດເລືອກການພິມ", "PE.Views.DocumentHolder.txtRemFractionBar": "ລຶບແຖບສວ່ນໜຶ່ງອອກ", diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index 9b6c7286d..0418daa5e 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -845,7 +845,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Izmantot galamērķa dizainu", "PE.Views.DocumentHolder.txtPastePicture": "Attēls", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Atstāt sākotnējo formatējumu", - "PE.Views.DocumentHolder.txtPressLink": "Press CTRL and click link", + "PE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", "PE.Views.DocumentHolder.txtPreview": "Preview", "PE.Views.DocumentHolder.txtRemFractionBar": "Noņemt dalījuma joslu", "PE.Views.DocumentHolder.txtRemLimit": "Noņemt limitu", diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index 20227c091..fb214a07b 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -1489,7 +1489,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Guna tema destinasi", "PE.Views.DocumentHolder.txtPastePicture": "Gambar", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Kekalkan sumber pemformatan", - "PE.Views.DocumentHolder.txtPressLink": "Tekan Ctrl dan klik pautan", + "PE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik pautan", "PE.Views.DocumentHolder.txtPreview": "Mulakan persembahan slaid", "PE.Views.DocumentHolder.txtPrintSelection": "Pemilihan Cetakan", "PE.Views.DocumentHolder.txtRemFractionBar": "Alih keluar bar pecahan", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index de92559fb..b6b065dbc 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -1383,7 +1383,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Gebruik doel thema", "PE.Views.DocumentHolder.txtPastePicture": "Afbeelding", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", - "PE.Views.DocumentHolder.txtPressLink": "Druk op Ctrl en klik op koppeling", + "PE.Views.DocumentHolder.txtPressLink": "Druk op {0} en klik op koppeling", "PE.Views.DocumentHolder.txtPreview": "Diavoorstelling starten", "PE.Views.DocumentHolder.txtPrintSelection": "Selectie afdrukken", "PE.Views.DocumentHolder.txtRemFractionBar": "Deelteken verwijderen", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 738f53146..83db2e124 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -899,7 +899,7 @@ "PE.Views.DocumentHolder.txtNewSlide": "Nowy slajd", "PE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Zachowaj formatowanie źródłowe", - "PE.Views.DocumentHolder.txtPressLink": "Naciśnij CTRL i kliknij link", + "PE.Views.DocumentHolder.txtPressLink": "Naciśnij {0} i kliknij link", "PE.Views.DocumentHolder.txtPreview": "Rozpocznij pokaz slajdów", "PE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", "PE.Views.DocumentHolder.txtRemLimit": "Usuń limit", diff --git a/apps/presentationeditor/main/locale/pt-PT.json b/apps/presentationeditor/main/locale/pt-PT.json index bf8600b73..4c521f806 100644 --- a/apps/presentationeditor/main/locale/pt-PT.json +++ b/apps/presentationeditor/main/locale/pt-PT.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilizar tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imagem", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", - "PE.Views.DocumentHolder.txtPressLink": "Prima Ctrl e clique na ligação", + "PE.Views.DocumentHolder.txtPressLink": "Prima {0} e clique na ligação", "PE.Views.DocumentHolder.txtPreview": "Iniciar apresentação", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "PE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 30e3173af..bc7e80cb0 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -1495,7 +1495,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Use o tema de destino", "PE.Views.DocumentHolder.txtPastePicture": "Imagem", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", - "PE.Views.DocumentHolder.txtPressLink": "Pressione CTRL e clique no link", + "PE.Views.DocumentHolder.txtPressLink": "Pressione {0} e clique no link", "PE.Views.DocumentHolder.txtPreview": "Pré-visualizar", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimir seleção", "PE.Views.DocumentHolder.txtRemFractionBar": "Remover barra de fração", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index fd0335122..748b9e715 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -1544,7 +1544,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Utilizare temă destinație", "PE.Views.DocumentHolder.txtPastePicture": "Imagine", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Păstrare formatare sursă", - "PE.Views.DocumentHolder.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", + "PE.Views.DocumentHolder.txtPressLink": "Apăsați {0} și faceți clic pe linkul", "PE.Views.DocumentHolder.txtPreview": "Pornire expunere diapozitive", "PE.Views.DocumentHolder.txtPrintSelection": "Imprimare selecție", "PE.Views.DocumentHolder.txtRemFractionBar": "Eliminare bară de fracție", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 060f6c7bf..591e009d1 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -1544,7 +1544,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Использовать конечную тему", "PE.Views.DocumentHolder.txtPastePicture": "Изображение", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Сохранить исходное форматирование", - "PE.Views.DocumentHolder.txtPressLink": "Нажмите Ctrl и щелкните по ссылке", + "PE.Views.DocumentHolder.txtPressLink": "Нажмите {0} и щелкните по ссылке", "PE.Views.DocumentHolder.txtPreview": "Начать показ слайдов", "PE.Views.DocumentHolder.txtPrintSelection": "Напечатать выделенное", "PE.Views.DocumentHolder.txtRemFractionBar": "Удалить дробную черту", diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index fd2eb0f2c..8964f037c 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -1479,7 +1479,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Použiť cieľový vzhľad ", "PE.Views.DocumentHolder.txtPastePicture": "Obrázok", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Uchovať zdrojové formátovanie", - "PE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", + "PE.Views.DocumentHolder.txtPressLink": "Stlačte {0} a kliknite na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustiť prezentáciu", "PE.Views.DocumentHolder.txtPrintSelection": "Vytlačiť výber", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 799af2d3f..db694a0ed 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -657,7 +657,7 @@ "PE.Views.DocumentHolder.txtKeepTextOnly": "Ohrani le besedilo", "PE.Views.DocumentHolder.txtNewSlide": "Nov diapozitiv", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Ohrani izvorno oblikovanje", - "PE.Views.DocumentHolder.txtPressLink": "Pritisnite CTRL in pritisnite povezavo", + "PE.Views.DocumentHolder.txtPressLink": "Pritisnite {0} in pritisnite povezavo", "PE.Views.DocumentHolder.txtPreview": "Predogled", "PE.Views.DocumentHolder.txtSelectAll": "Izberi vse", "PE.Views.DocumentHolder.txtSlide": "Diapozitiv", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 6d75f6e1e..fdf9af863 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -1477,7 +1477,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Använd destinationstema", "PE.Views.DocumentHolder.txtPastePicture": "Bild", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll ursprungsformatering", - "PE.Views.DocumentHolder.txtPressLink": "Tryck CTRL och klicka på länken", + "PE.Views.DocumentHolder.txtPressLink": "Tryck {0} och klicka på länken", "PE.Views.DocumentHolder.txtPreview": "Starta visning", "PE.Views.DocumentHolder.txtPrintSelection": "Skriv ut markering", "PE.Views.DocumentHolder.txtRemFractionBar": "Ta bort fraktionslinje", diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 702c11e7c..aab87018c 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -1425,7 +1425,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Hedef temayı kullan", "PE.Views.DocumentHolder.txtPastePicture": "Resim", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Kaynak biçimlendirmesini koruyun", - "PE.Views.DocumentHolder.txtPressLink": "CTRL'ye basın ve bağlantıya tıklayın", + "PE.Views.DocumentHolder.txtPressLink": "{0}'ye basın ve bağlantıya tıklayın", "PE.Views.DocumentHolder.txtPreview": "Önizleme", "PE.Views.DocumentHolder.txtPrintSelection": "Seçimi Yazdır", "PE.Views.DocumentHolder.txtRemFractionBar": "Kesir barını kaldır", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 4fa798ed3..e83eb0cc5 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -1477,7 +1477,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "Використовувати кінцеву тему", "PE.Views.DocumentHolder.txtPastePicture": "Зображення", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", - "PE.Views.DocumentHolder.txtPressLink": "Натисніть CTRL та клацніть по посиланню", + "PE.Views.DocumentHolder.txtPressLink": "Натисніть {0} та клацніть по посиланню", "PE.Views.DocumentHolder.txtPreview": "Розпочати слайдшоу", "PE.Views.DocumentHolder.txtPrintSelection": "Надрукувати виділене", "PE.Views.DocumentHolder.txtRemFractionBar": "Видалити фракційну стрічку", diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index 63c3a62a1..c334050e7 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -748,7 +748,7 @@ "PE.Views.DocumentHolder.txtMatrixAlign": "Căn chỉnh ma trận", "PE.Views.DocumentHolder.txtNewSlide": "Slide mới", "PE.Views.DocumentHolder.txtOverbar": "Gạch trên văn bản", - "PE.Views.DocumentHolder.txtPressLink": "Ấn CTRL và nhấp vào liên kết", + "PE.Views.DocumentHolder.txtPressLink": "Ấn {0} và nhấp vào liên kết", "PE.Views.DocumentHolder.txtPreview": "Bắt đầu trình chiếu", "PE.Views.DocumentHolder.txtRemFractionBar": "Xóa dấu phân số", "PE.Views.DocumentHolder.txtRemLimit": "Xóa giới hạn", diff --git a/apps/presentationeditor/main/locale/zh-TW.json b/apps/presentationeditor/main/locale/zh-TW.json index e47b13911..f015f7cb3 100644 --- a/apps/presentationeditor/main/locale/zh-TW.json +++ b/apps/presentationeditor/main/locale/zh-TW.json @@ -1495,7 +1495,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "使用目標主題", "PE.Views.DocumentHolder.txtPastePicture": "圖片", "PE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "PE.Views.DocumentHolder.txtPressLink": "按Ctrl並單擊連結", + "PE.Views.DocumentHolder.txtPressLink": "按{0}並單擊連結", "PE.Views.DocumentHolder.txtPreview": "開始投影片放映", "PE.Views.DocumentHolder.txtPrintSelection": "列印選擇", "PE.Views.DocumentHolder.txtRemFractionBar": "刪除分數欄", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 9803f5e3e..129bc7ba2 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -1537,7 +1537,7 @@ "PE.Views.DocumentHolder.txtPasteDestFormat": "使用目标主题", "PE.Views.DocumentHolder.txtPastePicture": "图片", "PE.Views.DocumentHolder.txtPasteSourceFormat": "保持源格式", - "PE.Views.DocumentHolder.txtPressLink": "按CTRL并单击链接", + "PE.Views.DocumentHolder.txtPressLink": "按{0}并单击链接", "PE.Views.DocumentHolder.txtPreview": "开始幻灯片放映", "PE.Views.DocumentHolder.txtPrintSelection": "打印选择", "PE.Views.DocumentHolder.txtRemFractionBar": "删除分数栏",