diff --git a/apps/common/main/lib/component/SynchronizeTip.js b/apps/common/main/lib/component/SynchronizeTip.js
index 71065ee880..32ce0dcdbf 100644
--- a/apps/common/main/lib/component/SynchronizeTip.js
+++ b/apps/common/main/lib/component/SynchronizeTip.js
@@ -230,12 +230,19 @@ define([
var _addTips = function(arr) {
for (var step in arr) {
- if (arr.hasOwnProperty(step) && !Common.localStorage.getItem(arr[step].name)) {
+ if (arr.hasOwnProperty(step) && !Common.localStorage.getItem(arr[step].name) && !(_helpTips[step] && _helpTips[step].tip && _helpTips[step].tip.isVisible())) { // don't replace tip when it's visible
_helpTips[step] = arr[step];
}
}
};
+ var _removeTip = function(step) {
+ if (_helpTips[step]) {
+ delete _helpTips[step];
+ _helpTips[step] = undefined;
+ }
+ };
+
var _getNeedShow = function(step) {
return _helpTips[step] && !(_helpTips[step].name && Common.localStorage.getItem(_helpTips[step].name));
};
@@ -310,6 +317,7 @@ define([
return {
showTip: _showTip,
closeTip: _closeTip,
+ removeTip: _removeTip,
addTips: _addTips,
getNeedShow: _getNeedShow
}
diff --git a/apps/common/main/lib/controller/Plugins.js b/apps/common/main/lib/controller/Plugins.js
index 2a86d452b2..bfde101235 100644
--- a/apps/common/main/lib/controller/Plugins.js
+++ b/apps/common/main/lib/controller/Plugins.js
@@ -112,6 +112,7 @@ define([
this._moveOffset = {x:0, y:0};
this.autostart = [];
this.customPluginsDlg = [];
+ this.macrosPlugin = {el: null, show: false};
this.newInstalledBackgroundPlugins = [];
this.customButtonsArr = [];
@@ -178,6 +179,10 @@ define([
accept();
})).then(function(){
me.onChangeProtectDocument();
+ Common.UI.TooltipManager.addTips({
+ 'moveMacros' : {name: 'help-tip-move-macros', placement: 'bottom-right', text: me.helpMoveMacros, header: me.helpMoveMacrosHeader, target: $('li.ribtab #view').parent(), automove: true}
+ });
+
Common.NotificationCenter.on('protect:doclock', _.bind(me.onChangeProtectDocument, me));
});
},
@@ -414,6 +419,7 @@ define([
me.toolbar && me.toolbar.addCustomItems({action: item.tab}, undefined, [item.btn])
});
me.customButtonsArr = [];
+ me.macrosPlugin = {};
me.appOptions.canPlugins = !collection.isEmpty();
if ( me.$toolbarPanelPlugins ) {
@@ -439,6 +445,16 @@ define([
btn.options.separator = tab.separator;
me.toolbar && me.toolbar.addCustomItems(tab, [btn]);
me.customButtonsArr.push({tab: tab.action, btn: btn});
+ if (model.get('guid') === "asc.{E6978D28-0441-4BD7-8346-82FAD68BCA3B}" ) {
+ me.macrosPlugin.el = btn.cmpEl;
+ if (me.toolbar && me.toolbar.isTabActive('plugins')) {
+ me.macrosPlugin.show = true;
+ Common.UI.TooltipManager.addTips({
+ 'useMacros' : {name: 'help-tip-use-macros', placement: 'bottom-left', text: me.helpUseMacros, header: me.helpUseMacrosHeader, target: me.macrosPlugin.el, automove: true},
+ });
+ Common.UI.TooltipManager.removeTip('grayTheme');
+ }
+ }
}
return;
}
@@ -657,6 +673,10 @@ define([
},
onPluginShow: function(plugin, variationIndex, frameId, urlAddition) {
+ if (plugin.get_Guid() === "asc.{E6978D28-0441-4BD7-8346-82FAD68BCA3B}" ) {
+ Common.UI.TooltipManager.closeTip('useMacros');
+ }
+
var variation = plugin.get_Variations()[variationIndex];
if (variation.get_Visual()) {
var lang = this.appOptions && this.appOptions.lang ? this.appOptions.lang.split(/[\-_]/)[0] : 'en';
@@ -1330,10 +1350,24 @@ define([
}, this);
this.backgroundPluginsTip.show();
}
+ this.macrosPlugin.show && Common.UI.TooltipManager.showTip('moveMacros');
+ this.macrosPlugin.show = false;
},
onActiveTab: function (tab) {
- (tab !== 'plugins') && this.closeBackPluginsTip();
+ if (tab === 'plugins') {
+ if (this.macrosPlugin.el) {
+ Common.UI.TooltipManager.addTips({
+ 'useMacros' : {name: 'help-tip-use-macros', placement: 'bottom-left', text: this.helpUseMacros, header: this.helpUseMacrosHeader, target: this.macrosPlugin.el, automove: true},
+ });
+ Common.UI.TooltipManager.removeTip('grayTheme');
+ this.macrosPlugin.el && Common.UI.TooltipManager.showTip('moveMacros');
+ }
+ } else {
+ this.closeBackPluginsTip();
+ Common.UI.TooltipManager.closeTip('moveMacros');
+ }
+ (tab === 'view') ? Common.UI.TooltipManager.showTip('useMacros') : Common.UI.TooltipManager.closeTip('useMacros');
},
closeBackPluginsTip: function() {
diff --git a/apps/documenteditor/main/locale/ar.json b/apps/documenteditor/main/locale/ar.json
index 52c0ad97bd..c2b32734c9 100644
--- a/apps/documenteditor/main/locale/ar.json
+++ b/apps/documenteditor/main/locale/ar.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json
index fc79a840de..79cc52baa1 100644
--- a/apps/documenteditor/main/locale/az.json
+++ b/apps/documenteditor/main/locale/az.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json
index c14d3d6b4a..f26bceee31 100644
--- a/apps/documenteditor/main/locale/be.json
+++ b/apps/documenteditor/main/locale/be.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json
index 2470f239c5..83c0e90a4c 100644
--- a/apps/documenteditor/main/locale/bg.json
+++ b/apps/documenteditor/main/locale/bg.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json
index 456cf25eab..9c38995425 100644
--- a/apps/documenteditor/main/locale/ca.json
+++ b/apps/documenteditor/main/locale/ca.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json
index 9ffed02892..3180037c00 100644
--- a/apps/documenteditor/main/locale/cs.json
+++ b/apps/documenteditor/main/locale/cs.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json
index 551f32e4c7..b8652e87b6 100644
--- a/apps/documenteditor/main/locale/da.json
+++ b/apps/documenteditor/main/locale/da.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json
index 9080b81c14..edb3eae9d9 100644
--- a/apps/documenteditor/main/locale/de.json
+++ b/apps/documenteditor/main/locale/de.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json
index 35c0d9b98f..c6ab49fbe9 100644
--- a/apps/documenteditor/main/locale/el.json
+++ b/apps/documenteditor/main/locale/el.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json
index 591986bef4..060ddfcfe8 100644
--- a/apps/documenteditor/main/locale/en.json
+++ b/apps/documenteditor/main/locale/en.json
@@ -20,6 +20,10 @@
"Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins",
"Common.Controllers.Plugins.textRunPlugin": "Run plugin",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros",
"Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "In order to compare documents all the tracked changes in them will be considered to have been accepted. Do you want to continue?",
"Common.Controllers.ReviewChanges.textAtLeast": "at least",
"Common.Controllers.ReviewChanges.textAuto": "auto",
diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json
index 2abf32045d..8d0b57430a 100644
--- a/apps/documenteditor/main/locale/es.json
+++ b/apps/documenteditor/main/locale/es.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json
index 2fb723944e..d20408d3f5 100644
--- a/apps/documenteditor/main/locale/eu.json
+++ b/apps/documenteditor/main/locale/eu.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json
index e4750f0079..29084496df 100644
--- a/apps/documenteditor/main/locale/fi.json
+++ b/apps/documenteditor/main/locale/fi.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json
index d792966b69..781838bd37 100644
--- a/apps/documenteditor/main/locale/fr.json
+++ b/apps/documenteditor/main/locale/fr.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json
index 4af0ef564f..c239511d09 100644
--- a/apps/documenteditor/main/locale/gl.json
+++ b/apps/documenteditor/main/locale/gl.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/he.json b/apps/documenteditor/main/locale/he.json
index 8a1131b374..aef96bb4dc 100644
--- a/apps/documenteditor/main/locale/he.json
+++ b/apps/documenteditor/main/locale/he.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json
index 6a992337d5..8ee4a39513 100644
--- a/apps/documenteditor/main/locale/hu.json
+++ b/apps/documenteditor/main/locale/hu.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json
index 0bf0c1a9c5..9c7ac1502a 100644
--- a/apps/documenteditor/main/locale/hy.json
+++ b/apps/documenteditor/main/locale/hy.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json
index 0dceb7b065..9f0086fa9d 100644
--- a/apps/documenteditor/main/locale/id.json
+++ b/apps/documenteditor/main/locale/id.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json
index db1491dc7a..330337b07e 100644
--- a/apps/documenteditor/main/locale/it.json
+++ b/apps/documenteditor/main/locale/it.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json
index ff84b73526..2906efafce 100644
--- a/apps/documenteditor/main/locale/ja.json
+++ b/apps/documenteditor/main/locale/ja.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json
index bfaee07c89..ceaf4dee57 100644
--- a/apps/documenteditor/main/locale/ko.json
+++ b/apps/documenteditor/main/locale/ko.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json
index 917271b7b8..71604cc05f 100644
--- a/apps/documenteditor/main/locale/lo.json
+++ b/apps/documenteditor/main/locale/lo.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json
index 947fe8cf89..7a3b8b211a 100644
--- a/apps/documenteditor/main/locale/lv.json
+++ b/apps/documenteditor/main/locale/lv.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json
index 5461b2ad38..11b422f521 100644
--- a/apps/documenteditor/main/locale/ms.json
+++ b/apps/documenteditor/main/locale/ms.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json
index 0c9ded39af..95de4ba823 100644
--- a/apps/documenteditor/main/locale/nl.json
+++ b/apps/documenteditor/main/locale/nl.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/no.json b/apps/documenteditor/main/locale/no.json
index 0a1f8b37d8..16d74dc70e 100644
--- a/apps/documenteditor/main/locale/no.json
+++ b/apps/documenteditor/main/locale/no.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json
index 3b133f454e..c07b5fe88e 100644
--- a/apps/documenteditor/main/locale/pl.json
+++ b/apps/documenteditor/main/locale/pl.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 113a789409..49f4577106 100644
--- a/apps/documenteditor/main/locale/pt-pt.json
+++ b/apps/documenteditor/main/locale/pt-pt.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json
index 3d706952cc..985cc763f8 100644
--- a/apps/documenteditor/main/locale/pt.json
+++ b/apps/documenteditor/main/locale/pt.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json
index 38a6a8025d..b4fa46b487 100644
--- a/apps/documenteditor/main/locale/ro.json
+++ b/apps/documenteditor/main/locale/ro.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json
index ca5a4ac5c4..1daf310f18 100644
--- a/apps/documenteditor/main/locale/ru.json
+++ b/apps/documenteditor/main/locale/ru.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json
index 7f46b47f61..a3c497be87 100644
--- a/apps/documenteditor/main/locale/si.json
+++ b/apps/documenteditor/main/locale/si.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json
index 84e1609fb0..29379beed7 100644
--- a/apps/documenteditor/main/locale/sk.json
+++ b/apps/documenteditor/main/locale/sk.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json
index b43184728b..8e0a83b2f8 100644
--- a/apps/documenteditor/main/locale/sl.json
+++ b/apps/documenteditor/main/locale/sl.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 880556ca04..a136d3c31e 100644
--- a/apps/documenteditor/main/locale/sr-cyrl.json
+++ b/apps/documenteditor/main/locale/sr-cyrl.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sr.json b/apps/documenteditor/main/locale/sr.json
index 8cc8aeadb7..1e50f3c920 100644
--- a/apps/documenteditor/main/locale/sr.json
+++ b/apps/documenteditor/main/locale/sr.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json
index 1b5b64d7b7..06a9862e05 100644
--- a/apps/documenteditor/main/locale/sv.json
+++ b/apps/documenteditor/main/locale/sv.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json
index d2b2eea339..891e546733 100644
--- a/apps/documenteditor/main/locale/tr.json
+++ b/apps/documenteditor/main/locale/tr.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json
index 5ab7acb3e3..9beb1fdff8 100644
--- a/apps/documenteditor/main/locale/uk.json
+++ b/apps/documenteditor/main/locale/uk.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json
index d06748a021..a90d3bd44b 100644
--- a/apps/documenteditor/main/locale/vi.json
+++ b/apps/documenteditor/main/locale/vi.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 f241f95de3..6b9e0c930d 100644
--- a/apps/documenteditor/main/locale/zh-tw.json
+++ b/apps/documenteditor/main/locale/zh-tw.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json
index 4f08108df6..f486a2628d 100644
--- a/apps/documenteditor/main/locale/zh.json
+++ b/apps/documenteditor/main/locale/zh.json
@@ -3663,5 +3663,9 @@
"DE.Controllers.Toolbar.helpTextDeleted": "Highlight deleted text to easily track changes and see the removed content between revisions.",
"DE.Controllers.Toolbar.helpTextDeletedHeader": "Enhanced Version History",
"DE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "DE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ar.json b/apps/pdfeditor/main/locale/ar.json
index 418f2b3bcc..f8df3d99cb 100644
--- a/apps/pdfeditor/main/locale/ar.json
+++ b/apps/pdfeditor/main/locale/ar.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/az.json b/apps/pdfeditor/main/locale/az.json
index 1515a8ddff..93c75e7853 100644
--- a/apps/pdfeditor/main/locale/az.json
+++ b/apps/pdfeditor/main/locale/az.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/be.json b/apps/pdfeditor/main/locale/be.json
index 4be0008214..e372c5dd57 100644
--- a/apps/pdfeditor/main/locale/be.json
+++ b/apps/pdfeditor/main/locale/be.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/bg.json b/apps/pdfeditor/main/locale/bg.json
index 958b6d258c..0033dad810 100644
--- a/apps/pdfeditor/main/locale/bg.json
+++ b/apps/pdfeditor/main/locale/bg.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ca.json b/apps/pdfeditor/main/locale/ca.json
index cdb2635e55..2fbe83ccd5 100644
--- a/apps/pdfeditor/main/locale/ca.json
+++ b/apps/pdfeditor/main/locale/ca.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/cs.json b/apps/pdfeditor/main/locale/cs.json
index 3813bc4ba8..0de9e2bd75 100644
--- a/apps/pdfeditor/main/locale/cs.json
+++ b/apps/pdfeditor/main/locale/cs.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/da.json b/apps/pdfeditor/main/locale/da.json
index 15cc84b1da..fe62d17300 100644
--- a/apps/pdfeditor/main/locale/da.json
+++ b/apps/pdfeditor/main/locale/da.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/de.json b/apps/pdfeditor/main/locale/de.json
index b08c264814..741fe113fe 100644
--- a/apps/pdfeditor/main/locale/de.json
+++ b/apps/pdfeditor/main/locale/de.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/el.json b/apps/pdfeditor/main/locale/el.json
index 15e99730a2..3eaf00d2cc 100644
--- a/apps/pdfeditor/main/locale/el.json
+++ b/apps/pdfeditor/main/locale/el.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/en.json b/apps/pdfeditor/main/locale/en.json
index 755f050ac7..510946811f 100644
--- a/apps/pdfeditor/main/locale/en.json
+++ b/apps/pdfeditor/main/locale/en.json
@@ -8,6 +8,10 @@
"Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins",
"Common.Controllers.Plugins.textRunPlugin": "Run plugin",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros",
"Common.Translation.textMoreButton": "More",
"Common.Translation.tipFileLocked": "Document is locked for editing. You can make changes and save it as local copy later.",
"Common.Translation.tipFileReadOnly": "The file is read-only. To keep your changes, save the file with a new name or in a different location.",
diff --git a/apps/pdfeditor/main/locale/es.json b/apps/pdfeditor/main/locale/es.json
index dbcc8e0477..7cc46c0235 100644
--- a/apps/pdfeditor/main/locale/es.json
+++ b/apps/pdfeditor/main/locale/es.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/eu.json b/apps/pdfeditor/main/locale/eu.json
index aa8e8ffb7e..5b8c35b75b 100644
--- a/apps/pdfeditor/main/locale/eu.json
+++ b/apps/pdfeditor/main/locale/eu.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/fi.json b/apps/pdfeditor/main/locale/fi.json
index 1846bcc022..ec5e963590 100644
--- a/apps/pdfeditor/main/locale/fi.json
+++ b/apps/pdfeditor/main/locale/fi.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/fr.json b/apps/pdfeditor/main/locale/fr.json
index 4958b747f1..2660ca2336 100644
--- a/apps/pdfeditor/main/locale/fr.json
+++ b/apps/pdfeditor/main/locale/fr.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/gl.json b/apps/pdfeditor/main/locale/gl.json
index dc26bac7fd..45d10bbdbf 100644
--- a/apps/pdfeditor/main/locale/gl.json
+++ b/apps/pdfeditor/main/locale/gl.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/he.json b/apps/pdfeditor/main/locale/he.json
index 1212af75ba..6a15e83cc3 100644
--- a/apps/pdfeditor/main/locale/he.json
+++ b/apps/pdfeditor/main/locale/he.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/hu.json b/apps/pdfeditor/main/locale/hu.json
index 725ed4a8c7..0e5a1cc485 100644
--- a/apps/pdfeditor/main/locale/hu.json
+++ b/apps/pdfeditor/main/locale/hu.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/hy.json b/apps/pdfeditor/main/locale/hy.json
index ae7044dcb9..e7ee339696 100644
--- a/apps/pdfeditor/main/locale/hy.json
+++ b/apps/pdfeditor/main/locale/hy.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/id.json b/apps/pdfeditor/main/locale/id.json
index 46dbb41030..ee4e738b5a 100644
--- a/apps/pdfeditor/main/locale/id.json
+++ b/apps/pdfeditor/main/locale/id.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/it.json b/apps/pdfeditor/main/locale/it.json
index 5d908fa760..fef13eb869 100644
--- a/apps/pdfeditor/main/locale/it.json
+++ b/apps/pdfeditor/main/locale/it.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ja.json b/apps/pdfeditor/main/locale/ja.json
index 852173d2c9..2e32a399e8 100644
--- a/apps/pdfeditor/main/locale/ja.json
+++ b/apps/pdfeditor/main/locale/ja.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ko.json b/apps/pdfeditor/main/locale/ko.json
index 8cef05249f..60849257fc 100644
--- a/apps/pdfeditor/main/locale/ko.json
+++ b/apps/pdfeditor/main/locale/ko.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/lo.json b/apps/pdfeditor/main/locale/lo.json
index 1de07917f1..1c5f561dde 100644
--- a/apps/pdfeditor/main/locale/lo.json
+++ b/apps/pdfeditor/main/locale/lo.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/lv.json b/apps/pdfeditor/main/locale/lv.json
index 41222de3e8..3ae8309886 100644
--- a/apps/pdfeditor/main/locale/lv.json
+++ b/apps/pdfeditor/main/locale/lv.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ms.json b/apps/pdfeditor/main/locale/ms.json
index ad5183bef3..1b369d0895 100644
--- a/apps/pdfeditor/main/locale/ms.json
+++ b/apps/pdfeditor/main/locale/ms.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/nl.json b/apps/pdfeditor/main/locale/nl.json
index d3190b5bc0..c90ab2a573 100644
--- a/apps/pdfeditor/main/locale/nl.json
+++ b/apps/pdfeditor/main/locale/nl.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/pl.json b/apps/pdfeditor/main/locale/pl.json
index 9baffc4a17..da516e4d9d 100644
--- a/apps/pdfeditor/main/locale/pl.json
+++ b/apps/pdfeditor/main/locale/pl.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 cb6b192008..4f77e0b305 100644
--- a/apps/pdfeditor/main/locale/pt-pt.json
+++ b/apps/pdfeditor/main/locale/pt-pt.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/pt.json b/apps/pdfeditor/main/locale/pt.json
index 1a444967b0..2cd4822cc6 100644
--- a/apps/pdfeditor/main/locale/pt.json
+++ b/apps/pdfeditor/main/locale/pt.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ro.json b/apps/pdfeditor/main/locale/ro.json
index 1efa5dafac..5322519cf1 100644
--- a/apps/pdfeditor/main/locale/ro.json
+++ b/apps/pdfeditor/main/locale/ro.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/ru.json b/apps/pdfeditor/main/locale/ru.json
index 758c49f329..ec8dc1cabe 100644
--- a/apps/pdfeditor/main/locale/ru.json
+++ b/apps/pdfeditor/main/locale/ru.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/si.json b/apps/pdfeditor/main/locale/si.json
index f28aa9db33..f027dbbdad 100644
--- a/apps/pdfeditor/main/locale/si.json
+++ b/apps/pdfeditor/main/locale/si.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/sk.json b/apps/pdfeditor/main/locale/sk.json
index e533fb8a60..0014816048 100644
--- a/apps/pdfeditor/main/locale/sk.json
+++ b/apps/pdfeditor/main/locale/sk.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/sl.json b/apps/pdfeditor/main/locale/sl.json
index bbc57f099a..22197f20e3 100644
--- a/apps/pdfeditor/main/locale/sl.json
+++ b/apps/pdfeditor/main/locale/sl.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 6dab963656..deccedb44f 100644
--- a/apps/pdfeditor/main/locale/sr-cyrl.json
+++ b/apps/pdfeditor/main/locale/sr-cyrl.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/sr.json b/apps/pdfeditor/main/locale/sr.json
index 2a3f1d32f0..63ce946144 100644
--- a/apps/pdfeditor/main/locale/sr.json
+++ b/apps/pdfeditor/main/locale/sr.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/sv.json b/apps/pdfeditor/main/locale/sv.json
index d919d1fe61..f80e1b1615 100644
--- a/apps/pdfeditor/main/locale/sv.json
+++ b/apps/pdfeditor/main/locale/sv.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/tr.json b/apps/pdfeditor/main/locale/tr.json
index 3e417fd11f..751532563e 100644
--- a/apps/pdfeditor/main/locale/tr.json
+++ b/apps/pdfeditor/main/locale/tr.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/uk.json b/apps/pdfeditor/main/locale/uk.json
index a64c1045a2..d88c2264b2 100644
--- a/apps/pdfeditor/main/locale/uk.json
+++ b/apps/pdfeditor/main/locale/uk.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 82169c8d8e..503d4c025e 100644
--- a/apps/pdfeditor/main/locale/zh-tw.json
+++ b/apps/pdfeditor/main/locale/zh-tw.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/pdfeditor/main/locale/zh.json b/apps/pdfeditor/main/locale/zh.json
index a658d22bf2..776aee493d 100644
--- a/apps/pdfeditor/main/locale/zh.json
+++ b/apps/pdfeditor/main/locale/zh.json
@@ -2020,5 +2020,9 @@
"PDFE.Controllers.Toolbar.helpPdfCoedit": "Co-edit PDFs with other co-authors in the real-time or paragraph-locking modes.",
"PDFE.Controllers.Toolbar.helpPdfCoeditHeader": "PDF collaboration",
"PDFE.Controllers.Toolbar.helpPdfSave": "Annotate and edit – all of your changes are saved to the original file without creating separate copies.",
- "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor"
+ "PDFE.Controllers.Toolbar.helpPdfSaveHeader": "Enhanced PDF Editor",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ar.json b/apps/presentationeditor/main/locale/ar.json
index e7651eaa56..cbc36c97ae 100644
--- a/apps/presentationeditor/main/locale/ar.json
+++ b/apps/presentationeditor/main/locale/ar.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json
index 46774c12b3..a5a1cda3ca 100644
--- a/apps/presentationeditor/main/locale/az.json
+++ b/apps/presentationeditor/main/locale/az.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json
index 7363fbf421..37d4520189 100644
--- a/apps/presentationeditor/main/locale/be.json
+++ b/apps/presentationeditor/main/locale/be.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json
index a695b1e110..23a04cdadb 100644
--- a/apps/presentationeditor/main/locale/bg.json
+++ b/apps/presentationeditor/main/locale/bg.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json
index a45893aa33..8b01a233f5 100644
--- a/apps/presentationeditor/main/locale/ca.json
+++ b/apps/presentationeditor/main/locale/ca.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json
index fbf0073807..38456e23bc 100644
--- a/apps/presentationeditor/main/locale/cs.json
+++ b/apps/presentationeditor/main/locale/cs.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json
index a0387ed070..1b7bac4b6e 100644
--- a/apps/presentationeditor/main/locale/da.json
+++ b/apps/presentationeditor/main/locale/da.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json
index b4b25a7402..573c50fef0 100644
--- a/apps/presentationeditor/main/locale/de.json
+++ b/apps/presentationeditor/main/locale/de.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json
index 892881b787..bbf9d8c090 100644
--- a/apps/presentationeditor/main/locale/el.json
+++ b/apps/presentationeditor/main/locale/el.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json
index aaafa4d803..02fa995615 100644
--- a/apps/presentationeditor/main/locale/en.json
+++ b/apps/presentationeditor/main/locale/en.json
@@ -16,6 +16,10 @@
"Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins",
"Common.Controllers.Plugins.textRunPlugin": "Run plugin",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros",
"Common.define.chartData.textArea": "Area",
"Common.define.chartData.textAreaStacked": "Stacked area",
"Common.define.chartData.textAreaStackedPer": "100% Stacked area",
diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json
index c690e0a305..4d1c0724da 100644
--- a/apps/presentationeditor/main/locale/es.json
+++ b/apps/presentationeditor/main/locale/es.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json
index 916890517a..41b00a0ec1 100644
--- a/apps/presentationeditor/main/locale/eu.json
+++ b/apps/presentationeditor/main/locale/eu.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json
index 3e06fa4e61..6266a03c5c 100644
--- a/apps/presentationeditor/main/locale/fi.json
+++ b/apps/presentationeditor/main/locale/fi.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json
index ab3547395e..a240dfb4fa 100644
--- a/apps/presentationeditor/main/locale/fr.json
+++ b/apps/presentationeditor/main/locale/fr.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json
index b3e30c64b4..f2616a89e0 100644
--- a/apps/presentationeditor/main/locale/gl.json
+++ b/apps/presentationeditor/main/locale/gl.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/he.json b/apps/presentationeditor/main/locale/he.json
index 146e065f95..bd098c57b6 100644
--- a/apps/presentationeditor/main/locale/he.json
+++ b/apps/presentationeditor/main/locale/he.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json
index 55e5274acb..6bd646761d 100644
--- a/apps/presentationeditor/main/locale/hu.json
+++ b/apps/presentationeditor/main/locale/hu.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json
index 3dda7e6c2e..0ae4fd756a 100644
--- a/apps/presentationeditor/main/locale/hy.json
+++ b/apps/presentationeditor/main/locale/hy.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json
index e88f1afe3f..ebde206694 100644
--- a/apps/presentationeditor/main/locale/id.json
+++ b/apps/presentationeditor/main/locale/id.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json
index 563351545c..8cb7040bb2 100644
--- a/apps/presentationeditor/main/locale/it.json
+++ b/apps/presentationeditor/main/locale/it.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json
index 363c8cb74a..6a193b4078 100644
--- a/apps/presentationeditor/main/locale/ja.json
+++ b/apps/presentationeditor/main/locale/ja.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json
index 7ebdcf428c..588ec857d9 100644
--- a/apps/presentationeditor/main/locale/ko.json
+++ b/apps/presentationeditor/main/locale/ko.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json
index 275b49917a..6dc695a13c 100644
--- a/apps/presentationeditor/main/locale/lo.json
+++ b/apps/presentationeditor/main/locale/lo.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json
index 6c554242d8..86a7c8f488 100644
--- a/apps/presentationeditor/main/locale/lv.json
+++ b/apps/presentationeditor/main/locale/lv.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json
index f89234b8ef..3fedd4ed70 100644
--- a/apps/presentationeditor/main/locale/ms.json
+++ b/apps/presentationeditor/main/locale/ms.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json
index cc46bc97d6..68211f0e63 100644
--- a/apps/presentationeditor/main/locale/nl.json
+++ b/apps/presentationeditor/main/locale/nl.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json
index fa24cf4601..dd106ffc84 100644
--- a/apps/presentationeditor/main/locale/pl.json
+++ b/apps/presentationeditor/main/locale/pl.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 06ac968309..4f024d5b73 100644
--- a/apps/presentationeditor/main/locale/pt-pt.json
+++ b/apps/presentationeditor/main/locale/pt-pt.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json
index 277b33c0b5..3889d1349b 100644
--- a/apps/presentationeditor/main/locale/pt.json
+++ b/apps/presentationeditor/main/locale/pt.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json
index f60ec3fd15..66077b6876 100644
--- a/apps/presentationeditor/main/locale/ro.json
+++ b/apps/presentationeditor/main/locale/ro.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json
index 1ad67ee030..7cb96a3ca3 100644
--- a/apps/presentationeditor/main/locale/ru.json
+++ b/apps/presentationeditor/main/locale/ru.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/si.json b/apps/presentationeditor/main/locale/si.json
index d79e181a51..c67acf2f0b 100644
--- a/apps/presentationeditor/main/locale/si.json
+++ b/apps/presentationeditor/main/locale/si.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json
index 134660643e..21412d4082 100644
--- a/apps/presentationeditor/main/locale/sk.json
+++ b/apps/presentationeditor/main/locale/sk.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json
index a1b8be0033..a308f9beca 100644
--- a/apps/presentationeditor/main/locale/sl.json
+++ b/apps/presentationeditor/main/locale/sl.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 853b7684f1..8fa2b8c278 100644
--- a/apps/presentationeditor/main/locale/sr-cyrl.json
+++ b/apps/presentationeditor/main/locale/sr-cyrl.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/sr.json b/apps/presentationeditor/main/locale/sr.json
index 2613152f15..8f6f76c6ec 100644
--- a/apps/presentationeditor/main/locale/sr.json
+++ b/apps/presentationeditor/main/locale/sr.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json
index 7897df73e6..7df174a592 100644
--- a/apps/presentationeditor/main/locale/sv.json
+++ b/apps/presentationeditor/main/locale/sv.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json
index b3cb44444d..aeebac604c 100644
--- a/apps/presentationeditor/main/locale/tr.json
+++ b/apps/presentationeditor/main/locale/tr.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json
index 2a695645fd..6442a7083a 100644
--- a/apps/presentationeditor/main/locale/uk.json
+++ b/apps/presentationeditor/main/locale/uk.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json
index 817d9df86b..49353e44eb 100644
--- a/apps/presentationeditor/main/locale/vi.json
+++ b/apps/presentationeditor/main/locale/vi.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 bf3a0a8d8a..0d131d9815 100644
--- a/apps/presentationeditor/main/locale/zh-tw.json
+++ b/apps/presentationeditor/main/locale/zh-tw.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json
index 09cfba43c4..b8f5d8cf42 100644
--- a/apps/presentationeditor/main/locale/zh.json
+++ b/apps/presentationeditor/main/locale/zh.json
@@ -2935,5 +2935,9 @@
"PE.Controllers.Toolbar.helpGrayTheme": "Try Gray theme and access more customization options via File tab – Advanced Settings – Appearance.",
"PE.Controllers.Toolbar.helpGrayThemeHeader": "Revamped interface",
"PE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "PE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ar.json b/apps/spreadsheeteditor/main/locale/ar.json
index 28049a5ef8..4350a271d7 100644
--- a/apps/spreadsheeteditor/main/locale/ar.json
+++ b/apps/spreadsheeteditor/main/locale/ar.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json
index 16f608b90a..432bd703d5 100644
--- a/apps/spreadsheeteditor/main/locale/az.json
+++ b/apps/spreadsheeteditor/main/locale/az.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json
index 9afcd18291..f071e62477 100644
--- a/apps/spreadsheeteditor/main/locale/be.json
+++ b/apps/spreadsheeteditor/main/locale/be.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json
index 0c6be6344f..20aee405e3 100644
--- a/apps/spreadsheeteditor/main/locale/bg.json
+++ b/apps/spreadsheeteditor/main/locale/bg.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json
index 72d46aae94..b0c5dc7a39 100644
--- a/apps/spreadsheeteditor/main/locale/ca.json
+++ b/apps/spreadsheeteditor/main/locale/ca.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json
index d81eb263fe..e470190dd7 100644
--- a/apps/spreadsheeteditor/main/locale/cs.json
+++ b/apps/spreadsheeteditor/main/locale/cs.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json
index 72ae4dcc26..153b72d6cf 100644
--- a/apps/spreadsheeteditor/main/locale/da.json
+++ b/apps/spreadsheeteditor/main/locale/da.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json
index ed54694520..1aa57bd831 100644
--- a/apps/spreadsheeteditor/main/locale/de.json
+++ b/apps/spreadsheeteditor/main/locale/de.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json
index 88cfa3dc29..156f9dfafb 100644
--- a/apps/spreadsheeteditor/main/locale/el.json
+++ b/apps/spreadsheeteditor/main/locale/el.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json
index 15f9b0841a..834812b792 100644
--- a/apps/spreadsheeteditor/main/locale/en.json
+++ b/apps/spreadsheeteditor/main/locale/en.json
@@ -9,6 +9,10 @@
"Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} is successfully installed. You can access all background plugins here.",
"Common.Controllers.Plugins.textRunInstalledPlugins": "Run installed plugins",
"Common.Controllers.Plugins.textRunPlugin": "Run plugin",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros",
"Common.define.chartData.textArea": "Area",
"Common.define.chartData.textAreaStacked": "Stacked area",
"Common.define.chartData.textAreaStackedPer": "100% Stacked area",
diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json
index b91b0dda41..f1c5b3f6b3 100644
--- a/apps/spreadsheeteditor/main/locale/es.json
+++ b/apps/spreadsheeteditor/main/locale/es.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json
index b74d7709e1..61d02a9493 100644
--- a/apps/spreadsheeteditor/main/locale/eu.json
+++ b/apps/spreadsheeteditor/main/locale/eu.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json
index 0baa4956e2..00f5eb0653 100644
--- a/apps/spreadsheeteditor/main/locale/fi.json
+++ b/apps/spreadsheeteditor/main/locale/fi.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json
index a688c4c187..b6d998acd1 100644
--- a/apps/spreadsheeteditor/main/locale/fr.json
+++ b/apps/spreadsheeteditor/main/locale/fr.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json
index fc024de76c..7fdc141fc8 100644
--- a/apps/spreadsheeteditor/main/locale/gl.json
+++ b/apps/spreadsheeteditor/main/locale/gl.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/he.json b/apps/spreadsheeteditor/main/locale/he.json
index 68bf986885..90c59ed915 100644
--- a/apps/spreadsheeteditor/main/locale/he.json
+++ b/apps/spreadsheeteditor/main/locale/he.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json
index c5ce8834a5..4d9248febd 100644
--- a/apps/spreadsheeteditor/main/locale/hu.json
+++ b/apps/spreadsheeteditor/main/locale/hu.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json
index 56b4cd8c3e..efea45d8fc 100644
--- a/apps/spreadsheeteditor/main/locale/hy.json
+++ b/apps/spreadsheeteditor/main/locale/hy.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json
index dab620630d..919b552551 100644
--- a/apps/spreadsheeteditor/main/locale/id.json
+++ b/apps/spreadsheeteditor/main/locale/id.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json
index b6e4782db2..8bbcc60002 100644
--- a/apps/spreadsheeteditor/main/locale/it.json
+++ b/apps/spreadsheeteditor/main/locale/it.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json
index 9ce8f4e317..e23ca19a09 100644
--- a/apps/spreadsheeteditor/main/locale/ja.json
+++ b/apps/spreadsheeteditor/main/locale/ja.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json
index 3ec1acdd6e..78e50d4314 100644
--- a/apps/spreadsheeteditor/main/locale/ko.json
+++ b/apps/spreadsheeteditor/main/locale/ko.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json
index 646321c51c..f38b46113f 100644
--- a/apps/spreadsheeteditor/main/locale/lo.json
+++ b/apps/spreadsheeteditor/main/locale/lo.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json
index 301bd25a4b..2dcd5235b7 100644
--- a/apps/spreadsheeteditor/main/locale/lv.json
+++ b/apps/spreadsheeteditor/main/locale/lv.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json
index f9cefe29cf..04be3632b3 100644
--- a/apps/spreadsheeteditor/main/locale/ms.json
+++ b/apps/spreadsheeteditor/main/locale/ms.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json
index 6d74ff6858..433c8618ef 100644
--- a/apps/spreadsheeteditor/main/locale/nl.json
+++ b/apps/spreadsheeteditor/main/locale/nl.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json
index a0bfb9b119..bed05c4d0b 100644
--- a/apps/spreadsheeteditor/main/locale/pl.json
+++ b/apps/spreadsheeteditor/main/locale/pl.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 555c5a5100..23aedf8371 100644
--- a/apps/spreadsheeteditor/main/locale/pt-pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt-pt.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json
index d67204cd21..f1178c8628 100644
--- a/apps/spreadsheeteditor/main/locale/pt.json
+++ b/apps/spreadsheeteditor/main/locale/pt.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json
index 8d93e8aa10..76ffceabbc 100644
--- a/apps/spreadsheeteditor/main/locale/ro.json
+++ b/apps/spreadsheeteditor/main/locale/ro.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json
index fc4b8909e7..250ee3905e 100644
--- a/apps/spreadsheeteditor/main/locale/ru.json
+++ b/apps/spreadsheeteditor/main/locale/ru.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/si.json b/apps/spreadsheeteditor/main/locale/si.json
index 8f4519a63c..075927c5e6 100644
--- a/apps/spreadsheeteditor/main/locale/si.json
+++ b/apps/spreadsheeteditor/main/locale/si.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json
index 99bce17cb1..739d3f7e80 100644
--- a/apps/spreadsheeteditor/main/locale/sk.json
+++ b/apps/spreadsheeteditor/main/locale/sk.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json
index ddb1825f42..998d4d0401 100644
--- a/apps/spreadsheeteditor/main/locale/sl.json
+++ b/apps/spreadsheeteditor/main/locale/sl.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 cd44c50dba..dc32e65696 100644
--- a/apps/spreadsheeteditor/main/locale/sr-cyrl.json
+++ b/apps/spreadsheeteditor/main/locale/sr-cyrl.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sr.json b/apps/spreadsheeteditor/main/locale/sr.json
index 801851afd2..f2cbaca8ff 100644
--- a/apps/spreadsheeteditor/main/locale/sr.json
+++ b/apps/spreadsheeteditor/main/locale/sr.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json
index de2c27d8ff..5ff9f711fe 100644
--- a/apps/spreadsheeteditor/main/locale/sv.json
+++ b/apps/spreadsheeteditor/main/locale/sv.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json
index 224efdedda..2c35412953 100644
--- a/apps/spreadsheeteditor/main/locale/tr.json
+++ b/apps/spreadsheeteditor/main/locale/tr.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json
index 8f13dacc80..4691d1b8b0 100644
--- a/apps/spreadsheeteditor/main/locale/uk.json
+++ b/apps/spreadsheeteditor/main/locale/uk.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json
index 8c2d8c79f0..f88e1b7d05 100644
--- a/apps/spreadsheeteditor/main/locale/vi.json
+++ b/apps/spreadsheeteditor/main/locale/vi.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ 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 2f1c09a910..c9b2519e7f 100644
--- a/apps/spreadsheeteditor/main/locale/zh-tw.json
+++ b/apps/spreadsheeteditor/main/locale/zh-tw.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file
diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json
index 7f73a91721..2d6fafb416 100644
--- a/apps/spreadsheeteditor/main/locale/zh.json
+++ b/apps/spreadsheeteditor/main/locale/zh.json
@@ -4500,5 +4500,9 @@
"SSE.Controllers.Toolbar.helpInsPivot": "To start working with Pivot Tables, access the Insert tab.",
"SSE.Controllers.Toolbar.helpInsPivotHeader": "Updated Pivot Tables",
"SSE.Controllers.Toolbar.helpCustomInfo": "Create and edit the document properties yourself in the Info section.",
- "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields"
+ "SSE.Controllers.Toolbar.helpCustomInfoHeader": "Custom file fields",
+ "Common.Controllers.Plugins.helpMoveMacros": "To start working with macros, switch to the View tab.",
+ "Common.Controllers.Plugins.helpMoveMacrosHeader": "The moved Macros button",
+ "Common.Controllers.Plugins.helpUseMacros": "Find the Macros button here",
+ "Common.Controllers.Plugins.helpUseMacrosHeader": "Updated access to macros"
}
\ No newline at end of file