Skip to content

Commit

Permalink
Merge pull request 'fix/bugfix' (#5) from fix/bugfix into release/v8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Julia Radzhabova committed Sep 4, 2024
2 parents 3e2fca8 + 23eab14 commit 0f7c795
Show file tree
Hide file tree
Showing 167 changed files with 449 additions and 197 deletions.
8 changes: 3 additions & 5 deletions apps/common/main/lib/controller/History.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']
};
Expand Down Expand Up @@ -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 || {}));
});
1 change: 1 addition & 0 deletions apps/common/main/lib/util/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ar.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/az.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/be.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/bg.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ca.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/cs.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/da.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/el.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
1 change: 1 addition & 0 deletions apps/documenteditor/main/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "<b>{0}</b> is successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins",
Expand Down
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/eu.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/fi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/gl.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/hy.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/id.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/it.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ja.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/lo.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/lv.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ms.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/no.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/pt-pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ro.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/si.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/sk.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/sl.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/sr-cyrl.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/sr.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/sv.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/tr.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/uk.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/vi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
3 changes: 2 additions & 1 deletion apps/documenteditor/main/locale/zh-tw.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Loading

0 comments on commit 0f7c795

Please sign in to comment.