diff --git a/apps/common/main/lib/controller/History.js b/apps/common/main/lib/controller/History.js index adf32a750d..0ffd247ff1 100644 --- a/apps/common/main/lib/controller/History.js +++ b/apps/common/main/lib/controller/History.js @@ -199,10 +199,10 @@ define([ this.timerId = 0; } - if (opts.data.error) { + if (!opts.data || opts.data.error) { var config = { title: this.notcriticalErrorTitle, - msg: opts.data.error, + msg: opts.data && opts.data.error ? opts.data.error : this.txtErrorLoadHistory, iconCls: 'warn', buttons: ['ok'] }; @@ -335,9 +335,7 @@ define([ this.onSelectRevision(null, null, rec); } console.log('Received changes that are incompatible with the file version'); - }, - - notcriticalErrorTitle: 'Warning' + } }, Common.Controllers.History || {})); }); diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 947927aec0..bc84905a26 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -1167,6 +1167,7 @@ define([], function () { } Common.Utils.cancelFullscreen = function () { + if (!(document.fullscreenElement || document.mozFullScreenElement || document.webkitFullscreenElement || document.msFullscreenElement )) return; if (document.cancelFullScreen) { document.cancelFullScreen(); } else if (document.webkitCancelFullScreen) { diff --git a/apps/documenteditor/main/locale/ar.json b/apps/documenteditor/main/locale/ar.json index a862b45796..18a1aae6e2 100644 --- a/apps/documenteditor/main/locale/ar.json +++ b/apps/documenteditor/main/locale/ar.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index 446084f96d..5fcc056328 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index ecab555f6d..3a36141c4f 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 94ccfbe9c7..24a987dc9e 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 4a306726fb..61e80f20df 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index d87e1dab80..66115fd8cc 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 0f99be0634..3f706bc537 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 223e6a9e27..b83de0e64d 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index fe57d124fd..df79350c1b 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index cade9e34ae..5b9f23ee68 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -15,6 +15,7 @@ "Common.Controllers.ExternalOleEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalOleEditor.warningTitle": "Warning", "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed", "Common.Controllers.Plugins.textPluginsSuccessfullyInstalled": "Plugins are successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 625ba4f886..501ab3cc4b 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 2216962889..8b11c6cd98 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 66486eb347..b53cb1dcef 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index badd50f050..b10d1e6619 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 51255f9b5b..95de912aa9 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index a49e9b7421..4975162d01 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 71a43fa440..7c37eeb787 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index 7dd58945df..8f588ec176 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 86521376ba..5f2330f35b 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index eb7c87785f..c03a1bda34 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index b17e722605..c7a727dabe 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index 31320f317f..90f983aea0 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index 2df1607e92..acfad1686c 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index 564ba78e27..1f4a3bb662 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 01118bb899..fb5d27a459 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/no.json b/apps/documenteditor/main/locale/no.json index b0183114e7..de215ab534 100644 --- a/apps/documenteditor/main/locale/no.json +++ b/apps/documenteditor/main/locale/no.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index c2b0e600b0..f31ad07aaa 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt-pt.json b/apps/documenteditor/main/locale/pt-pt.json index 278ed1d3ba..c9620b5add 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 807fefa9fb..872fe72767 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 0abe222e26..1d0466145c 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 751572e3ff..0506ab5b55 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json index 63ae421958..d8318dcc17 100644 --- a/apps/documenteditor/main/locale/si.json +++ b/apps/documenteditor/main/locale/si.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index b8b042306e..905aa93cf2 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index 6b81cca855..dd9d5417f5 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sr-cyrl.json b/apps/documenteditor/main/locale/sr-cyrl.json index 7b9f9bd77d..281d94104e 100644 --- a/apps/documenteditor/main/locale/sr-cyrl.json +++ b/apps/documenteditor/main/locale/sr-cyrl.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sr.json b/apps/documenteditor/main/locale/sr.json index 6af99d93c2..d07dfd1ec9 100644 --- a/apps/documenteditor/main/locale/sr.json +++ b/apps/documenteditor/main/locale/sr.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index dfc2f23bb6..8d6153e0a7 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index 0c5484313d..144a4c1066 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 55c8939395..c6f172db76 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index 67871d947f..d40d29607f 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh-tw.json b/apps/documenteditor/main/locale/zh-tw.json index 4f821c3aed..baf078c13a 100644 --- a/apps/documenteditor/main/locale/zh-tw.json +++ b/apps/documenteditor/main/locale/zh-tw.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index bb967ed7cc..d886dccc06 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -3628,5 +3628,6 @@ "DE.Views.Toolbar.mniTextFromLocalFile": "Text from the local file", "DE.Views.Toolbar.mniTextFromURL": "Text from the URL file", "DE.Views.Toolbar.mniTextFromStorage": "Text from the storage file", - "DE.Views.Toolbar.tipTextFromFile": "Text from file" + "DE.Views.Toolbar.tipTextFromFile": "Text from file", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ar.json b/apps/pdfeditor/main/locale/ar.json index a3cea479a0..e818c32e4c 100644 --- a/apps/pdfeditor/main/locale/ar.json +++ b/apps/pdfeditor/main/locale/ar.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/az.json b/apps/pdfeditor/main/locale/az.json index 8d18da2878..4b877e2e93 100644 --- a/apps/pdfeditor/main/locale/az.json +++ b/apps/pdfeditor/main/locale/az.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/be.json b/apps/pdfeditor/main/locale/be.json index 93a10eede4..9d990e9337 100644 --- a/apps/pdfeditor/main/locale/be.json +++ b/apps/pdfeditor/main/locale/be.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/bg.json b/apps/pdfeditor/main/locale/bg.json index 7c11789b9d..2f4b25e9a6 100644 --- a/apps/pdfeditor/main/locale/bg.json +++ b/apps/pdfeditor/main/locale/bg.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ca.json b/apps/pdfeditor/main/locale/ca.json index 2b0615980e..ecd750a92f 100644 --- a/apps/pdfeditor/main/locale/ca.json +++ b/apps/pdfeditor/main/locale/ca.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/cs.json b/apps/pdfeditor/main/locale/cs.json index f4eb36f024..030b1f148a 100644 --- a/apps/pdfeditor/main/locale/cs.json +++ b/apps/pdfeditor/main/locale/cs.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/da.json b/apps/pdfeditor/main/locale/da.json index 8a41e3a274..346717426a 100644 --- a/apps/pdfeditor/main/locale/da.json +++ b/apps/pdfeditor/main/locale/da.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/de.json b/apps/pdfeditor/main/locale/de.json index 2808038040..c938bb1785 100644 --- a/apps/pdfeditor/main/locale/de.json +++ b/apps/pdfeditor/main/locale/de.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/el.json b/apps/pdfeditor/main/locale/el.json index 3bf0ad0971..be85d44db0 100644 --- a/apps/pdfeditor/main/locale/el.json +++ b/apps/pdfeditor/main/locale/el.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/en.json b/apps/pdfeditor/main/locale/en.json index 45121bdc7f..2b397c5d08 100644 --- a/apps/pdfeditor/main/locale/en.json +++ b/apps/pdfeditor/main/locale/en.json @@ -2,6 +2,8 @@ "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", "Common.Controllers.Desktop.hintBtnHome": "Show Main window", "Common.Controllers.Desktop.itemCreateFromTemplate": "Create from template", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed", "Common.Controllers.Plugins.textPluginsSuccessfullyInstalled": "Plugins are successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins", diff --git a/apps/pdfeditor/main/locale/es.json b/apps/pdfeditor/main/locale/es.json index 15a7939688..438180bd19 100644 --- a/apps/pdfeditor/main/locale/es.json +++ b/apps/pdfeditor/main/locale/es.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/eu.json b/apps/pdfeditor/main/locale/eu.json index 59a6bb2352..e9dc7d271e 100644 --- a/apps/pdfeditor/main/locale/eu.json +++ b/apps/pdfeditor/main/locale/eu.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/fi.json b/apps/pdfeditor/main/locale/fi.json index 357e9f38fd..80b81902e3 100644 --- a/apps/pdfeditor/main/locale/fi.json +++ b/apps/pdfeditor/main/locale/fi.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/fr.json b/apps/pdfeditor/main/locale/fr.json index 0fbc348fa8..167b40ba15 100644 --- a/apps/pdfeditor/main/locale/fr.json +++ b/apps/pdfeditor/main/locale/fr.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/gl.json b/apps/pdfeditor/main/locale/gl.json index dd0b3a0958..ea7bfac8fe 100644 --- a/apps/pdfeditor/main/locale/gl.json +++ b/apps/pdfeditor/main/locale/gl.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/hu.json b/apps/pdfeditor/main/locale/hu.json index d88c8debd1..554bc0b763 100644 --- a/apps/pdfeditor/main/locale/hu.json +++ b/apps/pdfeditor/main/locale/hu.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/hy.json b/apps/pdfeditor/main/locale/hy.json index c585c866ca..a14ee212e0 100644 --- a/apps/pdfeditor/main/locale/hy.json +++ b/apps/pdfeditor/main/locale/hy.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/id.json b/apps/pdfeditor/main/locale/id.json index 4c76006fce..cb8716ea5e 100644 --- a/apps/pdfeditor/main/locale/id.json +++ b/apps/pdfeditor/main/locale/id.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/it.json b/apps/pdfeditor/main/locale/it.json index 9ccf111f49..a0f9c47df6 100644 --- a/apps/pdfeditor/main/locale/it.json +++ b/apps/pdfeditor/main/locale/it.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ja.json b/apps/pdfeditor/main/locale/ja.json index 5d8745c6b8..748f6533a4 100644 --- a/apps/pdfeditor/main/locale/ja.json +++ b/apps/pdfeditor/main/locale/ja.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ko.json b/apps/pdfeditor/main/locale/ko.json index 5f5befcd1a..db809796aa 100644 --- a/apps/pdfeditor/main/locale/ko.json +++ b/apps/pdfeditor/main/locale/ko.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/lo.json b/apps/pdfeditor/main/locale/lo.json index 6fb9774707..d3a5babb91 100644 --- a/apps/pdfeditor/main/locale/lo.json +++ b/apps/pdfeditor/main/locale/lo.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/lv.json b/apps/pdfeditor/main/locale/lv.json index 6ae0e09ae9..5922be1a05 100644 --- a/apps/pdfeditor/main/locale/lv.json +++ b/apps/pdfeditor/main/locale/lv.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ms.json b/apps/pdfeditor/main/locale/ms.json index e31336dd0f..35dd2428a7 100644 --- a/apps/pdfeditor/main/locale/ms.json +++ b/apps/pdfeditor/main/locale/ms.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/nl.json b/apps/pdfeditor/main/locale/nl.json index d7d0f87973..e0c16b6849 100644 --- a/apps/pdfeditor/main/locale/nl.json +++ b/apps/pdfeditor/main/locale/nl.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/pl.json b/apps/pdfeditor/main/locale/pl.json index b11935a5b7..5bfd541960 100644 --- a/apps/pdfeditor/main/locale/pl.json +++ b/apps/pdfeditor/main/locale/pl.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/pt-pt.json b/apps/pdfeditor/main/locale/pt-pt.json index 9faf8a4c86..897e577373 100644 --- a/apps/pdfeditor/main/locale/pt-pt.json +++ b/apps/pdfeditor/main/locale/pt-pt.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/pt.json b/apps/pdfeditor/main/locale/pt.json index 0d55306446..cc089e201f 100644 --- a/apps/pdfeditor/main/locale/pt.json +++ b/apps/pdfeditor/main/locale/pt.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ro.json b/apps/pdfeditor/main/locale/ro.json index 5ecf410d74..b5ce73fa82 100644 --- a/apps/pdfeditor/main/locale/ro.json +++ b/apps/pdfeditor/main/locale/ro.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/ru.json b/apps/pdfeditor/main/locale/ru.json index 94a95b41f9..e31e85c442 100644 --- a/apps/pdfeditor/main/locale/ru.json +++ b/apps/pdfeditor/main/locale/ru.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/si.json b/apps/pdfeditor/main/locale/si.json index 74fd855ef9..391b70d92b 100644 --- a/apps/pdfeditor/main/locale/si.json +++ b/apps/pdfeditor/main/locale/si.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sk.json b/apps/pdfeditor/main/locale/sk.json index 86811ba282..8b659cda07 100644 --- a/apps/pdfeditor/main/locale/sk.json +++ b/apps/pdfeditor/main/locale/sk.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sl.json b/apps/pdfeditor/main/locale/sl.json index d081a6dd17..4ccb263106 100644 --- a/apps/pdfeditor/main/locale/sl.json +++ b/apps/pdfeditor/main/locale/sl.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sr-cyrl.json b/apps/pdfeditor/main/locale/sr-cyrl.json index b0eab4cfb8..ee8c138342 100644 --- a/apps/pdfeditor/main/locale/sr-cyrl.json +++ b/apps/pdfeditor/main/locale/sr-cyrl.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sr.json b/apps/pdfeditor/main/locale/sr.json index 5c3f1609f3..f1042a37bb 100644 --- a/apps/pdfeditor/main/locale/sr.json +++ b/apps/pdfeditor/main/locale/sr.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/sv.json b/apps/pdfeditor/main/locale/sv.json index 6e1714a8fd..cc93ce7f8d 100644 --- a/apps/pdfeditor/main/locale/sv.json +++ b/apps/pdfeditor/main/locale/sv.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/tr.json b/apps/pdfeditor/main/locale/tr.json index e96e440a2f..aec93d556f 100644 --- a/apps/pdfeditor/main/locale/tr.json +++ b/apps/pdfeditor/main/locale/tr.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/uk.json b/apps/pdfeditor/main/locale/uk.json index 2d9e86dbfc..4d5066d339 100644 --- a/apps/pdfeditor/main/locale/uk.json +++ b/apps/pdfeditor/main/locale/uk.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/zh-tw.json b/apps/pdfeditor/main/locale/zh-tw.json index dd82f357ef..3a1ec8db71 100644 --- a/apps/pdfeditor/main/locale/zh-tw.json +++ b/apps/pdfeditor/main/locale/zh-tw.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/pdfeditor/main/locale/zh.json b/apps/pdfeditor/main/locale/zh.json index e500f9dbbe..803fdefced 100644 --- a/apps/pdfeditor/main/locale/zh.json +++ b/apps/pdfeditor/main/locale/zh.json @@ -2004,5 +2004,7 @@ "PDFE.Views.FileMenuPanels.Settings.textFill": "Fill", "PDFE.Views.FileMenuPanels.Settings.textLine": "Line", "PDFE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/DocumentPreview.js b/apps/presentationeditor/main/app/view/DocumentPreview.js index 787dae9502..009cac9b43 100644 --- a/apps/presentationeditor/main/app/view/DocumentPreview.js +++ b/apps/presentationeditor/main/app/view/DocumentPreview.js @@ -400,38 +400,6 @@ define([ } }, - fullScreen: function(element) { - if (this.mode.isDesktopApp || Common.Utils.isIE11) return; - if (element) { - this.previewControls.css('display', 'none'); - this.$el.css('cursor', 'none'); - if(element.requestFullscreen) { - element.requestFullscreen(); - } else if(element.webkitRequestFullscreen) { - element.webkitRequestFullscreen(); - } else if(element.mozRequestFullScreen) { - element.mozRequestFullScreen(); - } else if(element.msRequestFullscreen) { - element.msRequestFullscreen(); - } - } - }, - - fullScreenCancel: function () { - if (this.mode.isDesktopApp || Common.Utils.isIE11) return; - this.previewControls.css('display', 'none'); - this.$el.css('cursor', 'none'); - if(document.cancelFullScreen) { - document.cancelFullScreen(); - } else if(document.webkitCancelFullScreen ) { - document.webkitCancelFullScreen(); - } else if(document.mozCancelFullScreen) { - document.mozCancelFullScreen(); - } else if(document.msExitFullscreen) { - document.msExitFullscreen(); - } - }, - txtPrev: 'Previous Slide', txtNext: 'Next Slide', txtClose: 'Close Slideshow', diff --git a/apps/presentationeditor/main/locale/ar.json b/apps/presentationeditor/main/locale/ar.json index 9aa61619e5..7da3a508a4 100644 --- a/apps/presentationeditor/main/locale/ar.json +++ b/apps/presentationeditor/main/locale/ar.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index ba91710e3a..e97ed80bfb 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index f52d6b88df..f426b30fe1 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index 4d242bd5b5..5ef86b347a 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index e3faccbc42..0338b9ebd6 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index e0ef2d50f3..3613004325 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index 8ade4e21c6..5bebdeb1f3 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index 7bdd78a496..15386e0316 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 2d6e415ba2..8dfe1b58a4 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 4ff9e0d769..cb5c0316a8 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -10,6 +10,8 @@ "Common.Controllers.ExternalOleEditor.textClose": "Close", "Common.Controllers.ExternalOleEditor.warningText": "The object is disabled because it is being edited by another user.", "Common.Controllers.ExternalOleEditor.warningTitle": "Warning", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed", "Common.Controllers.Plugins.textPluginsSuccessfullyInstalled": "Plugins are successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins", diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 0f5ed1ff63..f9167ead4f 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json index b90a33d0a4..c3a8e266ce 100644 --- a/apps/presentationeditor/main/locale/eu.json +++ b/apps/presentationeditor/main/locale/eu.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index 74767306e4..17baa6f2c6 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 12c3cf27ab..47a55bcc46 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index db618f1c6d..9710d15a25 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index d904678533..c469815e72 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index c7870747dd..10e16750e7 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index b5f055c773..0dd78956c7 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index f642603c5d..ad5de23061 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 7b3431aea4..a0f3c8b589 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index cdfae6e454..9e8431ec64 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 770e8003d0..851c7b15f9 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index d505f84ea6..909a3e7201 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index 9888743c22..39282f7fc7 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index fb98f8c2a3..e021844424 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 219eec1be7..14a5704b4b 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt-pt.json b/apps/presentationeditor/main/locale/pt-pt.json index 62051bc92d..fbe675dfa8 100644 --- a/apps/presentationeditor/main/locale/pt-pt.json +++ b/apps/presentationeditor/main/locale/pt-pt.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index ef5fc26b98..4887deaa95 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 6b773e7869..f7f85eb036 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 25e03585b5..fc7ba07ecb 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/si.json b/apps/presentationeditor/main/locale/si.json index 82e2c8b628..06dacc5942 100644 --- a/apps/presentationeditor/main/locale/si.json +++ b/apps/presentationeditor/main/locale/si.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index 1a8c0ca249..8e90666584 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 2848164b2a..ceaec1b6bd 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sr-cyrl.json b/apps/presentationeditor/main/locale/sr-cyrl.json index eb8afa2fb3..bc95551418 100644 --- a/apps/presentationeditor/main/locale/sr-cyrl.json +++ b/apps/presentationeditor/main/locale/sr-cyrl.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sr.json b/apps/presentationeditor/main/locale/sr.json index c6d1d2e337..467dbf9256 100644 --- a/apps/presentationeditor/main/locale/sr.json +++ b/apps/presentationeditor/main/locale/sr.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index f9e7545cb0..86a673c976 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 33ad292a8f..e563fff78e 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 88a97f3963..b4fa7f4d1b 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index fe94f8671b..ff1c41e751 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh-tw.json b/apps/presentationeditor/main/locale/zh-tw.json index a7ac189073..8a26b0e4cc 100644 --- a/apps/presentationeditor/main/locale/zh-tw.json +++ b/apps/presentationeditor/main/locale/zh-tw.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 756028abf1..c0b65eeafd 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -2907,5 +2907,7 @@ "PE.Views.FileMenuPanels.Settings.textFill": "Fill", "PE.Views.FileMenuPanels.Settings.textLine": "Line", "PE.Views.FileMenuPanels.Settings.txtAppearance": "Appearance", - "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "PE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ar.json b/apps/spreadsheeteditor/main/locale/ar.json index 640860930f..e48255fef0 100644 --- a/apps/spreadsheeteditor/main/locale/ar.json +++ b/apps/spreadsheeteditor/main/locale/ar.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json index d9cd5ea454..9c766e4c6e 100644 --- a/apps/spreadsheeteditor/main/locale/az.json +++ b/apps/spreadsheeteditor/main/locale/az.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index caf8dffd31..c81abe68da 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index 53e95a2869..2458e1cf12 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 31a1f4d346..22dcf50592 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 532ef6ecfb..1e63ffbe65 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index 80ec2eeb2b..7002a3c1a0 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 84136b3503..dc7dfa6868 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index 04258091c1..1b10d0d898 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index af38e776e7..81445574d9 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -4,6 +4,7 @@ "Common.Controllers.Desktop.hintBtnHome": "Show Main window", "Common.Controllers.Desktop.itemCreateFromTemplate": "Create from template", "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed", "Common.Controllers.Plugins.textPluginsSuccessfullyInstalled": "Plugins are successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.", "Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 418fceee32..a8bb9a0678 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json index 8427f59616..d391d3b2d9 100644 --- a/apps/spreadsheeteditor/main/locale/eu.json +++ b/apps/spreadsheeteditor/main/locale/eu.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json index b37bc1319a..184f59d21b 100644 --- a/apps/spreadsheeteditor/main/locale/fi.json +++ b/apps/spreadsheeteditor/main/locale/fi.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index be65eff1ac..bf193920df 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index 72aa234868..96ffc18387 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index 44c8edd142..e735ccc408 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index 082afed8a0..1e2aef2643 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index ae9e7309a2..c9aebbcc04 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 3f6f11995b..3c4583f69c 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 05f3eba76c..b4a74b72aa 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index d6fbed077b..3342cb64f6 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index 1aea2b5835..c0c3ce4938 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json index b69501b93b..d34504a8f8 100644 --- a/apps/spreadsheeteditor/main/locale/lv.json +++ b/apps/spreadsheeteditor/main/locale/lv.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json index 9edd72aaf4..085ebb5e45 100644 --- a/apps/spreadsheeteditor/main/locale/ms.json +++ b/apps/spreadsheeteditor/main/locale/ms.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index 628308356d..4ba2628c7a 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index a102961ca9..5bf30e5007 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt-pt.json b/apps/spreadsheeteditor/main/locale/pt-pt.json index 63a6689bd1..7eaeb58d47 100644 --- a/apps/spreadsheeteditor/main/locale/pt-pt.json +++ b/apps/spreadsheeteditor/main/locale/pt-pt.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 494aa07f91..c9b0ac038b 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index be0468b0af..c900a0fd51 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 4d371545a7..d8f82827d1 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/si.json b/apps/spreadsheeteditor/main/locale/si.json index 6834976697..c4d8b8e10d 100644 --- a/apps/spreadsheeteditor/main/locale/si.json +++ b/apps/spreadsheeteditor/main/locale/si.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 6e123c9baa..664f140ff4 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index 9d41fc3eed..068ed14c9b 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sr-cyrl.json b/apps/spreadsheeteditor/main/locale/sr-cyrl.json index c7c7e07709..5a3c623973 100644 --- a/apps/spreadsheeteditor/main/locale/sr-cyrl.json +++ b/apps/spreadsheeteditor/main/locale/sr-cyrl.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sr.json b/apps/spreadsheeteditor/main/locale/sr.json index a8d30abc20..18ccb623e5 100644 --- a/apps/spreadsheeteditor/main/locale/sr.json +++ b/apps/spreadsheeteditor/main/locale/sr.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index 6558d261ec..1f5bc91dc1 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 99f8529f5a..0053897d05 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index c872a89bcc..1b66562893 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json index 1ec73e9254..dd2d5b2bce 100644 --- a/apps/spreadsheeteditor/main/locale/vi.json +++ b/apps/spreadsheeteditor/main/locale/vi.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh-tw.json b/apps/spreadsheeteditor/main/locale/zh-tw.json index db488dcbf3..b39ac57299 100644 --- a/apps/spreadsheeteditor/main/locale/zh-tw.json +++ b/apps/spreadsheeteditor/main/locale/zh-tw.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index fc7eead6b9..3a64b2f21c 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -4465,5 +4465,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textFill": "Fill", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textLine": "Line", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAppearance": "Appearance", - "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved" + "SSE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", + "SSE.Controllers.Print.txtZoomToPage": "Zoom to page", + "Common.Controllers.History.txtErrorLoadHistory": "History loading failed" } \ No newline at end of file