diff --git a/apps/common/main/lib/component/SynchronizeTip.js b/apps/common/main/lib/component/SynchronizeTip.js index 96a2d17f50..1dc9e43b59 100644 --- a/apps/common/main/lib/component/SynchronizeTip.js +++ b/apps/common/main/lib/component/SynchronizeTip.js @@ -213,6 +213,9 @@ define([ var width = this.cmpEl.width(); if (left+width>Common.Utils.innerWidth()) left = Common.Utils.innerWidth() - width - 10; + if (left < 10) + left = 10; + left = (left + 'px'); } else left = 'auto'; diff --git a/apps/common/main/lib/controller/History.js b/apps/common/main/lib/controller/History.js index 0ffd247ff1..e6a6c03115 100644 --- a/apps/common/main/lib/controller/History.js +++ b/apps/common/main/lib/controller/History.js @@ -202,7 +202,7 @@ define([ if (!opts.data || opts.data.error) { var config = { title: this.notcriticalErrorTitle, - msg: opts.data && opts.data.error ? opts.data.error : this.txtErrorLoadHistory, + msg: opts.data && opts.data.error ? Common.Utils.String.htmlEncode(opts.data.error) : this.txtErrorLoadHistory, iconCls: 'warn', buttons: ['ok'] }; diff --git a/apps/common/main/lib/controller/Plugins.js b/apps/common/main/lib/controller/Plugins.js index f2090988eb..69000165de 100644 --- a/apps/common/main/lib/controller/Plugins.js +++ b/apps/common/main/lib/controller/Plugins.js @@ -639,7 +639,7 @@ define([ type: 'plugin' }); button.render($button); - var $panel = $('
'); + var $panel = $('
'); this.viewPlugins.fireEvent(menu === 'right' ? 'plugins:addtoright' : 'plugins:addtoleft', [button, $button, $panel]); this.viewPlugins.pluginPanels[pluginGuid] = new Common.Views.PluginPanel({ el: '#panel-plugins-' + name, @@ -1335,7 +1335,7 @@ define([ type: 'plugin' }); button.render($button); - var $panel = $('
'); + var $panel = $('
'); this.viewPlugins.fireEvent(menu === 'right' ? 'plugins:addtoright' : 'plugins:addtoleft', [button, $button, $panel]); this.viewPlugins.customPluginPanels[frameId] = new Common.Views.PluginPanel({ el: '#panel-plugins-' + frameId, diff --git a/apps/common/main/lib/controller/Shortcuts.js b/apps/common/main/lib/controller/Shortcuts.js index 84b98b1a35..c6f31b9a11 100644 --- a/apps/common/main/lib/controller/Shortcuts.js +++ b/apps/common/main/lib/controller/Shortcuts.js @@ -594,6 +594,10 @@ define([ // weight = range for main key + “cost” of extra keys return keyIndex * 100 + extras; } + + if (first.ascShortcut.asc_IsLocked() && !second.ascShortcut.asc_IsLocked()) return -1; + if (!first.ascShortcut.asc_IsLocked() && second.ascShortcut.asc_IsLocked()) return 1; + let wFirst = getWeight(first.ascShortcut); let wSecond = getWeight(second.ascShortcut); diff --git a/apps/common/main/lib/view/PluginPanel.js b/apps/common/main/lib/view/PluginPanel.js index edf872ba0f..7c0fd9154d 100644 --- a/apps/common/main/lib/view/PluginPanel.js +++ b/apps/common/main/lib/view/PluginPanel.js @@ -86,7 +86,7 @@ define([], function () { if (this.sideMenuButton) { this.pluginHide = new Common.UI.Button({ parentEl: this.$el.find('.plugin-hide'), - cls: 'btn-toolbar', + cls: 'btn-toolbar' + (this.menu==='right' ^ Common.UI.isRTL() ? ' icon-mirrored' : ''), iconCls: 'toolbar__icon btn-panel-left-collapse', hint: this.textHidePanel }); diff --git a/apps/common/main/lib/view/RecentFiles.js b/apps/common/main/lib/view/RecentFiles.js index 37d7888cf2..f535f80bfc 100644 --- a/apps/common/main/lib/view/RecentFiles.js +++ b/apps/common/main/lib/view/RecentFiles.js @@ -81,7 +81,7 @@ define([ '
', '
', '
', - '<%= format %><% } else { %>blank<% } %>">', + ' 0) { %><%= format %><% } else { %>neutral<% } %>">', '
"img-format-<%=format %>"<% } else {%> "svg-file-recent"<%} %>>
', '
', '
', diff --git a/apps/common/main/lib/view/ShortcutsDialog.js b/apps/common/main/lib/view/ShortcutsDialog.js index bcad311326..1fe14c4a56 100644 --- a/apps/common/main/lib/view/ShortcutsDialog.js +++ b/apps/common/main/lib/view/ShortcutsDialog.js @@ -103,7 +103,7 @@ define([ '
', '<% if (action.isLocked) { %>', '', '<% } else { %>', '' + ? ' ' : '' @@ -252,10 +262,21 @@ define([ placeHolder : me.txtInputPlaceholder, disabled : isLocked }); - const removeButton = new Common.UI.Button({ - el: $item.find('.remove-btn'), - }); - item.set({ keysInput: keysInput, removeBtn: removeButton }); + + let removeButton; + if(isLocked) { + $item.find('.lock-info-icon').tooltip({ + title: me.txtCantBeEdited, + placement: 'cursor', + zIndex : parseInt(me.$window.css('z-index')) + 10 + }); + } else { + removeButton = new Common.UI.Button({ + el: $item.find('.remove-btn') + }); + } + + item.set({ keysInput: keysInput, removeBtn: removeButton}); const $keysInput = $item.find('.keys-input input'); $keysInput.on('keydown', function(e) { @@ -356,11 +377,20 @@ define([ }); $item.find('.remove-btn').on('click', function() { + const removedIndex = me.shortcutsCollection.findIndex(function(record) { + return record == item; + }); me.shortcutsCollection.remove(item); if(me.shortcutsCollection.length == 0) { me.onAddShortcut(); } - me.$window.find('#shortcuts-list .item input').last().focus(); + + let newFocusableIndex = removedIndex < me.shortcutsCollection.length ? removedIndex : removedIndex - 1; + if(me.shortcutsCollection.at(newFocusableIndex).get('removeBtn')) { + me.shortcutsCollection.at(newFocusableIndex).get('removeBtn').focus(); + } else { + me.getFooterButtons()[0].focus();; + } }); }); this.fixHeight(true); @@ -378,19 +408,22 @@ define([ this.shortcutsCollection.each(function(item) { const ascShortcut = item.get('ascShortcut'); const assignedActionNames = []; - const assignedActions = me._findAssignedActions(ascShortcut, { + const assignedItem = me._findAssignedActions(ascShortcut, { actionType: me.options.action.type, shortcuts: me.shortcutsCollection.toJSON().slice(0, _.indexOf(me.shortcutsCollection.models, item)) }); const isDefaultShortcut = me._isDefaultShortcut(ascShortcut); const isDisabled = !isDefaultShortcut && - _.some(assignedActions, function(action) { return action.isLocked; }); + _.some(assignedItem, function(item) { + return item.action.isLocked || item.shortcut.ascShortcut.asc_IsLocked(); + }); isButtonDisabled = isButtonDisabled || isDisabled; - for (let i = 0; i < assignedActions.length; i++) { - const action = assignedActions[i]; - if(action.isLocked == isDisabled) { + for (let i = 0; i < assignedItem.length; i++) { + const action = assignedItem[i].action; + const ascShortcut = assignedItem[i].shortcut.ascShortcut; + if((action.isLocked || ascShortcut.asc_IsLocked()) == isDisabled) { assignedActionNames.push('“' + action.name + '”'); } } @@ -480,7 +513,8 @@ define([ txtRestoreToDefault: 'Restore to default', txtTypeDesiredShortcut: 'Type desired shortcut', txtRestoreDescription: 'All shortcuts for action “%1” will be restored to deafult.', - txtRestoreContinue: 'Do you want to continue?' + txtRestoreContinue: 'Do you want to continue?', + txtCantBeEdited: 'This shortcut can’t be edited' }, Common.Views.ShortcutsEditDialog || {})) }); \ No newline at end of file diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-suggest-feature.png b/apps/common/main/resources/img/toolbar/1.75x/btn-suggest-feature.png index af94150bb3..bb91f0c2de 100644 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-suggest-feature.png and b/apps/common/main/resources/img/toolbar/1.75x/btn-suggest-feature.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-suggest-feature.png b/apps/common/main/resources/img/toolbar/1x/btn-suggest-feature.png index 22db9e4f99..92631c4b8b 100644 Binary files a/apps/common/main/resources/img/toolbar/1x/btn-suggest-feature.png and b/apps/common/main/resources/img/toolbar/1x/btn-suggest-feature.png differ diff --git a/apps/common/main/resources/img/toolbar/2.5x/btn-suggest-feature.svg b/apps/common/main/resources/img/toolbar/2.5x/btn-suggest-feature.svg index dc8de16a45..c2ab600838 100644 --- a/apps/common/main/resources/img/toolbar/2.5x/btn-suggest-feature.svg +++ b/apps/common/main/resources/img/toolbar/2.5x/btn-suggest-feature.svg @@ -1,3 +1,3 @@ - + diff --git a/apps/common/main/resources/img/toolbar/2x/btn-suggest-feature.png b/apps/common/main/resources/img/toolbar/2x/btn-suggest-feature.png index b41f1ef10f..b6b8f6396a 100644 Binary files a/apps/common/main/resources/img/toolbar/2x/btn-suggest-feature.png and b/apps/common/main/resources/img/toolbar/2x/btn-suggest-feature.png differ diff --git a/apps/common/main/resources/less/common.less b/apps/common/main/resources/less/common.less index 6ad02d20fe..e2df705ac3 100644 --- a/apps/common/main/resources/less/common.less +++ b/apps/common/main/resources/less/common.less @@ -202,12 +202,15 @@ label { .content-box { height: 100%; width: 100%; - padding: @layout-padding-right-panel-content-ie; - padding: @layout-padding-right-panel-content; + .settings-panel { + padding: @layout-padding-right-panel-content-ie; + padding: @layout-padding-right-panel-content; + + .rtl & { + padding: @layout-padding-right-panel-content-rtl-ie; + padding: @layout-padding-right-panel-content-rtl; + } - .rtl & { - padding: @layout-padding-right-panel-content-rtl-ie; - padding: @layout-padding-right-panel-content-rtl; } } } diff --git a/apps/common/main/resources/less/shortcuts-dialog.less b/apps/common/main/resources/less/shortcuts-dialog.less index ec95597098..97114cf059 100644 --- a/apps/common/main/resources/less/shortcuts-dialog.less +++ b/apps/common/main/resources/less/shortcuts-dialog.less @@ -68,6 +68,8 @@ border: 1px solid @border-divider; box-shadow: 0 1px 0 0 @border-divider-ie; box-shadow: 0 1px 0 0 @border-divider; + color: @text-normal-ie; + color: @text-normal; } .action-keys-item-comma { display: flex; @@ -104,6 +106,15 @@ opacity: 1; } } + + &.selected { + button { + :not(:hover).icon { + background-position-x: -20px; + background-position-x: @button-small-active-icon-offset-x; + } + } + } } } @@ -147,6 +158,13 @@ flex: 1; .margin-right(8px); } + + .lock-info-icon { + width: @x-small-btn-icon-size-ie; + width: @x-small-btn-icon-size; + height: @x-small-btn-icon-size-ie; + height: @x-small-btn-icon-size; + } } .item:not(.first) { margin-top: 8px; diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index 357327ea60..366eb20838 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -42,6 +42,7 @@ } } } + .winxp &, .ie & { box-shadow: @shadow-toolbar-ie; } diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index 9aa57b451d..8f3d8e6d9a 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -163,7 +163,6 @@ DE.ApplicationController = new(function(){ api.asc_setDocInfo(docInfo); api.asc_getEditorPermissions(config.licenseUrl, config.customerId); api.asc_enableKeyEvents(true); - common.controller.Shortcuts.setApi(api); Common.Analytics.trackEvent('Load', 'Start'); } @@ -248,7 +247,17 @@ DE.ApplicationController = new(function(){ if (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink || type==Asc.c_oAscMouseMoveDataTypes.Form) { // hyperlink me.isHideBodyTip = false; - var str = (type == Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (me.txtPressLink.replace('%1', common.utils.isMac ? '⌘' : me.textCtrl)) : data.get_FormHelpText(); + var str = ''; + if (type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) { + var hyperProps = data.get_Hyperlink(); + if (!hyperProps) return; + if (hyperProps.get_NoCtrl && hyperProps.get_NoCtrl()) + str = hyperProps.get_ToolTip() || hyperProps.get_Value(); + else + str = me.txtPressLink.replace('%1', common.utils.isMac ? '⌘' : me.textCtrl); + } else + str = data.get_FormHelpText(); + if (str.length>500) str = str.substr(0, 500) + '...'; str = common.utils.htmlEncode(str); @@ -485,6 +494,8 @@ DE.ApplicationController = new(function(){ embed: '#idt-embed' }); + common.controller.Shortcuts.setApi(api); + api.asc_registerCallback('asc_onStartAction', onLongActionBegin); api.asc_registerCallback('asc_onEndAction', onLongActionEnd); api.asc_registerCallback('asc_onMouseMoveStart', onDocMouseMoveStart); @@ -1005,14 +1016,12 @@ DE.ApplicationController = new(function(){ } function onOpenLinkPdfForm(sURI, onAllow, onCancel) { - var re = new RegExp('ctrl|' + me.textCtrl, 'i'), - msg = common.utils.isMac ? me.txtSecurityWarningLink.replace(re, '⌘') : me.txtSecurityWarningLink; common.controller.modals.showWarning({ title: me.notcriticalErrorTitle, - message: msg.replace('%1', sURI || ''), + message: me.txtSecurityWarningLinkOk.replace('%1', sURI || ''), buttons: [me.textOk, me.textCancel], callback: function(btn) { - if (btn == me.textOk && window.event && (!common.utils.isMac && window.event.ctrlKey == true || common.utils.isMac && window.event.metaKey)) { + if (btn == me.textOk) { onAllow(); } else @@ -1192,5 +1201,6 @@ DE.ApplicationController = new(function(){ textCancel: 'Cancel', txtSecurityWarningLink: 'This document is trying to connect to %1.
If you trust this site, press \"OK\" while holding down the ctrl key.', txtSecurityWarningOpenFile: 'This document is trying to open file dialog, press \"OK\" to open.', + txtSecurityWarningLinkOk: 'This document is trying to connect to %1.
If you trust this site, press \"OK\".' } })(); \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/ar.json b/apps/documenteditor/embed/locale/ar.json index ad296afb2f..dd48d4d242 100644 --- a/apps/documenteditor/embed/locale/ar.json +++ b/apps/documenteditor/embed/locale/ar.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "لا", "DE.ApplicationController.txtOpenWarning": "قد يكون النقر فوق هذا الرابط ضارًا بجهازك وبياناتك. لحماية حاسوبك، انقر فقط على الروابط التشعبية من مصادر موثوقة. قد يكون هذا الموقع غير آمن:
%1
أمتأكد أنك تريد المتابعة؟", "DE.ApplicationController.txtPressLink": "إضغط على %1 و إضغط على الرابط", - "DE.ApplicationController.txtSecurityWarningLink": "يحاول هذا المستند الاتصال بـ %1.
إذا كنت تثق بهذا الموقع، فاضغط على \"موافق\" مع الاستمرار في الضغط على مفتاح Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "يحاول هذا المستند فتح مربع حوار الملفات، اضغط \"موافق\" للفتح.", "DE.ApplicationController.txtYes": "نعم", "DE.ApplicationController.unknownErrorText": "خطأ غير معروف.", diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index d2397064e0..d07a013576 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "No", "DE.ApplicationController.txtOpenWarning": "Fer clic en aquest enllaç pot ser perjudicial per al vostre dispositiu i les vostres dades. Per protegir l'ordinador, feu clic només a aquests enllaços de fonts de confiança. Aquesta ubicació pot ser insegura:
%1
Esteu segur que voleu continuar?", "DE.ApplicationController.txtPressLink": "Prem %1 i fes clic a l'enllaç", - "DE.ApplicationController.txtSecurityWarningLink": "Aquest document està intentant connectar-se a %1.
Si confieu en aquest lloc, premeu \"OK\" mentre manteniu premuda la tecla Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Aquest document intenta obrir el diàleg de fitxers, prem “D'acord” per obrir-lo.", "DE.ApplicationController.txtYes": "Sí", "DE.ApplicationController.unknownErrorText": "Error desconegut.", diff --git a/apps/documenteditor/embed/locale/cs.json b/apps/documenteditor/embed/locale/cs.json index 58a646507e..1ee8b01523 100644 --- a/apps/documenteditor/embed/locale/cs.json +++ b/apps/documenteditor/embed/locale/cs.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Ne", "DE.ApplicationController.txtOpenWarning": "Kliknutí na odkaz může být škodlivé pro vaše zařízení a data. Z důvodu bezpečnosti vašeho počítače, klikněte výhradně na hypertextové odkazy z důvěryhodných zdrojů. Toto umístění může být nebezpečné.
%1
Opravdu chcete pokračovat?", "DE.ApplicationController.txtPressLink": "Stiskněte %1 a klikněte na odkaz", - "DE.ApplicationController.txtSecurityWarningLink": "Dokument se pokouší o připojení k %1.
Pokud této stránce důvěřujete, stiskněte tlačítko „OK“ spolu s klávesu Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Pro zobrazení tohoto dokumentu v okně stiskněte \"OK\".", "DE.ApplicationController.txtYes": "Ano", "DE.ApplicationController.unknownErrorText": "Neznámá chyba.", diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json index 3814f79506..795564c6ad 100644 --- a/apps/documenteditor/embed/locale/de.json +++ b/apps/documenteditor/embed/locale/de.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Nein", "DE.ApplicationController.txtOpenWarning": "Das Klicken auf diesen Link kann Ihr Gerät und Ihre Daten schädigen. Um Ihren Computer zu schützen, klicken Sie nur auf Hyperlinks aus vertrauenswürdigen Quellen. Dieser Ort ist möglicherweise unsicher:
%1
Möchten Sie wirklich fortfahren?", "DE.ApplicationController.txtPressLink": "Drücken Sie %1 und klicken Sie auf den Link", - "DE.ApplicationController.txtSecurityWarningLink": "Dieses Dokument versucht, eine Verbindung zu %1 herzustellen.
Wenn Sie dieser Site vertrauen, drücken Sie OK, während Sie die Strg-Taste gedrückt halten.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Dieses Dokument versucht, den Dateidialog zu öffnen. Klicken Sie zum Öffnen auf OK.", "DE.ApplicationController.txtYes": "Ja", "DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.", diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index f75be9c25a..e52e11840a 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Όχι", "DE.ApplicationController.txtOpenWarning": "Το κλικ σε αυτόν τον σύνδεσμο μπορεί να είναι επιβλαβές για τη συσκευή και τα δεδομένα σας. Για να προστατεύσετε τον υπολογιστή σας, κάντε κλικ μόνο σε αυτούς τους υπερσυνδέσμους από αξιόπιστες πηγές. Αυτή η τοποθεσία μπορεί να είναι ανασφαλής:

%1

Είστε σίγουροι ότι θέλετε να συνεχίσετε;", "DE.ApplicationController.txtPressLink": "Πατήστε %1 και κάντε κλικ στο σύνδεσμο", - "DE.ApplicationController.txtSecurityWarningLink": "Αυτό το έγγραφο προσπαθεί να συνδεθεί με το %1.
Αν εμπιστεύεστε αυτόν τον ιστότοπο, πατήστε \"Εντάξει\" ενώ κρατάτε πατημένο το πλήκτρο Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Αυτό το έγγραφο προσπαθεί να ανοίξει το παράθυρο διαλόγου αρχείου, πατήστε \"Εντάξει\" για να ανοίξετε.", "DE.ApplicationController.txtYes": "Ναι", "DE.ApplicationController.unknownErrorText": "Άγνωστο σφάλμα.", diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index 38639e493c..1f647cdcec 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -55,7 +55,7 @@ "DE.ApplicationController.txtNo": "No", "DE.ApplicationController.txtOpenWarning": "Clicking this link can be harmful to your device and data. To protect you computer, click only those hyperlinks from trusted sources. This location may be unsafe:
%1
Are you sure you want to continue?", "DE.ApplicationController.txtPressLink": "Press %1 and click link", - "DE.ApplicationController.txtSecurityWarningLink": "This document is trying to connect to %1.
If you trust this site, press \"OK\" while holding down the Ctrl key.", + "DE.ApplicationController.txtSecurityWarningLinkOk": "This document is trying to connect to %1.
If you trust this site, press \"OK\".", "DE.ApplicationController.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "DE.ApplicationController.txtYes": "Yes", "DE.ApplicationController.unknownErrorText": "Unknown error.", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index c33d4f7b06..b0b5291e61 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "No", "DE.ApplicationController.txtOpenWarning": "Hacer clic en este enlace puede ser perjudicial para su dispositivo y sus datos. Para proteger su ordenador, haga clic solo en los hipervínculos de fuentes fiables. Esta ubicación puede ser insegura:
%1
¿Está seguro de que quiere continuar?", "DE.ApplicationController.txtPressLink": "Pulse %1 y haga clic en el enlace", - "DE.ApplicationController.txtSecurityWarningLink": "Este documento está intentando conectarse a %1.
Si confía en este sitio, pulse \"OK\" mientras mantiene pulsada la tecla ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Este documento está intentando abrir el diálogo de archivo, pulse \"OK\" para abrir.", "DE.ApplicationController.txtYes": "Sí", "DE.ApplicationController.unknownErrorText": "Error desconocido.", diff --git a/apps/documenteditor/embed/locale/fi.json b/apps/documenteditor/embed/locale/fi.json index eb3c3c1c49..69b6c312b4 100644 --- a/apps/documenteditor/embed/locale/fi.json +++ b/apps/documenteditor/embed/locale/fi.json @@ -54,7 +54,6 @@ "DE.ApplicationController.txtNo": "Ei", "DE.ApplicationController.txtOpenWarning": "Tämän linkin avaaminen voi olla haitallista laitteellesi ja tiedoillesi. Tietokonettasi suojellaksesi avaa vain linkkejä luotetuista lähteistä. Linkin kohde voi olla turvaton:
%1
Oletko varma, että haluat jatkaa?", "DE.ApplicationController.txtPressLink": "Paina %1 ja klikkaa linkkiä", - "DE.ApplicationController.txtSecurityWarningLink": "Tämä asiakirja yrittää yhdistää %1.
Jos luotat tähän sivustoon, paina \"OK\" pitäen Ctrl näppäintä pohjassa.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Tämä asiakirja yrittää avata tiedosto dialogin. Paina \"OK\" avataksesi. ", "DE.ApplicationController.txtYes": "Kyllä", "DE.ApplicationController.unknownErrorText": "Tuntematon virhe.", diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 0f5214d48d..2d3a48efbd 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Non", "DE.ApplicationController.txtOpenWarning": "Cliquer sur ce lien peut endommager votre appareil et vos données. Pour protéger votre ordinateur, ne cliquez que sur les liens provenant de sources fiables. Cet emplacement peut être dangereux :
%1
Voulez-vous continuer ?", "DE.ApplicationController.txtPressLink": "Appuyez sur %1 et cliquez sur le lien", - "DE.ApplicationController.txtSecurityWarningLink": "Ce document tente de se connecter à %1.
Si vous faites confiance à ce site, appuyez sur « OK » tout en maintenant la touche Ctrl enfoncée.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Ce document tente d'ouvrir la boîte de dialogue du fichier, cliquez « OK » pour l'ouvrir.", "DE.ApplicationController.txtYes": "Oui", "DE.ApplicationController.unknownErrorText": "Erreur inconnue.", diff --git a/apps/documenteditor/embed/locale/hu.json b/apps/documenteditor/embed/locale/hu.json index 557fa469e6..0ca9fd237a 100644 --- a/apps/documenteditor/embed/locale/hu.json +++ b/apps/documenteditor/embed/locale/hu.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Nem", "DE.ApplicationController.txtOpenWarning": "A hivatkozásra kattintás káros lehet az eszközére és az adataira nézve. Számítógépe védelme érdekében csak a megbízható forrásból származó hivatkozásokra kattintson. Ez a hely nem biztonságos lehet:
%1
Biztosan folytatja?", "DE.ApplicationController.txtPressLink": "Nyomja meg a %1 billentyűt és kattintson a hivatkozásra", - "DE.ApplicationController.txtSecurityWarningLink": "Ez a dokumentum a következőhöz próbál csatlakozni: %1.
Ha megbízik ebben az oldalon, nyomja meg az „OK” gombot, miközben lenyomva tartja a Ctrl billentyűt.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Ez a dokumentum fájl párbeszédpanelt próbál megnyitni, kattintson az „OK” gombra a megnyitáshoz.", "DE.ApplicationController.txtYes": "Igen", "DE.ApplicationController.unknownErrorText": "Ismeretlen hiba.", diff --git a/apps/documenteditor/embed/locale/hy.json b/apps/documenteditor/embed/locale/hy.json index 4c6f59742d..cc9e4d0857 100644 --- a/apps/documenteditor/embed/locale/hy.json +++ b/apps/documenteditor/embed/locale/hy.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Ոչ", "DE.ApplicationController.txtOpenWarning": "Այս հղումը կարող է վնասել ձեր սարքին և տվյալներին։
Ցանկանո՞ւմ եք շարունակել։", "DE.ApplicationController.txtPressLink": "Սեղմել %1 և անցնել հղումը", - "DE.ApplicationController.txtSecurityWarningLink": "Այս փաստաթուղթը փորձում է միանալ %1-ին։
Եթե վստահում եք այս կայքին, սեղմեք «Լավ»՝ պահելով Ctrl ստեղնը։", "DE.ApplicationController.txtSecurityWarningOpenFile": "Այս փաստաթուղթը փորձում է բացել ֆայլի երկխոսությունը, բացելու համար սեղմեք «OK»:", "DE.ApplicationController.txtYes": "Այո", "DE.ApplicationController.unknownErrorText": "Անհայտ սխալ։", diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index cb87581cc5..5b502115e2 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "No", "DE.ApplicationController.txtOpenWarning": "Cliccare su questo link può danneggiare il tuo dispositivo e i tuoi dati.
Sei sicuro di voler continuare?", "DE.ApplicationController.txtPressLink": "Premi %1 e clicca sul collegamento", - "DE.ApplicationController.txtSecurityWarningLink": "Questo documento sta tentando di connettersi a %1.
Se ritieni che questo sito sia affidabile, premi “OK” tenendo premuto il tasto Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Questo documento sta tentando di aprire la finestra di dialogo del file, premi \"OK\" per aprirla.", "DE.ApplicationController.txtYes": "Sì", "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", diff --git a/apps/documenteditor/embed/locale/ja.json b/apps/documenteditor/embed/locale/ja.json index c9bb9733b2..a4dc256688 100644 --- a/apps/documenteditor/embed/locale/ja.json +++ b/apps/documenteditor/embed/locale/ja.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "いいえ", "DE.ApplicationController.txtOpenWarning": "このリンクをクリックすると、お使いのデバイスやデータに害を及ぼす可能性があります。コンピュータを保護するため、信頼できる発信元のハイパーリンクのみをクリックしてください。この場所は安全でない可能性があります:
%1
続行しますか", "DE.ApplicationController.txtPressLink": "リンクをクリックして%1を押してください", - "DE.ApplicationController.txtSecurityWarningLink": "このドキュメントは%1に接続しようとしています。
このサイトを信頼する場合は、Ctrキーを押しながら「OK」を押してください。", "DE.ApplicationController.txtSecurityWarningOpenFile": "このドキュメントはファイルダイアログを開こうとしています。開くには、OKを押してください。", "DE.ApplicationController.txtYes": "はい", "DE.ApplicationController.unknownErrorText": "不明なエラー", diff --git a/apps/documenteditor/embed/locale/ko.json b/apps/documenteditor/embed/locale/ko.json index a38b5a2548..e5876dc6e8 100644 --- a/apps/documenteditor/embed/locale/ko.json +++ b/apps/documenteditor/embed/locale/ko.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "아니오", "DE.ApplicationController.txtOpenWarning": "이 링크를 클릭하는 것은 장치와 데이터에 해가 될 수 있습니다. 컴퓨터를 보호하려면 신뢰할 수 있는 출처의 하이퍼링크만 클릭하세요. 이 위치는 안전하지 않을 수 있습니다:
%1
계속하시겠습니까?", "DE.ApplicationController.txtPressLink": "%1 키를 누른 상태에서 링크 클릭", - "DE.ApplicationController.txtSecurityWarningLink": "이 문서는 %1에 연결하려고 합니다. 만약 이 사이트를 신뢰한다면 Ctrl 키를 누른 상태에서 \"확인\"을 누르세요.", "DE.ApplicationController.txtSecurityWarningOpenFile": "이 문서가 파일 대화상자를 열려고 합니다. 열려면 \"확인\"을 누르세요.", "DE.ApplicationController.txtYes": "네", "DE.ApplicationController.unknownErrorText": "알 수 없는 오류.", diff --git a/apps/documenteditor/embed/locale/pl.json b/apps/documenteditor/embed/locale/pl.json index b28fdda07b..db4959fbcd 100644 --- a/apps/documenteditor/embed/locale/pl.json +++ b/apps/documenteditor/embed/locale/pl.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Nie", "DE.ApplicationController.txtOpenWarning": "Kliknięcie tego linku może być szkodliwe dla Twojego urządzenia i danych. Aby chronić swój komputer, klikaj tylko hiperłącza pochodzące z zaufanych źródeł. Ta lokalizacja może być niebezpieczna:
%1
Czy na pewno chcesz kontynuować?", "DE.ApplicationController.txtPressLink": "Naciśnij %1 i kliknij w link", - "DE.ApplicationController.txtSecurityWarningLink": "Ten dokument próbuje połączyć się z %1.
Jeśli ufasz tej witrynie, naciśnij „OK”, przytrzymując klawisz Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Ten dokument próbuje otworzyć okno dialogowe pliku, naciśnij \"OK\", aby otworzyć.", "DE.ApplicationController.txtYes": "Tak", "DE.ApplicationController.unknownErrorText": "Nieznany błąd.", diff --git a/apps/documenteditor/embed/locale/pt.json b/apps/documenteditor/embed/locale/pt.json index d1e3bdc9a1..50ca9313b0 100644 --- a/apps/documenteditor/embed/locale/pt.json +++ b/apps/documenteditor/embed/locale/pt.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Não", "DE.ApplicationController.txtOpenWarning": "Clicar neste link pode ser prejudicial ao seu dispositivo e aos seus dados.
Tem certeza de que deseja continuar?", "DE.ApplicationController.txtPressLink": "Pressione %1 e clique no link", - "DE.ApplicationController.txtSecurityWarningLink": "Este documento está tentando se conectar a %1.
Se você confia neste site, pressione \"OK\" enquanto mantém pressionada a tecla Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Este documento está tentando abrir a caixa de diálogo de arquivo, pressione \"OK\" para abrir.", "DE.ApplicationController.txtYes": "Sim", "DE.ApplicationController.unknownErrorText": "Erro desconhecido.", diff --git a/apps/documenteditor/embed/locale/ro.json b/apps/documenteditor/embed/locale/ro.json index 773dc97464..d8f6a4f941 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Nu", "DE.ApplicationController.txtOpenWarning": "Accesarea acestui link poate dăuna dispozitivului sau datelor dvs. Pentru a vă proteja calculatorul, evitați să dați click pe linkuri de la surse necunoscute. Această locație poate fi nesigură:
%1
Sigur doriti sa continuati? ", "DE.ApplicationController.txtPressLink": "Apăsați %1 și faceți clic pe link", - "DE.ApplicationController.txtSecurityWarningLink": "Acest document încearcă să se conecteze la %1.
Dacă aveți încredere în acest site, faceți clic pe OK și țineți apăsată tasta Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Acest document încearcă să deschidă fereastra de dialog, apăsați OK pentru a-l deschide.", "DE.ApplicationController.txtYes": "Da", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index a959a6b2e7..ca563972ce 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Нет", "DE.ApplicationController.txtOpenWarning": "Переход по этой ссылке может нанести вред вашему устройству и данным. Чтобы защитить свой компьютер, переходите только по ссылкам из проверенных источников. Этот сайт может быть небезопасным:
%1
Вы действительно хотите продолжить?", "DE.ApplicationController.txtPressLink": "Нажмите %1 и щелкните по ссылке", - "DE.ApplicationController.txtSecurityWarningLink": "Этот документ пытается подключиться к %1.
Если вы доверяете этому сайту, нажмите \"OK\", удерживая клавишу Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Этот документ пытается открыть диалоговое окно файла, нажмите \"OK\", чтобы открыть.", "DE.ApplicationController.txtYes": "Да", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", diff --git a/apps/documenteditor/embed/locale/si.json b/apps/documenteditor/embed/locale/si.json index 2400025d0b..face048b2d 100644 --- a/apps/documenteditor/embed/locale/si.json +++ b/apps/documenteditor/embed/locale/si.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "නැහැ", "DE.ApplicationController.txtOpenWarning": "මෙම සබැඳිය එබීමෙන් ඔබගේ උපාංගයට සහ දත්ත වලට හානි විය හැකිය.
ඔබට ඉදිරියට යාමට වුවමනා ද?", "DE.ApplicationController.txtPressLink": "%1 තද කරගෙන සබැඳිය ඔබන්න", - "DE.ApplicationController.txtSecurityWarningLink": "මෙම ලේඛනය %1 වෙත සම්බන්ධ වීමට උත්සාහ කරයි.
ඔබට මෙම අඩවිය විශ්වාස නම්, ctrl යතුර ඔබාගෙන \"හරි\" ඔබන්න.", "DE.ApplicationController.txtSecurityWarningOpenFile": "මෙම ලේඛනය ගොනු කවුළුව ඇරීමට උත්සාහ කරයි, එය ඇරීමට \"හරි\" ඔබන්න.", "DE.ApplicationController.txtYes": "ඔව්", "DE.ApplicationController.unknownErrorText": "නොදන්නා දෝෂයකි", diff --git a/apps/documenteditor/embed/locale/sq.json b/apps/documenteditor/embed/locale/sq.json index d8046c8bfa..87ab2cbede 100644 --- a/apps/documenteditor/embed/locale/sq.json +++ b/apps/documenteditor/embed/locale/sq.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Jo", "DE.ApplicationController.txtOpenWarning": "Klikimi i kësaj lidhjeje mund të jetë i dëmshëm për pajisjen dhe të dhënat tuaja. Për të mbrojtur kompjuterin tuaj, klikoni vetëm ato hiperlidhje nga burime të besueshme. Kjo vendndodhje mund të jetë e pasigurt:
%1
A jeni të sigurt që dëshironi të vazhdoni?", "DE.ApplicationController.txtPressLink": "Shtypni %1 dhe klikoni lidhjen.", - "DE.ApplicationController.txtSecurityWarningLink": "Ky dokument po përpiqet të lidhet me %1.
Nëse i besoni kësaj faqeje, shtypni \"OK\" ndërsa mbani shtypur tastin ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Ky dokument po përpiqet të hapë dialogun e skedarit, shtypni \"OK\" për ta hapur.", "DE.ApplicationController.txtYes": "Po", "DE.ApplicationController.unknownErrorText": "Gabim i panjohur", diff --git a/apps/documenteditor/embed/locale/sr.json b/apps/documenteditor/embed/locale/sr.json index e7b1480acf..926fd49bf0 100644 --- a/apps/documenteditor/embed/locale/sr.json +++ b/apps/documenteditor/embed/locale/sr.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "Ne", "DE.ApplicationController.txtOpenWarning": "Klik na ovaj link može biti štetan za vaš uređaj i podatke. Da biste zaštitili svoj računar, klikćite samo na hiperveze koje dolaze iz pouzdanih izvora. Ova lokacija može biti nesigurna:

{0}

Da li ste sigurni da želite da nastavite?", "DE.ApplicationController.txtPressLink": "Pritisni %1 i klikni link", - "DE.ApplicationController.txtSecurityWarningLink": "Ovaj dokument pokušava da se poveže sa %1.
Ako verujete ovom sajtu, pritisnite \"U redu\" dok držite taster Ctrl.", "DE.ApplicationController.txtSecurityWarningOpenFile": "Ovaj dokument pokušava da otvori dijalog fajla, pritisnite \"OK\" da otvorite.", "DE.ApplicationController.txtYes": "Da", "DE.ApplicationController.unknownErrorText": "Nepoznata greška.", diff --git a/apps/documenteditor/embed/locale/ur.json b/apps/documenteditor/embed/locale/ur.json index dbd5806f1e..ba34654e69 100644 --- a/apps/documenteditor/embed/locale/ur.json +++ b/apps/documenteditor/embed/locale/ur.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "نہیں", "DE.ApplicationController.txtOpenWarning": "اس لنک پر کلک کرنا آپ کے آلے اور ڈیٹا کے لیے نقصان دہ ہو سکتا ہے۔ کیا آپ واقعی جاری رکھنا چاہتے ہیں؟", "DE.ApplicationController.txtPressLink": "ایک فیصد دبائیں اور لنک پر کلک کریں۔", - "DE.ApplicationController.txtSecurityWarningLink": "یہ دستاویز %1 سے جڑنے کی کوشش کر رہی ہے۔ اگر آپ کو اس سائٹ پر بھروسہ ہے تو، ctrl کی کو دبائے رکھتے ہوئے \"ٹھیک ہے\" کو دبائیں۔", "DE.ApplicationController.txtSecurityWarningOpenFile": "یہ دستاویز فائل ڈائیلاگ کو کھولنے کی کوشش کر رہی ہے، کھولنے کے لیے \"OK\" دبائیں۔", "DE.ApplicationController.txtYes": "جی ہاں", "DE.ApplicationController.unknownErrorText": "نامعلوم خرابی", diff --git a/apps/documenteditor/embed/locale/zh.json b/apps/documenteditor/embed/locale/zh.json index 23d7a78a04..19e97f70e4 100644 --- a/apps/documenteditor/embed/locale/zh.json +++ b/apps/documenteditor/embed/locale/zh.json @@ -55,7 +55,6 @@ "DE.ApplicationController.txtNo": "否", "DE.ApplicationController.txtOpenWarning": "点击此链接可能会对您的设备和数据造成损害。为了保护您的计算机,请仅点击来自可信来源的超链接。此位置可能不安全:
%1
您确定要继续吗?", "DE.ApplicationController.txtPressLink": "按 %1 并点击链接", - "DE.ApplicationController.txtSecurityWarningLink": "此文档正在尝试连接到%1.
如果您信任此站点,请按住Ctrl键同时点击“确定”。", "DE.ApplicationController.txtSecurityWarningOpenFile": "此文档正在尝试打开文件对话框,请按“确定”打开。", "DE.ApplicationController.txtYes": "是", "DE.ApplicationController.unknownErrorText": "未知错误。", diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 958df260bd..f03591e5e1 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -613,7 +613,7 @@ define([ this.api.asc_coAuthoringDisconnect(); Common.NotificationCenter.trigger('collaboration:sharingdeny'); Common.NotificationCenter.trigger('api:disconnect'); - !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : data.message, + !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : Common.Utils.String.htmlEncode(data.message), target: '#toolbar', maxwidth: 600, showButton: false, automove: true, noHighlight: true, noArrow: true, multiple: true, callback: function() { me._state.lostEditingRights = false; @@ -705,7 +705,7 @@ define([ } Common.UI.alert({ title: this.notcriticalErrorTitle, - msg: (opts.data.error) ? opts.data.error : this.txtErrorLoadHistory, + msg: (opts.data.error) ? Common.Utils.String.htmlEncode(opts.data.error) : this.txtErrorLoadHistory, iconCls: 'warn', buttons: ['ok'], callback: _.bind(function(btn){ diff --git a/apps/documenteditor/main/app/controller/RightMenu.js b/apps/documenteditor/main/app/controller/RightMenu.js index 3706ed3d9a..fcc402e7a6 100644 --- a/apps/documenteditor/main/app/controller/RightMenu.js +++ b/apps/documenteditor/main/app/controller/RightMenu.js @@ -331,7 +331,7 @@ define([ else if (lastactive>=0 && currentactive<0) active = lastactive; else if (currentactive>=0) active = currentactive; else if (forceSignature && !this._settings[Common.Utils.documentSettingsType.Signature].hidden) active = Common.Utils.documentSettingsType.Signature; - else if (!this._settings[Common.Utils.documentSettingsType.MailMerge].hidden) active = Common.Utils.documentSettingsType.MailMerge; + else if (!this.rightmenu.GetActivePluginPane() && !this._settings[Common.Utils.documentSettingsType.MailMerge].hidden) active = Common.Utils.documentSettingsType.MailMerge; if (active == undefined && open && lastactive>=0) active = lastactive; diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 77ec48b1a8..b5d8da7ea0 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -3634,6 +3634,7 @@ define([ var clr; var effectcolors = Common.Utils.ThemeColor.getEffectColors(); + if (!effectcolors) return; for (var i = 0; i < effectcolors.length; i++) { if (typeof(picker.currentColor) == 'object' && clr === undefined && @@ -3652,7 +3653,7 @@ define([ updateColors(this.toolbar.mnuFontColorPicker, 1); if (this.toolbar.btnFontColor.currentColor===undefined || !this.toolbar.btnFontColor.currentColor.isAuto) { - this.toolbar.btnFontColor.currentColor = this.toolbar.mnuFontColorPicker.currentColor.color || this.toolbar.mnuFontColorPicker.currentColor; + this.toolbar.btnFontColor.currentColor = this.toolbar.mnuFontColorPicker.currentColor ? this.toolbar.mnuFontColorPicker.currentColor.color || this.toolbar.mnuFontColorPicker.currentColor : this.toolbar.mnuFontColorPicker.currentColor; this.toolbar.btnFontColor.setColor(this.toolbar.btnFontColor.currentColor); } if (this._state.clrtext_asccolor!==undefined) { @@ -3662,7 +3663,7 @@ define([ this._state.clrtext_asccolor = undefined; updateColors(this.toolbar.mnuParagraphColorPicker, 0); - this.toolbar.btnParagraphColor.currentColor = this.toolbar.mnuParagraphColorPicker.currentColor.color || this.toolbar.mnuParagraphColorPicker.currentColor; + this.toolbar.btnParagraphColor.currentColor = this.toolbar.mnuParagraphColorPicker.currentColor ? this.toolbar.mnuParagraphColorPicker.currentColor.color || this.toolbar.mnuParagraphColorPicker.currentColor : this.toolbar.mnuParagraphColorPicker.currentColor; this.toolbar.btnParagraphColor.setColor(this.toolbar.btnParagraphColor.currentColor); if (this._state.clrshd_asccolor!==undefined) { this._state.clrback = undefined; diff --git a/apps/documenteditor/main/app/controller/ViewTab.js b/apps/documenteditor/main/app/controller/ViewTab.js index 8340890997..b9469af9fd 100644 --- a/apps/documenteditor/main/app/controller/ViewTab.js +++ b/apps/documenteditor/main/app/controller/ViewTab.js @@ -181,7 +181,11 @@ define([ me.view.$el.find('.separator-rulers').remove(); } - if (!config.isEdit || config.customization && config.customization.macros===false) { + if ( + !config.isEdit || + config.customization && config.customization.macros===false || + (Common.Controllers.Desktop && Common.Controllers.Desktop.isWinXp()) + ) { me.view.$el.find('.macro').remove(); } diff --git a/apps/documenteditor/main/app/view/MailMergeSettings.js b/apps/documenteditor/main/app/view/MailMergeSettings.js index 407a314d9f..ef4f53ba8e 100644 --- a/apps/documenteditor/main/app/view/MailMergeSettings.js +++ b/apps/documenteditor/main/app/view/MailMergeSettings.js @@ -634,7 +634,7 @@ define([ width: 500, closable: false, title: this.notcriticalErrorTitle, - msg: opts.data.error, + msg: Common.Utils.String.htmlEncode(opts.data.error), iconCls: 'warn', buttons: _.isEmpty(opts.data.createEmailAccountUrl) ? ['ok'] : [{value: 'custom', caption: this.textGoToMail}, 'cancel'], primary: _.isEmpty(opts.data.createEmailAccountUrl) ? ['ok'] : 'custom', diff --git a/apps/documenteditor/main/app/view/RightMenu.js b/apps/documenteditor/main/app/view/RightMenu.js index b56e721b33..9bf70f39c5 100644 --- a/apps/documenteditor/main/app/view/RightMenu.js +++ b/apps/documenteditor/main/app/view/RightMenu.js @@ -318,7 +318,7 @@ define([ Common.localStorage.setItem("de-hide-right-settings", 0); Common.Utils.InternalSettings.set("de-hide-right-settings", false); } - target_pane_parent.find('.settings-panel.active').removeClass('active'); + target_pane_parent.find('.content-box > .active').removeClass('active'); target_pane && target_pane.addClass("active"); if (this.scroller) { @@ -332,7 +332,6 @@ define([ Common.Utils.InternalSettings.set("de-hide-right-settings", true); } - !isPlugin && $('.right-panel .plugin-panel').toggleClass('active', false); btn && !isPlugin && this.fireEvent('rightmenuclick', [this, btn.options.asctype, this.minimizedMode, e]); }, @@ -345,7 +344,7 @@ define([ } else { var target_pane = this.$el.find("#" + this._settings[type].panel ); if ( !target_pane.hasClass('active') ) { - target_pane.parent().find('.settings-panel.active').removeClass('active'); + target_pane.parent().find('> .active').removeClass('active'); target_pane.addClass("active"); if (this.scroller) { this.scroller.update(); @@ -362,12 +361,17 @@ define([ return (this.minimizedMode || active.length === 0) ? null : active[0].id; }, + GetActivePluginPane: function() { + var active = this.$el.find(".plugin-panel.active"); + return (this.minimizedMode || active.length === 0) ? null : active[0].id; + }, + clearSelection: function() { if (this.mergeSettings) this.mergeSettings.disablePreviewMode(); var target_pane = $(".right-panel"); - target_pane.find('.settings-panel.active').removeClass('active'); + target_pane.find('.content-box > .active').removeClass('active'); this._settings.forEach(function(item){ if (item.btn.isActive()) item.btn.toggle(false, true); @@ -391,6 +395,10 @@ define([ Common.UI.SideMenu.prototype.setButtons.apply(this, [allButtons]); }, + insertPanel: function ($panel) { + this.$el.find('.side-panel .content-box').append($panel); + }, + updateWidth: function() { var pane = $(this.el).find('.right-panel'), paddings = parseInt(pane.css('padding-left')) + parseInt(pane.css('padding-right')); diff --git a/apps/documenteditor/main/app/view/ViewTab.js b/apps/documenteditor/main/app/view/ViewTab.js index 9e2e2d3a92..fba9d6e11a 100644 --- a/apps/documenteditor/main/app/view/ViewTab.js +++ b/apps/documenteditor/main/app/view/ViewTab.js @@ -293,7 +293,11 @@ define([ }); this.lockedControls.push(this.chRulers); - if (this.appConfig.isEdit && !(this.appConfig.customization && this.appConfig.customization.macros===false)) { + if ( + this.appConfig.isEdit && + !(this.appConfig.customization && this.appConfig.customization.macros===false) && + !(Common.Controllers.Desktop && Common.Controllers.Desktop.isWinXp()) + ) { this.btnMacros = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-macros', diff --git a/apps/documenteditor/main/locale/ar.json b/apps/documenteditor/main/locale/ar.json index 668d9500ec..97b80972d9 100644 --- a/apps/documenteditor/main/locale/ar.json +++ b/apps/documenteditor/main/locale/ar.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "محاذاة المصفوفة", "DE.Views.DocumentHolder.txtOverbar": "شريط فوق النص", "DE.Views.DocumentHolder.txtOverwriteCells": "إعادة كتابة الخلايا", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "الحفاظ على نسق المصدر", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "إضغط على {0} و إضغط على الرابط", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "مفتاح المجموعة", "DE.Views.FormSettings.textImage": "صورة", "DE.Views.FormSettings.textKey": "مفتاح", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "اللغة", "DE.Views.FormSettings.textLetters": "أحرف", "DE.Views.FormSettings.textLock": "قفل", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "التاريخ والوقت", "DE.Views.FormsTab.capZipCode": "الرمز البريدي", "DE.Views.FormsTab.helpTextFillStatus": "هذا النموذج جاهز للتعبئة حسب الدور. انقروا على زر الحالة للاطلاع على مرحلة التعبئة.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "اي شخص", "DE.Views.FormsTab.textClear": "مسح ما في الحقول", "DE.Views.FormsTab.textClearFields": "مسح ما في جميع الحقول", "DE.Views.FormsTab.textCreateForm": "اضافة حقول و انشاء مستند PDF قابل للملء", "DE.Views.FormsTab.textFilled": "معبأ", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "حسناً", "DE.Views.FormsTab.textHighlight": "اعدادات تمييز النص", "DE.Views.FormsTab.textNoHighlight": "بدون تمييز للنصوص", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "وحدات الماكرو", "DE.Views.ViewTab.textNavigation": "التنقل", "DE.Views.ViewTab.textOutline": "العناوين", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "اللوحة اليمنى", "DE.Views.ViewTab.textRulers": "مساطر", "DE.Views.ViewTab.textStatusBar": "شريط الحالة", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "نمط التبويبة", "DE.Views.ViewTab.textZoom": "تكبير/تصغير", "DE.Views.ViewTab.tipDarkDocument": "مستند داكن", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "العناوين", "DE.Views.ViewTab.tipInterfaceTheme": "سمة الواجهة", "DE.Views.ViewTab.tipMacros": "وحدات الماكرو", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "تلقائي", "DE.Views.WatermarkSettingsDialog.textBold": "سميك", "DE.Views.WatermarkSettingsDialog.textColor": "لون النص", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "شبه شفاف", "DE.Views.WatermarkSettingsDialog.textUnderline": "تحته خط", "DE.Views.WatermarkSettingsDialog.tipFontName": "اسم الخط", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "حجم الخط", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "حجم الخط" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/az.json b/apps/documenteditor/main/locale/az.json index 84f6ad3790..e91a58b455 100644 --- a/apps/documenteditor/main/locale/az.json +++ b/apps/documenteditor/main/locale/az.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrisin Düzləndirilməsi", "DE.Views.DocumentHolder.txtOverbar": "Mətnin üstündə xətt", "DE.Views.DocumentHolder.txtOverwriteCells": "Xanaların üzərinə yazın", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mənbə formatını saxlayın", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "{0} düyməsinə basıb linkə klikləyin", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Qrup açarı", "DE.Views.FormSettings.textImage": "Təsvir", "DE.Views.FormSettings.textKey": "Açar", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Kilidlə", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Sahələri Təmizləyin", "DE.Views.FormsTab.textClearFields": "Bütün Sahələri Təmizləyin", "DE.Views.FormsTab.textCreateForm": "Sahələr əlavə edib doldurula bilən PDF sənədi yaradın", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Analdım", "DE.Views.FormsTab.textHighlight": "Vurğulama Parametrləri", "DE.Views.FormsTab.textNoHighlight": "Vurğulama yoxdur", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Avto", "DE.Views.WatermarkSettingsDialog.textBold": "Qalın", "DE.Views.WatermarkSettingsDialog.textColor": "Mətn rəngi", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Yarım şəffaf", "DE.Views.WatermarkSettingsDialog.textUnderline": "Altından xətt çəkilmiş", "DE.Views.WatermarkSettingsDialog.tipFontName": "Şrift Adı", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Şrift Ölçüsü", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Şrift Ölçüsü" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/be.json b/apps/documenteditor/main/locale/be.json index ce984160bb..45948feb65 100644 --- a/apps/documenteditor/main/locale/be.json +++ b/apps/documenteditor/main/locale/be.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Выраўноўванне матрыц", "DE.Views.DocumentHolder.txtOverbar": "Лінія па-над тэкстам", "DE.Views.DocumentHolder.txtOverwriteCells": "Перазапісаць ячэйкі", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Пакінуць зыходнае фарматаванне", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Націсніце {0} і пстрыкніце па спасылцы", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Ключ групы", "DE.Views.FormSettings.textImage": "Выява", "DE.Views.FormSettings.textKey": "Ключ", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Мова", "DE.Views.FormSettings.textLetters": "Літары", "DE.Views.FormSettings.textLock": "Заблакаваць", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Дата і час", "DE.Views.FormsTab.capZipCode": "Індэкс", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Любы", "DE.Views.FormsTab.textClear": "Ачысціць палі", "DE.Views.FormsTab.textClearFields": "Ачысціць усе палі", "DE.Views.FormsTab.textCreateForm": "Дадайце палі і стварыце запаўняльны дакумент PDF", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Добра", "DE.Views.FormsTab.textHighlight": "Налады падсвятлення", "DE.Views.FormsTab.textNoHighlight": "Без падсвятлення", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Навігацыя", "DE.Views.ViewTab.textOutline": "Загалоўкі", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Правая панэль", "DE.Views.ViewTab.textRulers": "Лінейкі", "DE.Views.ViewTab.textStatusBar": "Панэль стану", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Маштаб", "DE.Views.ViewTab.tipDarkDocument": "Цёмны дакумент", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Загалоўкі", "DE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Аўта", "DE.Views.WatermarkSettingsDialog.textBold": "Тоўсты", "DE.Views.WatermarkSettingsDialog.textColor": "Колер тэксту", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Паўпразрысты", "DE.Views.WatermarkSettingsDialog.textUnderline": "Падкрэслены", "DE.Views.WatermarkSettingsDialog.tipFontName": "Назва шрыфту", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Памер шрыфту", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Памер шрыфту" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/bg.json b/apps/documenteditor/main/locale/bg.json index 5678e7f16b..86c72be120 100644 --- a/apps/documenteditor/main/locale/bg.json +++ b/apps/documenteditor/main/locale/bg.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Матрично подравняване", "DE.Views.DocumentHolder.txtOverbar": "Завършете текст", "DE.Views.DocumentHolder.txtOverwriteCells": "Презаписване на клетки", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Запазете форматирането на източника", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Натиснете {0} и кликнете върху връзката", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Group key", "DE.Views.FormSettings.textImage": "Изображение", "DE.Views.FormSettings.textKey": "Key", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Lock", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Clear Fields", "DE.Views.FormsTab.textClearFields": "Изчисти всички полета", "DE.Views.FormsTab.textCreateForm": "Add fields and create a fillable PDF", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Got it", "DE.Views.FormsTab.textHighlight": "Маркирайте настройките", "DE.Views.FormsTab.textNoHighlight": "Няма подчертаване", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Заглавия", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Владетели", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Заглавия", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Bold", "DE.Views.WatermarkSettingsDialog.textColor": "Цвят на текста", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Underline", "DE.Views.WatermarkSettingsDialog.tipFontName": "Име на шрифта", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Размер на шрифта", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Размер на шрифта" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index d139a99104..cd7321bb20 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Alineació de la matriu", "DE.Views.DocumentHolder.txtOverbar": "Barra sobre el text", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescriu les cel·les", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Conserva el format original", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Premeu {0} i feu clic a l'enllaç", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Clau de grup", "DE.Views.FormSettings.textImage": "Imatge", "DE.Views.FormSettings.textKey": "Clau", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Idioma", "DE.Views.FormSettings.textLetters": "Cartes", "DE.Views.FormSettings.textLock": "Bloca", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data i hora", "DE.Views.FormsTab.capZipCode": "Codi postal", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Qualsevol", "DE.Views.FormsTab.textClear": "Esborra els camps", "DE.Views.FormsTab.textClearFields": "Esborra tots els camps", "DE.Views.FormsTab.textCreateForm": "Afegeix camps i crea un document PDF emplenable", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Ho tinc", "DE.Views.FormsTab.textHighlight": "Ressalta la configuració", "DE.Views.FormsTab.textNoHighlight": "Sense ressaltar", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navegació", "DE.Views.ViewTab.textOutline": "Capçaleres", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Panell dret", "DE.Views.ViewTab.textRulers": "Regles", "DE.Views.ViewTab.textStatusBar": "Barra d'estat", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Document fosc", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Capçaleres", "DE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfície", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automàtic", "DE.Views.WatermarkSettingsDialog.textBold": "Negreta", "DE.Views.WatermarkSettingsDialog.textColor": "Color del text", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Subratllar", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nom de la lletra", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida de la lletra", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Mida de la lletra" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 85bfe59ab4..b81d5d7e70 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Zarovnání matice", "DE.Views.DocumentHolder.txtOverbar": "Čárka nad textem", "DE.Views.DocumentHolder.txtOverwriteCells": "Přepsat buňky", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ponechat formátování zdroje", "DE.Views.DocumentHolder.txtPercentage": "Procento", "DE.Views.DocumentHolder.txtPressLink": "Stiskněte {0} a klikněte na odkaz", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Skupinový klíč", "DE.Views.FormSettings.textImage": "Obrázek", "DE.Views.FormSettings.textKey": "Klíč", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Jazyk", "DE.Views.FormSettings.textLetters": "Písmena", "DE.Views.FormSettings.textLock": "Uzamknout", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Datum a čas", "DE.Views.FormsTab.capZipCode": "PSČ", "DE.Views.FormsTab.helpTextFillStatus": "Formulář je připraven pro vyplnění na základě role. Kliknutím na stavové tlačítko zkontrolujete fázi vyplnění.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Kdokoliv", "DE.Views.FormsTab.textClear": "Vyčistit pole", "DE.Views.FormsTab.textClearFields": "Vyčistit všechna pole", "DE.Views.FormsTab.textCreateForm": "Přidat pole a vytvořit plnitelný dokument PDF", "DE.Views.FormsTab.textFilled": "Vyplněno", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Rozumím", "DE.Views.FormsTab.textHighlight": "Nastavení zvýraznění", "DE.Views.FormsTab.textNoHighlight": "Žádné zvýraznění", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Makra", "DE.Views.ViewTab.textNavigation": "Navigace", "DE.Views.ViewTab.textOutline": "Nadpisy", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Pravý panel", "DE.Views.ViewTab.textRulers": "Pravítka", "DE.Views.ViewTab.textStatusBar": "Stavová lišta", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Styl panelu", "DE.Views.ViewTab.textZoom": "Přiblížení", "DE.Views.ViewTab.tipDarkDocument": "Tmavý režim dokumentu", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Nadpisy", "DE.Views.ViewTab.tipInterfaceTheme": "Vzhled uživatelského rozhraní", "DE.Views.ViewTab.tipMacros": "Makra", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automaticky", "DE.Views.WatermarkSettingsDialog.textBold": "Tučné", "DE.Views.WatermarkSettingsDialog.textColor": "Barva textu", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Poloprůhledné", "DE.Views.WatermarkSettingsDialog.textUnderline": "Podtržené", "DE.Views.WatermarkSettingsDialog.tipFontName": "Název písma", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost písma", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost písma" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/da.json b/apps/documenteditor/main/locale/da.json index 254bf11e4f..471f5121b4 100644 --- a/apps/documenteditor/main/locale/da.json +++ b/apps/documenteditor/main/locale/da.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrice justering", "DE.Views.DocumentHolder.txtOverbar": "Linie over tekst", "DE.Views.DocumentHolder.txtOverwriteCells": "Overskriv celler", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behold oprindelig formattering", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Tryk {0} og klik på linket", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Gruppenøgle", "DE.Views.FormSettings.textImage": "Billede", "DE.Views.FormSettings.textKey": "Nøgle", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Sprog", "DE.Views.FormSettings.textLetters": "Breve", "DE.Views.FormSettings.textLock": "Lås", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Ryd felter", "DE.Views.FormsTab.textClearFields": "Ryd alle felter", "DE.Views.FormsTab.textCreateForm": "Tilføj felter og opret et udfyld bart PDF dokument", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Forstået", "DE.Views.FormsTab.textHighlight": "Fremhæv indstillinger", "DE.Views.FormsTab.textNoHighlight": "Ingen fremhævning", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigering", "DE.Views.ViewTab.textOutline": "Overskrifter", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Linealer", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Mørk dokument", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Overskrifter", "DE.Views.ViewTab.tipInterfaceTheme": "Interface tema", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisk", "DE.Views.WatermarkSettingsDialog.textBold": "Fed", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstfarve", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Halvgennemsigtig", "DE.Views.WatermarkSettingsDialog.textUnderline": "Understreg", "DE.Views.WatermarkSettingsDialog.tipFontName": "Skrifttypenavn", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Skriftstørrelse", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Skriftstørrelse" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 6ac59e3910..369eee2cec 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -2878,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Datum & Uhrzeit", "DE.Views.FormsTab.capZipCode": "Postleitzahl", "DE.Views.FormsTab.helpTextFillStatus": "Dieses Formular ist bereit zum rollenbasierten Ausfüllen. Klicken Sie auf die Statusschaltfläche, um den Füllstatus zu überprüfen.", + "DE.Views.FormsTab.textAddRole": "Empfänger hinzufügen", "DE.Views.FormsTab.textAnyone": "Alle", "DE.Views.FormsTab.textClear": "Felder löschen", "DE.Views.FormsTab.textClearFields": "Alle Felder löschen", "DE.Views.FormsTab.textCreateForm": "Felder hinzufügen und ausfüllbare PDF-Datei erstellen", "DE.Views.FormsTab.textFilled": "Ausgefüllt", + "DE.Views.FormsTab.textFillFor": "Felder einfügen für", "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "Einstellungen für Hervorhebungen", "DE.Views.FormsTab.textNoHighlight": "Ohne Hervorhebung", @@ -4246,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Makros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Überschriften", + "DE.Views.ViewTab.textPauseMacro": "Aufnahme pausieren", + "DE.Views.ViewTab.textRecMacro": "Makro aufzeichnen", + "DE.Views.ViewTab.textResumeMacro": "Aufnahme fortsetzen", "DE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ", "DE.Views.ViewTab.textRulers": "Lineale", "DE.Views.ViewTab.textStatusBar": "Statusleiste", + "DE.Views.ViewTab.textStopMacro": "Aufnahme beenden", "DE.Views.ViewTab.textTabStyle": "Stil der Registerkarte", "DE.Views.ViewTab.textZoom": "Vergrößern", "DE.Views.ViewTab.tipDarkDocument": "Dunkles Dokument", @@ -4257,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Überschriften", "DE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche", "DE.Views.ViewTab.tipMacros": "Makros", + "DE.Views.ViewTab.tipPauseMacro": "Aufnahme pausieren", + "DE.Views.ViewTab.tipRecMacro": "Makro aufzeichnen", + "DE.Views.ViewTab.tipResumeMacro": "Aufnahme fortsetzen", + "DE.Views.ViewTab.tipStopMacro": "Aufnahme beenden", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", "DE.Views.WatermarkSettingsDialog.textBold": "Fett", "DE.Views.WatermarkSettingsDialog.textColor": "Textfarbe", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index 254e3bcaab..f586c772ab 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Στοίχιση πίνακα", "DE.Views.DocumentHolder.txtOverbar": "Μπάρα πάνω από κείμενο", "DE.Views.DocumentHolder.txtOverwriteCells": "Αντικατάσταση κελιών", + "DE.Views.DocumentHolder.txtPastePicture": "Εικόνα", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Διατήρηση μορφοποίησης πηγής", "DE.Views.DocumentHolder.txtPercentage": "Ποσοστό", "DE.Views.DocumentHolder.txtPressLink": "Πατήστε {0} και κάντε κλικ στο σύνδεσμο", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Κλειδί ομάδας", "DE.Views.FormSettings.textImage": "Εικόνα", "DE.Views.FormSettings.textKey": "Κλειδί", + "DE.Views.FormSettings.textLabel": "Ετικέτα", "DE.Views.FormSettings.textLang": "Γλώσσα", "DE.Views.FormSettings.textLetters": "Γράμματα", "DE.Views.FormSettings.textLock": "Κλείδωμα", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Ημερομηνία & Ώρα", "DE.Views.FormsTab.capZipCode": "Ταχ. Κώδικας", "DE.Views.FormsTab.helpTextFillStatus": "Αυτή η φόρμα είναι έτοιμη για πλήρωση με βάση το ρόλο. Κάντε κλικ στο κουμπί Κατάσταση για να ελέγξετε το στάδιο πλήρωσης.", + "DE.Views.FormsTab.textAddRole": "Προσθήκη παραλήπτη", "DE.Views.FormsTab.textAnyone": "Οποιοσδήποτε", "DE.Views.FormsTab.textClear": "Εκκαθάριση Πεδίων", "DE.Views.FormsTab.textClearFields": "Εκκαθάριση όλων των πεδίων", "DE.Views.FormsTab.textCreateForm": "Προσθήκη πεδίων και δημιουργία συμπληρώσιμου εγγράφου PDF", "DE.Views.FormsTab.textFilled": "Συμπληρωμένο", + "DE.Views.FormsTab.textFillFor": "Εισάγετε πεδία για", "DE.Views.FormsTab.textGotIt": "Εντάξει", "DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης", "DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Μακροεντολές", "DE.Views.ViewTab.textNavigation": "Πλοήγηση", "DE.Views.ViewTab.textOutline": "Επικεφαλίδες", + "DE.Views.ViewTab.textPauseMacro": "Παύση εγγραφής", + "DE.Views.ViewTab.textRecMacro": "Εγγραφή μακροεντολής", + "DE.Views.ViewTab.textResumeMacro": "Συνέχιση εγγραφής", "DE.Views.ViewTab.textRightMenu": "Δεξιό πλαίσιο", "DE.Views.ViewTab.textRulers": "Χάρακες", "DE.Views.ViewTab.textStatusBar": "Γραμμή κατάστασης", + "DE.Views.ViewTab.textStopMacro": "Διακοπή εγγραφής", "DE.Views.ViewTab.textTabStyle": "Στυλ καρτέλας", "DE.Views.ViewTab.textZoom": "Εστίαση", "DE.Views.ViewTab.tipDarkDocument": "Σκούρο έγγραφο", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Κεφαλίδες", "DE.Views.ViewTab.tipInterfaceTheme": "Θέμα διεπαφής", "DE.Views.ViewTab.tipMacros": "Μακροεντολές", + "DE.Views.ViewTab.tipPauseMacro": "Παύση εγγραφής", + "DE.Views.ViewTab.tipRecMacro": "Εγγραφή μακροεντολής", + "DE.Views.ViewTab.tipResumeMacro": "Συνέχιση εγγραφής", + "DE.Views.ViewTab.tipStopMacro": "Διακοπή εγγραφής", "DE.Views.WatermarkSettingsDialog.textAuto": "Αυτόματα", "DE.Views.WatermarkSettingsDialog.textBold": "Έντονα", "DE.Views.WatermarkSettingsDialog.textColor": "Χρώμα κειμένου", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Ημιδιαφανές", "DE.Views.WatermarkSettingsDialog.textUnderline": "Υπογράμμιση", "DE.Views.WatermarkSettingsDialog.tipFontName": "Όνομα γραμματοσειράς", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Μέγεθος γραμματοσειράς", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Μέγεθος γραμματοσειράς" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index 0b7e803fad..43f1ff0a51 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -1197,6 +1197,7 @@ "Common.Views.ShortcutsEditDialog.txtRestoreToDefault": "Restore to default", "Common.Views.ShortcutsEditDialog.txtTitle": "Edit shortcut", "Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut": "Type desired shortcut", + "Common.Views.ShortcutsEditDialog.txtCantBeEdited": "This shortcut can’t be edited", "Common.Views.SignDialog.textBold": "Bold", "Common.Views.SignDialog.textCertificate": "Certificate", "Common.Views.SignDialog.textChange": "Change", @@ -2878,11 +2879,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Clear Fields", "DE.Views.FormsTab.textClearFields": "Clear All Fields", "DE.Views.FormsTab.textCreateForm": "Add fields and create a fillable PDF", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Got it", "DE.Views.FormsTab.textHighlight": "Highlight Settings", "DE.Views.FormsTab.textNoHighlight": "No highlighting", @@ -2930,8 +2933,6 @@ "DE.Views.FormsTab.txtInlineText": "Inline", "DE.Views.FormsTab.txtSignedForm": "This document has been signed and cannot be edited.", "DE.Views.FormsTab.txtUntitled": "Untitled", - "DE.Views.FormsTab.textFillFor": "Insert fields for", - "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.HeaderFooterSettings.textBottomCenter": "Bottom center", "DE.Views.HeaderFooterSettings.textBottomLeft": "Bottom left", "DE.Views.HeaderFooterSettings.textBottomPage": "Bottom of page", @@ -4248,9 +4249,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4259,12 +4264,8 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", - "DE.Views.ViewTab.textRecMacro": "Record macro", - "DE.Views.ViewTab.textPauseMacro": "Pause recording", - "DE.Views.ViewTab.textResumeMacro": "Resume recording", - "DE.Views.ViewTab.textStopMacro": "Stop recording", - "DE.Views.ViewTab.tipRecMacro": "Record macro", "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", "DE.Views.ViewTab.tipResumeMacro": "Resume recording", "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 73303ac70d..301c64e969 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -2878,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Fecha y hora", "DE.Views.FormsTab.capZipCode": "Código postal", "DE.Views.FormsTab.helpTextFillStatus": "Este formulario está listo para su rellenado basado en roles. Haga clic en el botón de estado para comprobar la fase de rellenado.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Cualquiera", "DE.Views.FormsTab.textClear": "Eliminar campos", "DE.Views.FormsTab.textClearFields": "Eliminar todos los campos", "DE.Views.FormsTab.textCreateForm": "Agregue campos y cree un documento PDF rellenable", "DE.Views.FormsTab.textFilled": "Rellenado", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Entiendo", "DE.Views.FormsTab.textHighlight": "Ajustes de resaltado", "DE.Views.FormsTab.textNoHighlight": "No resaltar", @@ -4246,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navegación", "DE.Views.ViewTab.textOutline": "Títulos", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Panel derecho", "DE.Views.ViewTab.textRulers": "Reglas", "DE.Views.ViewTab.textStatusBar": "Barra de estado", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Estilo de pestaña", "DE.Views.ViewTab.textZoom": "Ampliación", "DE.Views.ViewTab.tipDarkDocument": "Documento oscuro", @@ -4257,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Títulos", "DE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Negrita", "DE.Views.WatermarkSettingsDialog.textColor": "Color del texto", diff --git a/apps/documenteditor/main/locale/eu.json b/apps/documenteditor/main/locale/eu.json index 770fac3f6c..733034d1e4 100644 --- a/apps/documenteditor/main/locale/eu.json +++ b/apps/documenteditor/main/locale/eu.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrizearen lerrokatzea", "DE.Views.DocumentHolder.txtOverbar": "Barra testuaren gainean", "DE.Views.DocumentHolder.txtOverwriteCells": "Gainidatzi gelaxkak", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantendu jatorrizko formatua", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Sakatu {0} eta egin klik estekan", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Talde-gakoa", "DE.Views.FormSettings.textImage": "Irudia", "DE.Views.FormSettings.textKey": "Gakoa", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Hizkuntza", "DE.Views.FormSettings.textLetters": "Letrak", "DE.Views.FormSettings.textLock": "Blokeatu", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data eta ordua", "DE.Views.FormsTab.capZipCode": "Posta-kodea", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Edonork", "DE.Views.FormsTab.textClear": "Garbitu eremuak", "DE.Views.FormsTab.textClearFields": "Garbitu eremu guztiak", "DE.Views.FormsTab.textCreateForm": "Gehitu eremuak eta sortu PDF dokumentu editagarri bat", "DE.Views.FormsTab.textFilled": "Beteta", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Ulertu dut", "DE.Views.FormsTab.textHighlight": "Nabarmentze-ezarpenak", "DE.Views.FormsTab.textNoHighlight": "Ez nabarmendu", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Nabigazioa", "DE.Views.ViewTab.textOutline": "Izenburuak", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Eskuineko panela", "DE.Views.ViewTab.textRulers": "Erregelak", "DE.Views.ViewTab.textStatusBar": "Egoera-barra", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zooma", "DE.Views.ViewTab.tipDarkDocument": "Dokumentu iluna", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Izenburuak", "DE.Views.ViewTab.tipInterfaceTheme": "Interfazearen gaia", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatikoa", "DE.Views.WatermarkSettingsDialog.textBold": "Lodia", "DE.Views.WatermarkSettingsDialog.textColor": "Testu-kolorea", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Erdigardena", "DE.Views.WatermarkSettingsDialog.textUnderline": "Azpimarra", "DE.Views.WatermarkSettingsDialog.tipFontName": "Letra-tipoaren izena", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Letra-tamaina", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Letra-tamaina" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fi.json b/apps/documenteditor/main/locale/fi.json index 7ffe46ca5a..bdd2e58fc7 100644 --- a/apps/documenteditor/main/locale/fi.json +++ b/apps/documenteditor/main/locale/fi.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matriisin tasaus", "DE.Views.DocumentHolder.txtOverbar": "Tekstin yläpalkki", "DE.Views.DocumentHolder.txtOverwriteCells": "Ylikirjoita solut", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Säilytä lähteen muotoilu", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Paina {0} näppäintä ja klikkaa linkkiä", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Ryhmäavain", "DE.Views.FormSettings.textImage": "Kuva", "DE.Views.FormSettings.textKey": "Avain", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Kieli", "DE.Views.FormSettings.textLetters": "Kirjaimet", "DE.Views.FormSettings.textLock": "Lukitse", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Pvm & Kellonaika", "DE.Views.FormsTab.capZipCode": "Postinumero", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Kuka tahansa", "DE.Views.FormsTab.textClear": "Tyhjennä kentät", "DE.Views.FormsTab.textClearFields": "Tyhjennä kaikki kentät", "DE.Views.FormsTab.textCreateForm": "Lisää kenttiä ja luo täytettävä PDF-lomake", "DE.Views.FormsTab.textFilled": "Täytetty", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "Korostusasetukset", "DE.Views.FormsTab.textNoHighlight": "Ei korostusta", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigaatio", "DE.Views.ViewTab.textOutline": "Otsikot", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Oikea paneeli", "DE.Views.ViewTab.textRulers": "Viivaimet", "DE.Views.ViewTab.textStatusBar": "Tilarivi", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Välilehden tyyli", "DE.Views.ViewTab.textZoom": "Suurenna", "DE.Views.ViewTab.tipDarkDocument": "Tumma asiakirja", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Otsikot", "DE.Views.ViewTab.tipInterfaceTheme": "Käyttöliittymän teema", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automaattinen", "DE.Views.WatermarkSettingsDialog.textBold": "Lihavointi", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstin väri", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Läpikuultava", "DE.Views.WatermarkSettingsDialog.textUnderline": "Alleviivaus", "DE.Views.WatermarkSettingsDialog.tipFontName": "Fontti", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonttikoko", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonttikoko" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 380eebe4b6..0488721a81 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -2878,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date et heure", "DE.Views.FormsTab.capZipCode": "Code postal", "DE.Views.FormsTab.helpTextFillStatus": "Ce formulaire est prêt à être rempli en fonction des rôles. Cliquez sur le bouton de statut pour vérifier l'état d'avancement du remplissage.", + "DE.Views.FormsTab.textAddRole": "Ajouter un destinataire", "DE.Views.FormsTab.textAnyone": "Tout le monde", "DE.Views.FormsTab.textClear": "Effacer les champs", "DE.Views.FormsTab.textClearFields": "Effacer tous les champs", "DE.Views.FormsTab.textCreateForm": "Ajoutez des champs et créer un document PDF remplissable", "DE.Views.FormsTab.textFilled": "Rempli", + "DE.Views.FormsTab.textFillFor": "Insérer des champs pour", "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "Paramètres de surbrillance", "DE.Views.FormsTab.textNoHighlight": "Pas de surbrillance ", @@ -4246,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Titres", + "DE.Views.ViewTab.textPauseMacro": "Mettre en pause l'enregistrement", + "DE.Views.ViewTab.textRecMacro": "Enregistrer une macro", + "DE.Views.ViewTab.textResumeMacro": "Reprendre l'enregistrement", "DE.Views.ViewTab.textRightMenu": "Panneau droit", "DE.Views.ViewTab.textRulers": "Règles", "DE.Views.ViewTab.textStatusBar": "Barre d'état", + "DE.Views.ViewTab.textStopMacro": "Arrêter l'enregistrement", "DE.Views.ViewTab.textTabStyle": "Style d'onglet", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Document sombre", @@ -4257,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Titres", "DE.Views.ViewTab.tipInterfaceTheme": "Thème d'interface", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Mettre en pause l'enregistrement", + "DE.Views.ViewTab.tipRecMacro": "Enregistrer une macro", + "DE.Views.ViewTab.tipResumeMacro": "Reprendre l'enregistrement", + "DE.Views.ViewTab.tipStopMacro": "Arrêter l'enregistrement", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Gras", "DE.Views.WatermarkSettingsDialog.textColor": "Couleur du texte", diff --git a/apps/documenteditor/main/locale/gl.json b/apps/documenteditor/main/locale/gl.json index 11f7458c7a..7b7b1f55ab 100644 --- a/apps/documenteditor/main/locale/gl.json +++ b/apps/documenteditor/main/locale/gl.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Aliñamento de matriz", "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobreescribir as celdas", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatación original", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Prema {0} e na ligazón", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Clave de grupo", "DE.Views.FormSettings.textImage": "Imaxe", "DE.Views.FormSettings.textKey": "Clave", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Idioma", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Bloquear", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data e hora", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Limpar campos", "DE.Views.FormsTab.textClearFields": "Borrar todos os campos", "DE.Views.FormsTab.textCreateForm": "Engada campos e cre un documento PDF que poida encher", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Entendín", "DE.Views.FormsTab.textHighlight": "Configuración do realce", "DE.Views.FormsTab.textNoHighlight": "Non realzar", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navegación", "DE.Views.ViewTab.textOutline": "Títulos", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Regras", "DE.Views.ViewTab.textStatusBar": "Barra de estado", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Ampliar", "DE.Views.ViewTab.tipDarkDocument": "Documento escuro", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Títulos", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automático", "DE.Views.WatermarkSettingsDialog.textBold": "Grosa", "DE.Views.WatermarkSettingsDialog.textColor": "Cor do texto", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente", "DE.Views.WatermarkSettingsDialog.textUnderline": "Subliñado", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nome da fonte", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño da fonte", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamaño da fonte" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/he.json b/apps/documenteditor/main/locale/he.json index 570c85e981..3a1faf077d 100644 --- a/apps/documenteditor/main/locale/he.json +++ b/apps/documenteditor/main/locale/he.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "יישור מטריצה", "DE.Views.DocumentHolder.txtOverbar": "סרגל מעל טקסט", "DE.Views.DocumentHolder.txtOverwriteCells": "להחליף תאים", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "שמור על עיצוב המקור", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "לחץ {0} ולחץ על קישור", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "מפתח קבוצה", "DE.Views.FormSettings.textImage": "תמונה", "DE.Views.FormSettings.textKey": "מפתח", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "שפה", "DE.Views.FormSettings.textLetters": "אותיות", "DE.Views.FormSettings.textLock": "נעילה", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "תאריך ושעה", "DE.Views.FormsTab.capZipCode": "מיקוד", "DE.Views.FormsTab.helpTextFillStatus": "טופס זה מוכן למילוי לפי תורות. לבדיקת מצב המילוי יש ללחוץ על מקש המצב.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "מישהו", "DE.Views.FormsTab.textClear": "נקה שדות", "DE.Views.FormsTab.textClearFields": "נקה את כל השדות", "DE.Views.FormsTab.textCreateForm": "הוסף שדות וצור PDF שאפשר למלא", "DE.Views.FormsTab.textFilled": "מולא", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "הבנתי", "DE.Views.FormsTab.textHighlight": "הדגש הגדרות", "DE.Views.FormsTab.textNoHighlight": "ללא הדגשה", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "פקודות מאקרו", "DE.Views.ViewTab.textNavigation": "ניווט", "DE.Views.ViewTab.textOutline": "כותרות", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "לוח ימני", "DE.Views.ViewTab.textRulers": "סרגלים", "DE.Views.ViewTab.textStatusBar": "שורת מצב", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "סגנון לשונית", "DE.Views.ViewTab.textZoom": "זום", "DE.Views.ViewTab.tipDarkDocument": "מסמך כהה", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "כותרות", "DE.Views.ViewTab.tipInterfaceTheme": "ערכת נושא", "DE.Views.ViewTab.tipMacros": "פקודות מאקרו", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "אוטומטי", "DE.Views.WatermarkSettingsDialog.textBold": "מודגש", "DE.Views.WatermarkSettingsDialog.textColor": "צבע טקסט", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "חצי שקוף", "DE.Views.WatermarkSettingsDialog.textUnderline": "קו תחתון", "DE.Views.WatermarkSettingsDialog.tipFontName": "שם גופן", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "גודל גופן", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "גודל גופן" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hu.json b/apps/documenteditor/main/locale/hu.json index 183a689c2f..98ef68b93b 100644 --- a/apps/documenteditor/main/locale/hu.json +++ b/apps/documenteditor/main/locale/hu.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Mátrix elrendezés", "DE.Views.DocumentHolder.txtOverbar": "Sáv a szöveg fölött", "DE.Views.DocumentHolder.txtOverwriteCells": "Cellák felülírása", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Forrás formátumának megtartása", "DE.Views.DocumentHolder.txtPercentage": "Százalék", "DE.Views.DocumentHolder.txtPressLink": "Nyomja meg a {0} billentyűt és kattintson a hivatkozásra", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Csoportkulcs", "DE.Views.FormSettings.textImage": "Kép", "DE.Views.FormSettings.textKey": "Kulcs", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Nyelv", "DE.Views.FormSettings.textLetters": "Levelek", "DE.Views.FormSettings.textLock": "Lezárás", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Dátum és idő", "DE.Views.FormsTab.capZipCode": "Irányítószám", "DE.Views.FormsTab.helpTextFillStatus": "Ez az űrlap készen áll a szerepkör alapú kitöltésre. A kitöltési állapot ellenőrzéséhez kattintson a „Kitöltés állapota” gombra.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Bárki", "DE.Views.FormsTab.textClear": "Mezők törlése", "DE.Views.FormsTab.textClearFields": "Az összes mező törlése", "DE.Views.FormsTab.textCreateForm": "Mezők hozzáadása és kitölthető PDF dokumentum létrehozása", "DE.Views.FormsTab.textFilled": "Kitöltve", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "Kiemelés beállításai", "DE.Views.FormsTab.textNoHighlight": "Nincs kiemelés", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Makrók", "DE.Views.ViewTab.textNavigation": "Navigáció", "DE.Views.ViewTab.textOutline": "Címszavak", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Jobb panel", "DE.Views.ViewTab.textRulers": "Vonalzók", "DE.Views.ViewTab.textStatusBar": "Állapotsor", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tabulátor stílus", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Sötét dokumentum", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Címsorok", "DE.Views.ViewTab.tipInterfaceTheme": "Felhasználói felület témája", "DE.Views.ViewTab.tipMacros": "Makrók", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Félkövér", "DE.Views.WatermarkSettingsDialog.textColor": "Szöveg színe", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Féligáttetsző", "DE.Views.WatermarkSettingsDialog.textUnderline": "Aláhúzott", "DE.Views.WatermarkSettingsDialog.tipFontName": "Betűtípus neve", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Betűméret", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Betűméret" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 720b73c1b7..9cfadabdf0 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Մատրիցային հավասարեցում", "DE.Views.DocumentHolder.txtOverbar": "Տեքստի վրա գիծ", "DE.Views.DocumentHolder.txtOverwriteCells": "Փոխարինել վանդակների բովանդակությունը", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Պահպանել սկզբնական ձևաչափը", "DE.Views.DocumentHolder.txtPercentage": "Տոկոսային", "DE.Views.DocumentHolder.txtPressLink": "Սեղմել {0} և անցնել հղումը", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Խմբի բանալի", "DE.Views.FormSettings.textImage": "Նկար", "DE.Views.FormSettings.textKey": "Բանալի ", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Լեզու", "DE.Views.FormSettings.textLetters": "Նամակներ", "DE.Views.FormSettings.textLock": "Արգելափակել ", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Ամսաթիվ/Ժամ", "DE.Views.FormsTab.capZipCode": "Փոստային դասիչ(կոդ)", "DE.Views.FormsTab.helpTextFillStatus": "Այս ձևը պատրաստ է դերերի վրա հիմնված լրացման համար: Սեղմեք կարգավիճակի կոճակը՝ լրացման փուլը ստուգելու համար:", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Յուրաքանչյուրը", "DE.Views.FormsTab.textClear": "Մաքրել դաշտերը", "DE.Views.FormsTab.textClearFields": "Մաքրել բոլոր դաշտերը", "DE.Views.FormsTab.textCreateForm": "Ավելացնել դաշտեր և ստեղծել լրացվող PDF փաստաթուղթ:", "DE.Views.FormsTab.textFilled": "Լրացված", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Հասկանալի է", "DE.Views.FormsTab.textHighlight": "Ընդգծել կարգավորումները", "DE.Views.FormsTab.textNoHighlight": "Առանց գունանշման", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Մակրոներ", "DE.Views.ViewTab.textNavigation": "Նավիգացիա", "DE.Views.ViewTab.textOutline": "Վերնագրեր", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Աջ վահանակ", "DE.Views.ViewTab.textRulers": "Քանոններ", "DE.Views.ViewTab.textStatusBar": "Վիճակագոտի", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Ներդիրի ոճ", "DE.Views.ViewTab.textZoom": "Խոշորացնել", "DE.Views.ViewTab.tipDarkDocument": "Մուգ փաստաթուղթ", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Վերնագրեր", "DE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ", "DE.Views.ViewTab.tipMacros": "Մակրոներ", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Ինքնաշխատ", "DE.Views.WatermarkSettingsDialog.textBold": "Թավ", "DE.Views.WatermarkSettingsDialog.textColor": "Տեքստի գույն", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Կիսաթափանցիկ", "DE.Views.WatermarkSettingsDialog.textUnderline": "Ընդգծված", "DE.Views.WatermarkSettingsDialog.tipFontName": "Տառատեսակի անուն", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Տառատեսակի չափ", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Տառատեսակի չափ" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/id.json b/apps/documenteditor/main/locale/id.json index f67b2c4523..5b6904cb25 100644 --- a/apps/documenteditor/main/locale/id.json +++ b/apps/documenteditor/main/locale/id.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Rata matriks", "DE.Views.DocumentHolder.txtOverbar": "Bar di atas teks", "DE.Views.DocumentHolder.txtOverwriteCells": "Tiban sel", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Pertahankan formatting sumber", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik link", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Satukan kunci", "DE.Views.FormSettings.textImage": "Gambar", "DE.Views.FormSettings.textKey": "Kunci", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Bahasa", "DE.Views.FormSettings.textLetters": "Huruf", "DE.Views.FormSettings.textLock": "Kunci", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Tanggal & Jam", "DE.Views.FormsTab.capZipCode": "Kode Pos", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Siapa pun", "DE.Views.FormsTab.textClear": "Bersihkan Ruas", "DE.Views.FormsTab.textClearFields": "Bersihkan Semua Ruas", "DE.Views.FormsTab.textCreateForm": "Tambah ruas dan buat dokumen PDF yang bisa diisi", "DE.Views.FormsTab.textFilled": "Terisi", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Mengerti", "DE.Views.FormsTab.textHighlight": "Pengaturan Highlight", "DE.Views.FormsTab.textNoHighlight": "Tanpa highlight", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigasi", "DE.Views.ViewTab.textOutline": "Tajuk", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Panel Kanan", "DE.Views.ViewTab.textRulers": "Penggaris", "DE.Views.ViewTab.textStatusBar": "Bar Status", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Gaya tab", "DE.Views.ViewTab.textZoom": "Pembesaran", "DE.Views.ViewTab.tipDarkDocument": "Dokumen gelap", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Tajuk", "DE.Views.ViewTab.tipInterfaceTheme": "Tema antarmuka", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatis", "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", "DE.Views.WatermarkSettingsDialog.textColor": "Warna teks", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semi Transparan", "DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nama font", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran font", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Ukuran font" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index a0b2b799e7..c6d30c2a01 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Allineamento matrice", "DE.Views.DocumentHolder.txtOverbar": "Barra sopra al testo", "DE.Views.DocumentHolder.txtOverwriteCells": "Sovrascrivi celle", + "DE.Views.DocumentHolder.txtPastePicture": "Immagine", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Mantieni la formattazione sorgente", "DE.Views.DocumentHolder.txtPercentage": "Percentuale", "DE.Views.DocumentHolder.txtPressLink": "Premi {0} e clicca sul collegamento", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Chiave di gruppo", "DE.Views.FormSettings.textImage": "Immagine", "DE.Views.FormSettings.textKey": "Chiave", + "DE.Views.FormSettings.textLabel": "Etichetta", "DE.Views.FormSettings.textLang": "Lingua", "DE.Views.FormSettings.textLetters": "Lettere", "DE.Views.FormSettings.textLock": "Blocca", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data e ora", "DE.Views.FormsTab.capZipCode": "Codice postale", "DE.Views.FormsTab.helpTextFillStatus": "Questo modulo è pronto per essere compilato in base al ruolo. Clicca sul pulsante di stato per verificare la fase di compilazione.", + "DE.Views.FormsTab.textAddRole": "Aggiungi destinatario", "DE.Views.FormsTab.textAnyone": "Chiunque", "DE.Views.FormsTab.textClear": "Cancella campi", "DE.Views.FormsTab.textClearFields": "‎Cancella tutti i campi‎", "DE.Views.FormsTab.textCreateForm": "Aggiungi campi e crea un documento PDF compilabile", "DE.Views.FormsTab.textFilled": "Riempito", + "DE.Views.FormsTab.textFillFor": "Inserisci campo per", "DE.Views.FormsTab.textGotIt": "Capito", "DE.Views.FormsTab.textHighlight": "Impostazioni evidenziazione", "DE.Views.FormsTab.textNoHighlight": "Nessuna evidenziazione", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macro", "DE.Views.ViewTab.textNavigation": "Navigazione", "DE.Views.ViewTab.textOutline": "Intestazioni", + "DE.Views.ViewTab.textPauseMacro": "Interrompere la registrazione", + "DE.Views.ViewTab.textRecMacro": "Registra macro", + "DE.Views.ViewTab.textResumeMacro": "Riprendere la registrazione", "DE.Views.ViewTab.textRightMenu": "Pannello destro", "DE.Views.ViewTab.textRulers": "Righelli", "DE.Views.ViewTab.textStatusBar": "Barra di stato", + "DE.Views.ViewTab.textStopMacro": "Fermare la registrazione", "DE.Views.ViewTab.textTabStyle": "Stile della scheda", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Documento scuro", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Intestazioni", "DE.Views.ViewTab.tipInterfaceTheme": "Tema dell'interfaccia", "DE.Views.ViewTab.tipMacros": "Macro", + "DE.Views.ViewTab.tipPauseMacro": "Interrompere la registrazione", + "DE.Views.ViewTab.tipRecMacro": "Registra macro", + "DE.Views.ViewTab.tipResumeMacro": "Riprendere la registrazione", + "DE.Views.ViewTab.tipStopMacro": "Fermare la registrazione", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Grassetto", "DE.Views.WatermarkSettingsDialog.textColor": "Colore del testo", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitrasparente", "DE.Views.WatermarkSettingsDialog.textUnderline": "Sottolineato", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nome carattere", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensione carattere", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Dimensione carattere" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 3af99f8f39..7da642db2f 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "行列の配置", "DE.Views.DocumentHolder.txtOverbar": "テキストの上のバー", "DE.Views.DocumentHolder.txtOverwriteCells": "セルを上書きする", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "元の書式付けを保存する", "DE.Views.DocumentHolder.txtPercentage": "パーセンテージ", "DE.Views.DocumentHolder.txtPressLink": "{0}キーを押しながらクリックしてリンク先を表示", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "グループキー", "DE.Views.FormSettings.textImage": "画像", "DE.Views.FormSettings.textKey": "キー", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "言語", "DE.Views.FormSettings.textLetters": "文字", "DE.Views.FormSettings.textLock": "ロックする", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "日付と時間", "DE.Views.FormsTab.capZipCode": "郵便番号", "DE.Views.FormsTab.helpTextFillStatus": "このフォームは役割ベースの入力が可能です。ステータスボタンをクリックして入力段階を確認してください。", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "誰でも", "DE.Views.FormsTab.textClear": "フィールドをクリアする", "DE.Views.FormsTab.textClearFields": "すべてのフィールドをクリアする", "DE.Views.FormsTab.textCreateForm": "フィールドを追加して、記入可能なPDF文書を作成する", "DE.Views.FormsTab.textFilled": "記入済み", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "OK", "DE.Views.FormsTab.textHighlight": "ハイライト設定", "DE.Views.FormsTab.textNoHighlight": "ハイライト表示なし", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "マクロ", "DE.Views.ViewTab.textNavigation": "ナビゲーション", "DE.Views.ViewTab.textOutline": "見出し", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "右パネル", "DE.Views.ViewTab.textRulers": "ルーラー", "DE.Views.ViewTab.textStatusBar": "ステータスバー", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "タブのスタイル", "DE.Views.ViewTab.textZoom": "ズーム", "DE.Views.ViewTab.tipDarkDocument": "ダークドキュメント", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "見出し", "DE.Views.ViewTab.tipInterfaceTheme": "インターフェースのテーマ", "DE.Views.ViewTab.tipMacros": "マクロ", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", "DE.Views.WatermarkSettingsDialog.textBold": "太字", "DE.Views.WatermarkSettingsDialog.textColor": "文字の色", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "半透明", "DE.Views.WatermarkSettingsDialog.textUnderline": "アンダーライン", "DE.Views.WatermarkSettingsDialog.tipFontName": "フォント名", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "フォントのサイズ", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "フォントのサイズ" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index d1424e8c86..0e037d9b81 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -99,29 +99,29 @@ "Common.Controllers.ReviewChanges.textWidow": "개별 제어", "Common.Controllers.ReviewChanges.textWord": "단어 수준", "Common.Controllers.Shortcuts.txtDescriptionAddNewRow": "표의 맨 아래에 새로운 행 추가.", - "Common.Controllers.Shortcuts.txtDescriptionApplyHeading1": "Apply the style of the heading 1 to the selected text fragment.", - "Common.Controllers.Shortcuts.txtDescriptionApplyHeading2": "Apply the style of the heading 2 to the selected text fragment.", - "Common.Controllers.Shortcuts.txtDescriptionApplyHeading3": "Apply the style of the heading 3 to the selected text fragment.", - "Common.Controllers.Shortcuts.txtDescriptionApplyListBullet": "Create an unordered bulleted list from the selected text fragment, or start a new one.", + "Common.Controllers.Shortcuts.txtDescriptionApplyHeading1": "선택한 텍스트 조각에 제목 1의 스타일을 적용합니다.", + "Common.Controllers.Shortcuts.txtDescriptionApplyHeading2": "선택한 텍스트 조각에 제목 2의 스타일을 적용합니다.", + "Common.Controllers.Shortcuts.txtDescriptionApplyHeading3": "선택한 텍스트 조각에 제목 3의 스타일을 적용합니다.", + "Common.Controllers.Shortcuts.txtDescriptionApplyListBullet": "선택한 텍스트 조각에서 순서 없는 글머리 기호 목록을 만들거나 새 목록을 시작합니다.", "Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectDown": "Use the keyboard arrow to move the selected object by a big step down.", "Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectLeft": "Use the keyboard arrow to move the selected object by a big step to the left.", "Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectRight": "Use the keyboard arrow to move the selected object by a big step to the right.", "Common.Controllers.Shortcuts.txtDescriptionBigMoveObjectUp": "Use the keyboard arrow to move the selected object by a big step up.", "Common.Controllers.Shortcuts.txtDescriptionBold": "Make the font of the selected text fragment darker and heavier than normal.", "Common.Controllers.Shortcuts.txtDescriptionCenterPara": "Switch a paragraph between centered and left-aligned.", - "Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption": "Choose the next combo box option in the form.", - "Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption": "Choose the previous combo box option in the form.", - "Common.Controllers.Shortcuts.txtDescriptionCloseFile": "Close the current document window.", - "Common.Controllers.Shortcuts.txtDescriptionCloseMenu": "Close a menu or modal window. Reset pop-ups and balloons with comments and review changes. Reset drawing and erasing table mode. Reset text drag-n-drop. Reset marker selection mode. Reset format painter mode. Deselect shapes. Reset adding shapes mode. Exit from the header/footer. Exit from filling in forms.", + "Common.Controllers.Shortcuts.txtDescriptionChooseNextComboBoxOption": "양식에서 다음 콤보 상자 옵션을 선택하세요.", + "Common.Controllers.Shortcuts.txtDescriptionChoosePreviousComboBoxOption": "양식에서 이전 콤보 상자 옵션을 선택합니다.", + "Common.Controllers.Shortcuts.txtDescriptionCloseFile": "현재 문서 창을 닫습니다.", + "Common.Controllers.Shortcuts.txtDescriptionCloseMenu": "메뉴 또는 모달 창을 닫습니다. 댓글 및 검토 변경 사항이 있는 팝업 및 풍선을 재설정합니다. 표 그리기 및 지우기 모드를 재설정합니다. 텍스트 드래그 앤 드롭을 재설정합니다. 마커 선택 모드를 재설정합니다. 서식 복사 모드를 재설정합니다. 도형 선택을 해제합니다. 도형 추가 모드를 재설정합니다. 머리글/바닥글을 종료합니다. 양식 작성을 종료합니다.", "Common.Controllers.Shortcuts.txtDescriptionCopy": "Send the selected text fragment to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program.", - "Common.Controllers.Shortcuts.txtDescriptionCopyFormat": "Copy the formatting from the selected fragment of the currently edited text. The copied formatting can be later applied to another text fragment in the same document.", + "Common.Controllers.Shortcuts.txtDescriptionCopyFormat": "현재 편집 중인 텍스트의 선택한 부분에서 서식을 복사합니다. 복사한 서식은 나중에 같은 문서의 다른 텍스트 부분에 적용할 수 있습니다.", "Common.Controllers.Shortcuts.txtDescriptionCopyrightSign": "Insert a copyright symbol within the current document and to the right of the cursor.", - "Common.Controllers.Shortcuts.txtDescriptionCut": "Delete the selected text fragment and send it to the computer clipboard memory. The copied text can be later inserted to another place in the same document, into another document, or into some other program.", - "Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize": "Decrease the size of the font for the selected text fragment 1 point.", - "Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar": "Delete one character to the left of the cursor.", - "Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord": "Delete one word/selection/graphical object to the left of the cursor.", - "Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar": "Delete one character to the right of the cursor.", - "Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord": "Delete one word/selection/graphical object to the right of the cursor.", + "Common.Controllers.Shortcuts.txtDescriptionCut": "선택한 텍스트 조각을 삭제하고 컴퓨터 클립보드 메모리로 보냅니다. 복사한 텍스트는 나중에 같은 문서의 다른 위치, 다른 문서 또는 다른 프로그램에 삽입할 수 있습니다.", + "Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize": "선택한 텍스트 조각의 글꼴 크기를 1포인트 줄입니다.", + "Common.Controllers.Shortcuts.txtDescriptionDeleteLeftChar": "커서 왼쪽에 있는 문자 하나를 삭제합니다.", + "Common.Controllers.Shortcuts.txtDescriptionDeleteLeftWord": "커서 왼쪽에 있는 단어/선택 항목/그래픽 개체 하나를 삭제합니다.", + "Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar": "커서 오른쪽에 있는 문자 하나를 삭제합니다.", + "Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord": "커서 오른쪽에 있는 단어/선택 영역/그래픽 개체 하나를 삭제합니다.", "Common.Controllers.Shortcuts.txtDescriptionEditChart": "When the chart title is selected, if the title is empty, move the cursor to the beginning of the line, otherwise select the text.", "Common.Controllers.Shortcuts.txtDescriptionEditRedo": "Repeat the latest undone action.", "Common.Controllers.Shortcuts.txtDescriptionEditSelectAll": "Select all the document text with tables and images.", @@ -129,11 +129,11 @@ "Common.Controllers.Shortcuts.txtDescriptionEditUndo": "Reverse the latest performed action.", "Common.Controllers.Shortcuts.txtDescriptionEmDash": "Insert an em dash within the current document and to the right of the cursor.", "Common.Controllers.Shortcuts.txtDescriptionEnDash": "Insert an en dash within the current document and to the right of the cursor.", - "Common.Controllers.Shortcuts.txtDescriptionEndParagraph": "End the current paragraph and start a new one.", + "Common.Controllers.Shortcuts.txtDescriptionEndParagraph": "현재 문단을 끝내고 새로운 문단을 시작합니다.", "Common.Controllers.Shortcuts.txtDescriptionEndParagraphCell": "Start a new paragraph within a cell.", "Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder": "방정식 인수에 새로운 입력 칸 추가.", - "Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft": "Change the alignment level of the operator to the left (for the second line of the equation with a forced break).", - "Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight": "Change the alignment level of the operator to the right (for the second line of the equation with a forced break).", + "Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentLeft": "연산자의 정렬 수준을 왼쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).", + "Common.Controllers.Shortcuts.txtDescriptionEquationChangeAlignmentRight": "연산자의 정렬 수준을 오른쪽으로 변경합니다(강제 줄바꿈이 있는 방정식의 두 번째 줄에 대해).", "Common.Controllers.Shortcuts.txtDescriptionEuroSign": "Insert the Euro sign at the current cursor position.", "Common.Controllers.Shortcuts.txtDescriptionHorizontalEllipsis": "Insert the ellipsis sign at the current cursor position.", "Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize": "Increase the size of the font for the selected text fragment 1 point.", @@ -157,7 +157,7 @@ "Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectRight": "Hold down the specified key and use the keyboard arrow to move the selected object to the right by one pixel at a time.", "Common.Controllers.Shortcuts.txtDescriptionLittleMoveObjectUp": "Hold down the specified key and use the keyboard arrow to move the selected object up by one pixel at a time.", "Common.Controllers.Shortcuts.txtDescriptionMixedIndent": "Increase the indent for the selected paragraphs.", - "Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent": "Decrease the indent for the selected paragraphs.", + "Common.Controllers.Shortcuts.txtDescriptionMixedUnIndent": "선택한 문단의 들여쓰기를 줄입니다.", "Common.Controllers.Shortcuts.txtDescriptionMoveFocusToNextObject": "Move focus to the next object after the currently selected one.", "Common.Controllers.Shortcuts.txtDescriptionMoveFocusToPreviousObject": "Move focus to the previous object before the currently selected one.", "Common.Controllers.Shortcuts.txtDescriptionMoveToDownLine": "Move the cursor one line down.", @@ -186,8 +186,8 @@ "Common.Controllers.Shortcuts.txtDescriptionMoveToUpperHeaderFooter": "Move to the upper header/footer (if the cursor is in the header/footer).", "Common.Controllers.Shortcuts.txtDescriptionNextFileTab": "Switch to the next file tab in Desktop Editors or browser tab in Online Editors.", "Common.Controllers.Shortcuts.txtDescriptionNextModalControl": "Navigate between controls to give focus to the next control in modal dialogues.", - "Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen": "Create a hyphen between characters, which cannot be used to start a new line.", - "Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace": "Create a space between characters which cannot be used to start a new line.", + "Common.Controllers.Shortcuts.txtDescriptionNonBreakingHyphen": "문자 사이에 하이픈을 만듭니다. 하이픈은 새 줄을 시작하는 데 사용할 수 없습니다.", + "Common.Controllers.Shortcuts.txtDescriptionNonBreakingSpace": "새 줄을 시작하는 데 사용할 수 없는 문자 사이에 공백을 만듭니다.", "Common.Controllers.Shortcuts.txtDescriptionOpenChatPanel": "Open the Chat panel in the Online Editors and send a message.", "Common.Controllers.Shortcuts.txtDescriptionOpenCommentField": "Open a data entry field where you can add the text of your comment.", "Common.Controllers.Shortcuts.txtDescriptionOpenCommentsPanel": "Open the Comments panel to add your own comment or reply to other users' comments.", @@ -198,14 +198,14 @@ "Common.Controllers.Shortcuts.txtDescriptionOpenFindDialog": "Open the Find dialog window to start searching for a character/word/phrase in the currently edited document.", "Common.Controllers.Shortcuts.txtDescriptionOpenHelpMenu": "Open the Document Editor Help menu.", "Common.Controllers.Shortcuts.txtDescriptionPaste": "Insert the previously copied text fragment from the computer clipboard memory to the current cursor position. The text can be previously copied from the same document, from another document, or from some other program.", - "Common.Controllers.Shortcuts.txtDescriptionPasteFormat": "Apply the previously copied formatting to the text in the currently edited document.", + "Common.Controllers.Shortcuts.txtDescriptionPasteFormat": "현재 편집 중인 문서의 텍스트에 직전에 복사된 포맷 적용하기", "Common.Controllers.Shortcuts.txtDescriptionPasteTextWithoutFormat": "Insert the previously copied text fragment from the computer clipboard memory to the current cursor position without preserving its original formatting. The text can be previously copied from the same document, from another document, or from some other program.", "Common.Controllers.Shortcuts.txtDescriptionPreviousFileTab": "Switch to the previous file tab in Desktop Editors or browser tab in Online Editors.", "Common.Controllers.Shortcuts.txtDescriptionPreviousModalControl": "Navigate between controls to give focus to the previous control in modal dialogues.", "Common.Controllers.Shortcuts.txtDescriptionPrintPreviewAndPrint": "Print the document with one of the available printers or save it as a file.", "Common.Controllers.Shortcuts.txtDescriptionRegisteredSign": "Insert the registered trademark sign at the current cursor position.", "Common.Controllers.Shortcuts.txtDescriptionReplaceUnicodeToSymbol": "Replace the selected Unicode code with a symbol.", - "Common.Controllers.Shortcuts.txtDescriptionResetChar": "Clear formatting of the selected text fragment.", + "Common.Controllers.Shortcuts.txtDescriptionResetChar": "선택한 텍스트 조각의 서식을 지웁니다.", "Common.Controllers.Shortcuts.txtDescriptionRightPara": "Switch a paragraph between right-aligned and left-aligned.", "Common.Controllers.Shortcuts.txtDescriptionSave": "Save all the changes to the document currently edited with the Document Editor. The active file will be saved with its current file name, location, and file format.", "Common.Controllers.Shortcuts.txtDescriptionSaveAs": "Open the Download as... panel to save the currently edited document to the hard disk drive of your computer in one of the supported formats.", @@ -231,9 +231,9 @@ "Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsKeepTextOnly": "Paste the text without its original formatting.", "Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsNestTable": "Paste the copied table as a nested table into the selected cell of the existing table.", "Common.Controllers.Shortcuts.txtDescriptionSpecialOptionsOverwriteCells": "Replace the contents of the existing table with the copied data.", - "Common.Controllers.Shortcuts.txtDescriptionSpeechWorker": "Enables/disables the transmission of actions performed in the application for screen readers.", + "Common.Controllers.Shortcuts.txtDescriptionSpeechWorker": "애플리케이션에서 수행된 작업의 화면 판독기 전송을 활성화/비활성화합니다.", "Common.Controllers.Shortcuts.txtDescriptionStartIndent": "Increase the list/indent level (with the cursor at the beginning of a paragraph).", - "Common.Controllers.Shortcuts.txtDescriptionStartUnIndent": "Decrease the list/indent level (with the cursor at the beginning of a paragraph).", + "Common.Controllers.Shortcuts.txtDescriptionStartUnIndent": "목록/들여쓰기 수준을 낮춥니다(커서를 문단의 시작 부분에 두었을 때).", "Common.Controllers.Shortcuts.txtDescriptionStrikeout": "Make the selected text fragment struck out with a line going through the letters.", "Common.Controllers.Shortcuts.txtDescriptionSubscript": "Make the selected text fragment smaller and place it to the lower part of the text line, e.g. as in chemical formulas.", "Common.Controllers.Shortcuts.txtDescriptionSuperscript": "Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions.", @@ -255,22 +255,22 @@ "Common.Controllers.Shortcuts.txtLabelBigMoveObjectRight": "BigMoveObjectRight", "Common.Controllers.Shortcuts.txtLabelBigMoveObjectUp": "BigMoveObjectUp", "Common.Controllers.Shortcuts.txtLabelBold": "Bold", - "Common.Controllers.Shortcuts.txtLabelCenterPara": "CenterPara", - "Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption": "ChooseNextComboBoxOption", - "Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption": "ChoosePreviousComboBoxOption", - "Common.Controllers.Shortcuts.txtLabelCloseFile": "CloseFile", - "Common.Controllers.Shortcuts.txtLabelCloseMenu": "CloseMenu", - "Common.Controllers.Shortcuts.txtLabelCopy": "Copy", - "Common.Controllers.Shortcuts.txtLabelCopyFormat": "CopyFormat", - "Common.Controllers.Shortcuts.txtLabelCopyrightSign": "CopyrightSign", - "Common.Controllers.Shortcuts.txtLabelCut": "Cut", - "Common.Controllers.Shortcuts.txtLabelDecreaseFontSize": "DecreaseFontSize", - "Common.Controllers.Shortcuts.txtLabelDeleteLeftChar": "DeleteLeftChar", - "Common.Controllers.Shortcuts.txtLabelDeleteLeftWord": "DeleteLeftWord", - "Common.Controllers.Shortcuts.txtLabelDeleteRightChar": "DeleteRightChar", - "Common.Controllers.Shortcuts.txtLabelDeleteRightWord": "DeleteRightWord", - "Common.Controllers.Shortcuts.txtLabelEditChart": "EditChart", - "Common.Controllers.Shortcuts.txtLabelEditRedo": "EditRedo", + "Common.Controllers.Shortcuts.txtLabelCenterPara": "문단 중간 정렬", + "Common.Controllers.Shortcuts.txtLabelChooseNextComboBoxOption": "다음 콤보박스 옵션 선택", + "Common.Controllers.Shortcuts.txtLabelChoosePreviousComboBoxOption": "이전 콤보 상자 옵션 선택", + "Common.Controllers.Shortcuts.txtLabelCloseFile": "파일 닫기", + "Common.Controllers.Shortcuts.txtLabelCloseMenu": "메뉴 닫기", + "Common.Controllers.Shortcuts.txtLabelCopy": "복사", + "Common.Controllers.Shortcuts.txtLabelCopyFormat": "복사 형식", + "Common.Controllers.Shortcuts.txtLabelCopyrightSign": "저작권 표시", + "Common.Controllers.Shortcuts.txtLabelCut": "자르기", + "Common.Controllers.Shortcuts.txtLabelDecreaseFontSize": "글꼴 크기 줄이기", + "Common.Controllers.Shortcuts.txtLabelDeleteLeftChar": "왼쪽 문자 삭제", + "Common.Controllers.Shortcuts.txtLabelDeleteLeftWord": "왼쪽 단어 삭제", + "Common.Controllers.Shortcuts.txtLabelDeleteRightChar": "오른쪽 문자 삭제", + "Common.Controllers.Shortcuts.txtLabelDeleteRightWord": "오른쪽 단어 삭제", + "Common.Controllers.Shortcuts.txtLabelEditChart": "차트편집", + "Common.Controllers.Shortcuts.txtLabelEditRedo": "편집 재실행", "Common.Controllers.Shortcuts.txtLabelEditSelectAll": "EditSelectAll", "Common.Controllers.Shortcuts.txtLabelEditShape": "EditShape", "Common.Controllers.Shortcuts.txtLabelEditUndo": "EditUndo", @@ -1177,10 +1177,10 @@ "Common.Views.ShapeShadowDialog.txtSize": "크기", "Common.Views.ShapeShadowDialog.txtTitle": "그림자 조정", "Common.Views.ShapeShadowDialog.txtTransparency": "투명도", - "Common.Views.ShortcutsDialog.txtDescription": "Description", + "Common.Views.ShortcutsDialog.txtDescription": "설명", "Common.Views.ShortcutsDialog.txtEmpty": "No matches found. Adjust your search.", "Common.Views.ShortcutsDialog.txtRestoreAll": "Restore All to Defaults", - "Common.Views.ShortcutsDialog.txtRestoreContinue": "Do you want to continue?", + "Common.Views.ShortcutsDialog.txtRestoreContinue": "계속하시겠습니까?", "Common.Views.ShortcutsDialog.txtRestoreDescription": "모든 단축키 설정이 초기상태로 복구될 것입니다.", "Common.Views.ShortcutsDialog.txtRestoreToDefault": "Restore to default", "Common.Views.ShortcutsDialog.txtSearch": "Search", @@ -1192,7 +1192,7 @@ "Common.Views.ShortcutsEditDialog.txtInputWarnOne": "%1 동작에 사용된 단축키", "Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked": "%1 동작에 사용된 단축키이고 변경할 수 없음", "Common.Views.ShortcutsEditDialog.txtNewShortcut": "새로운 단축키", - "Common.Views.ShortcutsEditDialog.txtRestoreContinue": "Do you want to continue?", + "Common.Views.ShortcutsEditDialog.txtRestoreContinue": "계속하시겠습니까?", "Common.Views.ShortcutsEditDialog.txtRestoreDescription": "\"%1\" 동작에 대한 단축키가 초기상태로 복구될 것입니다.", "Common.Views.ShortcutsEditDialog.txtRestoreToDefault": "Restore to default", "Common.Views.ShortcutsEditDialog.txtTitle": "단축키 편집", @@ -1736,10 +1736,10 @@ "DE.Controllers.Toolbar.dataUrl": "데이터 URL 붙여넣기", "DE.Controllers.Toolbar.errorAccessDeny": "권한이 없는 작업을 시도하고 있습니다.
문서 서버 관리자에게 문의하세요.", "DE.Controllers.Toolbar.fileUrl": "파일 URL 붙여넣기", - "DE.Controllers.Toolbar.helpChartElements": "Easily toggle the visibility of chart elements with several clicks.", - "DE.Controllers.Toolbar.helpChartElementsHeader": "Chart elements display", + "DE.Controllers.Toolbar.helpChartElements": "몇 번의 클릭만으로 차트 요소의 표시 여부를 쉽게 전환할 수 있습니다.", + "DE.Controllers.Toolbar.helpChartElementsHeader": "차트 요소 표시", "DE.Controllers.Toolbar.helpCommentFilter": "Manage your view by toggling between open and resolved comments in the left panel.", - "DE.Controllers.Toolbar.helpCommentFilterHeader": "Comment filters", + "DE.Controllers.Toolbar.helpCommentFilterHeader": "댓글 필터", "DE.Controllers.Toolbar.notcriticalErrorTitle": "경고", "DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textBracket": "대괄호", @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "매트릭스 정렬", "DE.Views.DocumentHolder.txtOverbar": "텍스트 위에 가로 막기", "DE.Views.DocumentHolder.txtOverwriteCells": "셀에 덮어쓰기", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "소스 포맷을 유지하세요", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "{0} 키를 누르고 링크를 클릭합니다.", @@ -2748,7 +2749,7 @@ "DE.Views.FileMenuPanels.Settings.txtCm": "센티미터", "DE.Views.FileMenuPanels.Settings.txtCollaboration": "협업", "DE.Views.FileMenuPanels.Settings.txtContext": "컨텍스트", - "DE.Views.FileMenuPanels.Settings.txtCustomize": "Customize", + "DE.Views.FileMenuPanels.Settings.txtCustomize": "사용자 정의", "DE.Views.FileMenuPanels.Settings.txtCustomizeQuickAccess": "빠른 실행 도구 모음 사용자 지정", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "문서 다크 모드 켜기", "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "편집 및 저장", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "그룹 키", "DE.Views.FormSettings.textImage": "이미지", "DE.Views.FormSettings.textKey": "키", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "언어", "DE.Views.FormSettings.textLetters": "편지", "DE.Views.FormSettings.textLock": "잠금", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "날짜 및 시간", "DE.Views.FormsTab.capZipCode": "우편 번호", "DE.Views.FormsTab.helpTextFillStatus": "이 양식은 역할 기반 작성이 가능합니다. 상태 버튼을 클릭하여 작성 단계를 확인하세요.", + "DE.Views.FormsTab.textAddRole": "수신자 추가", "DE.Views.FormsTab.textAnyone": "누구나", "DE.Views.FormsTab.textClear": "필드 지우기", "DE.Views.FormsTab.textClearFields": "모든 필드 지우기", "DE.Views.FormsTab.textCreateForm": "필드를 추가하여 작성 가능한 PDF 문서 작성", "DE.Views.FormsTab.textFilled": "작성됨", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "확인", "DE.Views.FormsTab.textHighlight": "강조 설정", "DE.Views.FormsTab.textNoHighlight": "강조 표시되지 않음", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "매크로", "DE.Views.ViewTab.textNavigation": "내비게이션", "DE.Views.ViewTab.textOutline": "제목", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "오른쪽 패널", "DE.Views.ViewTab.textRulers": "자", "DE.Views.ViewTab.textStatusBar": "상태 바", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "탭 스타일", "DE.Views.ViewTab.textZoom": "확대/축소", "DE.Views.ViewTab.tipDarkDocument": "어두운 문서", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "제목", "DE.Views.ViewTab.tipInterfaceTheme": "인터페이스 테마", "DE.Views.ViewTab.tipMacros": "매크로", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "자동", "DE.Views.WatermarkSettingsDialog.textBold": "굵게", "DE.Views.WatermarkSettingsDialog.textColor": "글꼴색", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "투명한", "DE.Views.WatermarkSettingsDialog.textUnderline": "밑줄", "DE.Views.WatermarkSettingsDialog.tipFontName": "글꼴 이름", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "글꼴 크기", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "글꼴 크기" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/lo.json b/apps/documenteditor/main/locale/lo.json index 4866f7817a..4d8f6bc8bf 100644 --- a/apps/documenteditor/main/locale/lo.json +++ b/apps/documenteditor/main/locale/lo.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "ຈັດລຽງ Matrix", "DE.Views.DocumentHolder.txtOverbar": "ຂີດທັບຕົວໜັງສື", "DE.Views.DocumentHolder.txtOverwriteCells": "ຂຽນທັບແຊວ", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "ຮັກສາຮູບແບບແຫຼ່ງຂໍ້ມູນ", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "ກົດ {0} ແລະກົດລິ້ງ", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "ກຸ່ມກະແຈ", "DE.Views.FormSettings.textImage": "ຮູບພາບ", "DE.Views.FormSettings.textKey": "ຄີ", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "ລັອກ", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "ລ້າງອອກ", "DE.Views.FormsTab.textClearFields": "ລຶບລ້າງຟີລດທັງໝົດ", "DE.Views.FormsTab.textCreateForm": "ເພີ່ມຊ່ອງຂໍ້ມູນ ແລະ ສ້າງເອກະສານ PDF ທີ່ສາມາດບັບແຕ່ງໄດ້", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "ໄດ້ແລ້ວ", "DE.Views.FormsTab.textHighlight": "ໄຮໄລການຕັ້ງຄ່າ", "DE.Views.FormsTab.textNoHighlight": "ບໍ່ມີຈຸດເດັ່ນ", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "ການນຳທາງ", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "ໄມ້ບັນທັດ", "DE.Views.ViewTab.textStatusBar": "ຮູບແບບບາ", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "ອັດຕະໂນມັດ", "DE.Views.WatermarkSettingsDialog.textBold": "ໂຕເຂັມ ", "DE.Views.WatermarkSettingsDialog.textColor": "ສີຂໍ້ຄວາມ", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "ຂີ້ດກ້ອງ", "DE.Views.WatermarkSettingsDialog.tipFontName": "ຊື່ຕົວອັກສອນ", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "ຂະໜາດຕົວອັກສອນ", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "ຂະໜາດຕົວອັກສອນ" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/lv.json b/apps/documenteditor/main/locale/lv.json index d460595fba..bf369cea7c 100644 --- a/apps/documenteditor/main/locale/lv.json +++ b/apps/documenteditor/main/locale/lv.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matricu līdzināšana", "DE.Views.DocumentHolder.txtOverbar": "Josla virs teksta", "DE.Views.DocumentHolder.txtOverwriteCells": "Pārrakstīt šūnas", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Atstāt sākotnējo formatējumu", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Nospiediet {0} un noklikšķiniet saiti", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Grupas atslēga", "DE.Views.FormSettings.textImage": "Attēls", "DE.Views.FormSettings.textKey": "Atslēga", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Valoda", "DE.Views.FormSettings.textLetters": "Vēstules", "DE.Views.FormSettings.textLock": "Bloķēt", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Datums & Laiks", "DE.Views.FormsTab.capZipCode": "Pasta indekss", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Jebkurš", "DE.Views.FormsTab.textClear": "Notīrīt lauku", "DE.Views.FormsTab.textClearFields": "Notīrīt visus laukus", "DE.Views.FormsTab.textCreateForm": "Pievienot laukus un izveidot aizpildāmu PDF dokumentu", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Sapratu", "DE.Views.FormsTab.textHighlight": "Izcelt iestatījumus", "DE.Views.FormsTab.textNoHighlight": "Bez izcelšanas", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigācija", "DE.Views.ViewTab.textOutline": "Virsraksti", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Labais panelis", "DE.Views.ViewTab.textRulers": "Mērjoslas", "DE.Views.ViewTab.textStatusBar": "Statusa josla", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Palielināšana", "DE.Views.ViewTab.tipDarkDocument": "Tumšs dokuments", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Virsraksti", "DE.Views.ViewTab.tipInterfaceTheme": "Interfeisa tēma", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automātiski", "DE.Views.WatermarkSettingsDialog.textBold": "Treknraksts", "DE.Views.WatermarkSettingsDialog.textColor": "Teksta krāsa", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Daļēji caurspīdīgs", "DE.Views.WatermarkSettingsDialog.textUnderline": "Pasvītrot", "DE.Views.WatermarkSettingsDialog.tipFontName": "Fonta nosaukums", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonta izmērs", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fonta izmērs" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index c175d3e6c8..42f1465101 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Penjajaran matriks", "DE.Views.DocumentHolder.txtOverbar": "Bar melepasi teks", "DE.Views.DocumentHolder.txtOverwriteCells": "Tulis Ganti Sel", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Kekalkan sumber pemformatan", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Tekan {0} dan klik pautan", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Kumpulan kunci", "DE.Views.FormSettings.textImage": "Imej", "DE.Views.FormSettings.textKey": "Kunci", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Surat", "DE.Views.FormSettings.textLock": "Kunci", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Kosongkan Medan", "DE.Views.FormsTab.textClearFields": "Kosongkan Semua Medan", "DE.Views.FormsTab.textCreateForm": "Tambah medan atau cipta dokumen PDF yang boleh diisi", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Faham", "DE.Views.FormsTab.textHighlight": "Seting Sorotan Penting", "DE.Views.FormsTab.textNoHighlight": "Tiada penyerlahan", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigasi", "DE.Views.ViewTab.textOutline": "Pengepala", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Pembaris", "DE.Views.ViewTab.textStatusBar": "Bar Status", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zum", "DE.Views.ViewTab.tipDarkDocument": "Dokumen gelap", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Pengepala", "DE.Views.ViewTab.tipInterfaceTheme": "Tema antara muka", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Tebal", "DE.Views.WatermarkSettingsDialog.textColor": "Warna teks", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Separa telus", "DE.Views.WatermarkSettingsDialog.textUnderline": "Garis bawah", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nama Fon", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Saiz Fon", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Saiz Fon" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 2afadb0998..a47f09724c 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrixuitlijning", "DE.Views.DocumentHolder.txtOverbar": "Streep boven tekst", "DE.Views.DocumentHolder.txtOverwriteCells": "Cellen overschrijven", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behoud bronopmaak", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Druk op {0} en klik op koppeling", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Groepssleutel", "DE.Views.FormSettings.textImage": "Afbeelding", "DE.Views.FormSettings.textKey": "Sleutel", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Opslot", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Datum & Tijd", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Iedereen", "DE.Views.FormsTab.textClear": "Velden wissen ", "DE.Views.FormsTab.textClearFields": "Wis alle velden", "DE.Views.FormsTab.textCreateForm": "Voeg velden toe en maak een invulbaar PDF document", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Begrepen", "DE.Views.FormsTab.textHighlight": "Markeer Instellingen", "DE.Views.FormsTab.textNoHighlight": "Geen accentuering", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigatie", "DE.Views.ViewTab.textOutline": "Koppen", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Linialen", "DE.Views.ViewTab.textStatusBar": "Statusbalk", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Inzoomen", "DE.Views.ViewTab.tipDarkDocument": "Donker document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatisch", "DE.Views.WatermarkSettingsDialog.textBold": "Vet", "DE.Views.WatermarkSettingsDialog.textColor": "Tekstkleur", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "semi-transparant", "DE.Views.WatermarkSettingsDialog.textUnderline": "Onderstreept", "DE.Views.WatermarkSettingsDialog.tipFontName": "Lettertype", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tekengrootte", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tekengrootte" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/no.json b/apps/documenteditor/main/locale/no.json index 5a1f21ec76..000d6994e9 100644 --- a/apps/documenteditor/main/locale/no.json +++ b/apps/documenteditor/main/locale/no.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", "DE.Views.DocumentHolder.txtOverbar": "Linje over teksten", "DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Press {0} and click link", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Group key", "DE.Views.FormSettings.textImage": "Bilde", "DE.Views.FormSettings.textKey": "Key", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Lock", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Dato og tidspunkt", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Hvemsomhelst", "DE.Views.FormsTab.textClear": "Clear Fields", "DE.Views.FormsTab.textClearFields": "Clear All Fields", "DE.Views.FormsTab.textCreateForm": "Legg til felt og lag et utfyllbart PDF-dokument", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Got it", "DE.Views.FormsTab.textHighlight": "Highlight Settings", "DE.Views.FormsTab.textNoHighlight": "No highlighting", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigasjon", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Fet", "DE.Views.WatermarkSettingsDialog.textColor": "Text color", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Understreking", "DE.Views.WatermarkSettingsDialog.tipFontName": "Font name", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index 5ce48f25d9..487dfa6544 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Wyrównanie macierzy", "DE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", "DE.Views.DocumentHolder.txtOverwriteCells": "Wymień zawartość komórki", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Zachowaj formatowanie źródłowe", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Naciśnij {0} i kliknij w link", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Klucz grupy", "DE.Views.FormSettings.textImage": "Obraz", "DE.Views.FormSettings.textKey": "Klucz", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Język", "DE.Views.FormSettings.textLetters": "Litery", "DE.Views.FormSettings.textLock": "Zablokować", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data i czas", "DE.Views.FormsTab.capZipCode": "Kod pocztowy", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Każdy", "DE.Views.FormsTab.textClear": "Wyczyść pola", "DE.Views.FormsTab.textClearFields": "Wyczyść wszystkie pola", "DE.Views.FormsTab.textCreateForm": "Dodaj pola i utwórz dokument PDF z możliwością wypełnienia", "DE.Views.FormsTab.textFilled": "Wypełnione", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Rozumiem", "DE.Views.FormsTab.textHighlight": "Ustawienia wyróżniania", "DE.Views.FormsTab.textNoHighlight": "Brak wyróżnienia", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Nawigacja", "DE.Views.ViewTab.textOutline": "Nagłówki", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Prawy panel", "DE.Views.ViewTab.textRulers": "Linijki", "DE.Views.ViewTab.textStatusBar": "Pasek stanu", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Styl zakładki", "DE.Views.ViewTab.textZoom": "Powiększenie", "DE.Views.ViewTab.tipDarkDocument": "Ciemny dokument", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Nagłówki", "DE.Views.ViewTab.tipInterfaceTheme": "Motyw interfejsu", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automatyczny", "DE.Views.WatermarkSettingsDialog.textBold": "Pogrubienie", "DE.Views.WatermarkSettingsDialog.textColor": "Kolor tekstu", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Półprzezroczysty", "DE.Views.WatermarkSettingsDialog.textUnderline": "Podkreślenie", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nazwa czcionki", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Rozmiar czcionki", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Rozmiar czcionki" } \ 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 9163fd2e8b..e1daf43921 100644 --- a/apps/documenteditor/main/locale/pt-pt.json +++ b/apps/documenteditor/main/locale/pt-pt.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Alinhamento de matriz", "DE.Views.DocumentHolder.txtOverbar": "Barra por cima do texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Substituir células", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação original", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Prima {0} e clique na ligação", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Agrupar chave", "DE.Views.FormSettings.textImage": "Imagem", "DE.Views.FormSettings.textKey": "Chave", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Idioma", "DE.Views.FormSettings.textLetters": "Letras", "DE.Views.FormSettings.textLock": "Bloquear", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data e Hora", "DE.Views.FormsTab.capZipCode": "Código postal", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Alguém", "DE.Views.FormsTab.textClear": "Limpar campos", "DE.Views.FormsTab.textClearFields": "Limpar todos os campos", "DE.Views.FormsTab.textCreateForm": "Adicione campos e crie um documento PDF preenchível", "DE.Views.FormsTab.textFilled": "Preenchido", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Percebi", "DE.Views.FormsTab.textHighlight": "Definições de destaque", "DE.Views.FormsTab.textNoHighlight": "Sem realce", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navegação", "DE.Views.ViewTab.textOutline": "Títulos", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Painel direito", "DE.Views.ViewTab.textRulers": "Réguas", "DE.Views.ViewTab.textStatusBar": "Barra de estado", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Ampliação", "DE.Views.ViewTab.tipDarkDocument": "Documento escuro", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Títulos", "DE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automático", "DE.Views.WatermarkSettingsDialog.textBold": "Negrito", "DE.Views.WatermarkSettingsDialog.textColor": "Cor do texto", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semi-transparente", "DE.Views.WatermarkSettingsDialog.textUnderline": "Sublinhado", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nome do tipo de letra", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho do tipo de letra", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho do tipo de letra" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 097ac98cd6..96081ce78b 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Alinhamento de matriz", "DE.Views.DocumentHolder.txtOverbar": "Barra sobre texto", "DE.Views.DocumentHolder.txtOverwriteCells": "Sobrescrever células", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Manter formatação da origem", "DE.Views.DocumentHolder.txtPercentage": "Porcentagem", "DE.Views.DocumentHolder.txtPressLink": "Pressione {0} e clique no link", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Chave de grupo", "DE.Views.FormSettings.textImage": "Imagem", "DE.Views.FormSettings.textKey": "Chave", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Idioma", "DE.Views.FormSettings.textLetters": "Cartas", "DE.Views.FormSettings.textLock": "Bloquear", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data e Hora", "DE.Views.FormsTab.capZipCode": "CEP", "DE.Views.FormsTab.helpTextFillStatus": "Este formulário está pronto para preenchimento baseado em função. Clique no botão de status para verificar o estágio de preenchimento.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Alguém", "DE.Views.FormsTab.textClear": "Limpar campos.", "DE.Views.FormsTab.textClearFields": "Limpar todos os campos", "DE.Views.FormsTab.textCreateForm": "Adicione campos e crie um documento PDF preenchível", "DE.Views.FormsTab.textFilled": "Preenchido", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Entendi", "DE.Views.FormsTab.textHighlight": "Configurações de destaque", "DE.Views.FormsTab.textNoHighlight": "Sem destaque", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navegação", "DE.Views.ViewTab.textOutline": "Cabeçalhos", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Painel direito", "DE.Views.ViewTab.textRulers": "Regras", "DE.Views.ViewTab.textStatusBar": "Barra de status", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Estilo da guia", "DE.Views.ViewTab.textZoom": "Ampliação", "DE.Views.ViewTab.tipDarkDocument": "Documento escuro", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Títulos", "DE.Views.ViewTab.tipInterfaceTheme": "Tema de interface", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automático", "DE.Views.WatermarkSettingsDialog.textBold": "Negrito", "DE.Views.WatermarkSettingsDialog.textColor": "Cor do texto", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparente", "DE.Views.WatermarkSettingsDialog.textUnderline": "Sublinhar", "DE.Views.WatermarkSettingsDialog.tipFontName": "Nome da Fonte", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho da fonte", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Tamanho da fonte" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index c2d9335864..bd5086986f 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -2425,7 +2425,7 @@ "DE.Views.DocumentHolder.textReject": "Respingenți această modificare", "DE.Views.DocumentHolder.textRemCheckBox": "Eliminare control casetă de selectare", "DE.Views.DocumentHolder.textRemComboBox": "Eliminare control casetă combo", - "DE.Views.DocumentHolder.textRemDropdown": "Eliminare listă verticală", + "DE.Views.DocumentHolder.textRemDropdown": "Eliminare listă derulantă", "DE.Views.DocumentHolder.textRemField": "Eliminare control câmp text", "DE.Views.DocumentHolder.textRemove": "Ștergere", "DE.Views.DocumentHolder.textRemoveControl": "Eliminare control de conținut", @@ -2807,7 +2807,7 @@ "DE.Views.FormSettings.textDelete": "Ștergere", "DE.Views.FormSettings.textDigits": "Cifre", "DE.Views.FormSettings.textDisconnect": "Deconectare", - "DE.Views.FormSettings.textDropDown": "Derulant", + "DE.Views.FormSettings.textDropDown": "Listă derulantă", "DE.Views.FormSettings.textExact": "Exact", "DE.Views.FormSettings.textField": "Câmp text", "DE.Views.FormSettings.textFillRoles": "Cine trebuie să completeze?", @@ -2859,7 +2859,7 @@ "DE.Views.FormsTab.capBtnComboBox": "Casetă combo", "DE.Views.FormsTab.capBtnComplex": "Câmp complex", "DE.Views.FormsTab.capBtnDownloadForm": "Descărcare ca PDF", - "DE.Views.FormsTab.capBtnDropDown": "Derulant", + "DE.Views.FormsTab.capBtnDropDown": "Listă derulantă", "DE.Views.FormsTab.capBtnEmail": "Adresă de e-mail", "DE.Views.FormsTab.capBtnFinal": "Marcare ca final", "DE.Views.FormsTab.capBtnImage": "Imagine", @@ -2878,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Dată și oră", "DE.Views.FormsTab.capZipCode": "Cod poștal", "DE.Views.FormsTab.helpTextFillStatus": "Formularul este gata să fie completat pe bază de roluri. Faceți clic pe butonul stare pentru a verifica etapele de completare.", + "DE.Views.FormsTab.textAddRole": "Adăugare destinatar", "DE.Views.FormsTab.textAnyone": "Orice utilizator", "DE.Views.FormsTab.textClear": "Golirea câmpurilor", "DE.Views.FormsTab.textClearFields": "Goleşte toate câmpurile", "DE.Views.FormsTab.textCreateForm": "Adăugați câmpurile și creați un fișier PDF spre completare", "DE.Views.FormsTab.textFilled": "Completat", + "DE.Views.FormsTab.textFillFor": "Inserare câmpuri pentru", "DE.Views.FormsTab.textGotIt": "Am înțeles", "DE.Views.FormsTab.textHighlight": "Evidențiere setări", "DE.Views.FormsTab.textNoHighlight": "Fără evidențiere", @@ -2896,7 +2898,7 @@ "DE.Views.FormsTab.tipCreditCard": "Inserare numărul cardului de credit", "DE.Views.FormsTab.tipDateTime": "Inserare dată și oră", "DE.Views.FormsTab.tipDownloadForm": "Descărcare ca un fișer PDF spre completare", - "DE.Views.FormsTab.tipDropDown": "Inserare listă verticală", + "DE.Views.FormsTab.tipDropDown": "Inserare listă derulantă", "DE.Views.FormsTab.tipEmailField": "Inserare adresă e-mail", "DE.Views.FormsTab.tipFieldSettings": "Puteți configura câmpurile selectate pe bara laterală din dreapta. Faceți clic pe acestă pictogramă pentru a deschide setările de câmp.", "DE.Views.FormsTab.tipFieldsLink": "Aflați mai multe despre setările de câmp", @@ -4246,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macrocomandă", "DE.Views.ViewTab.textNavigation": "Navigare", "DE.Views.ViewTab.textOutline": "Titluri", + "DE.Views.ViewTab.textPauseMacro": "Înregistrare în pauză", + "DE.Views.ViewTab.textRecMacro": "Înregistrare macrocomandă", + "DE.Views.ViewTab.textResumeMacro": "Reluare înregistrare", "DE.Views.ViewTab.textRightMenu": "Panou dreapta", "DE.Views.ViewTab.textRulers": "Rigle", "DE.Views.ViewTab.textStatusBar": "Bară de stare", + "DE.Views.ViewTab.textStopMacro": "Oprire înregistrare", "DE.Views.ViewTab.textTabStyle": "Stil filă", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Document întunecat", @@ -4257,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Titluri", "DE.Views.ViewTab.tipInterfaceTheme": "Tema interfeței", "DE.Views.ViewTab.tipMacros": "Macrocomandă", + "DE.Views.ViewTab.tipPauseMacro": "Înregistrare în pauză", + "DE.Views.ViewTab.tipRecMacro": "Înregistrare macrocomandă", + "DE.Views.ViewTab.tipResumeMacro": "Reluare înregistrare", + "DE.Views.ViewTab.tipStopMacro": "Oprire înregistrare", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Aldin", "DE.Views.WatermarkSettingsDialog.textColor": "Culoare text", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index fffe812be5..a1c0f1ba55 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -2878,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Дата и время", "DE.Views.FormsTab.capZipCode": "Индекс", "DE.Views.FormsTab.helpTextFillStatus": "Эта форма готова к заполнению по ролям. Нажмите на кнопку статуса, чтобы проверить стадию заполнения.", + "DE.Views.FormsTab.textAddRole": "Добавить получателя", "DE.Views.FormsTab.textAnyone": "Любой", "DE.Views.FormsTab.textClear": "Очистить поля", "DE.Views.FormsTab.textClearFields": "Очистить все поля", "DE.Views.FormsTab.textCreateForm": "Добавьте поля и создайте заполняемый документ PDF", "DE.Views.FormsTab.textFilled": "Заполнено", + "DE.Views.FormsTab.textFillFor": "Вставить поля для", "DE.Views.FormsTab.textGotIt": "ОК", "DE.Views.FormsTab.textHighlight": "Цвет подсветки", "DE.Views.FormsTab.textNoHighlight": "Без подсветки", @@ -4246,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Макросы", "DE.Views.ViewTab.textNavigation": "Навигация", "DE.Views.ViewTab.textOutline": "Заголовки", + "DE.Views.ViewTab.textPauseMacro": "Приостановить запись", + "DE.Views.ViewTab.textRecMacro": "Записать макрос", + "DE.Views.ViewTab.textResumeMacro": "Возобновить запись", "DE.Views.ViewTab.textRightMenu": "Правая панель", "DE.Views.ViewTab.textRulers": "Линейки", "DE.Views.ViewTab.textStatusBar": "Строка состояния", + "DE.Views.ViewTab.textStopMacro": "Остановить запись", "DE.Views.ViewTab.textTabStyle": "Стиль вкладки", "DE.Views.ViewTab.textZoom": "Масштаб", "DE.Views.ViewTab.tipDarkDocument": "Темный документ", @@ -4257,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Заголовки", "DE.Views.ViewTab.tipInterfaceTheme": "Тема интерфейса", "DE.Views.ViewTab.tipMacros": "Макросы", + "DE.Views.ViewTab.tipPauseMacro": "Приостановить запись", + "DE.Views.ViewTab.tipRecMacro": "Записать макрос", + "DE.Views.ViewTab.tipResumeMacro": "Возобновить запись", + "DE.Views.ViewTab.tipStopMacro": "Остановить запись", "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Полужирный", "DE.Views.WatermarkSettingsDialog.textColor": "Цвет текста", diff --git a/apps/documenteditor/main/locale/si.json b/apps/documenteditor/main/locale/si.json index 684c570886..283154a963 100644 --- a/apps/documenteditor/main/locale/si.json +++ b/apps/documenteditor/main/locale/si.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "න්‍යාසය පෙළගැන්නුම", "DE.Views.DocumentHolder.txtOverbar": "පෙළ මතින් තීරුව", "DE.Views.DocumentHolder.txtOverwriteCells": "කෝෂ මතින් ලිවීම", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "මූලාශ්‍ර ආකෘතිය තබාගන්න", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "{0} තද කරගෙන සබැඳිය ඔබන්න", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "සමූහයේ යතුර", "DE.Views.FormSettings.textImage": "රූපය", "DE.Views.FormSettings.textKey": "යතුර", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "භාෂාව", "DE.Views.FormSettings.textLetters": "අකුරු", "DE.Views.FormSettings.textLock": "අගුල", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "දිනය සහ වේලාව", "DE.Views.FormsTab.capZipCode": "තැපැල් කේතය", "DE.Views.FormsTab.helpTextFillStatus": "භූමිකාව පදනම් පිරවීම සඳහා මෙම ආකෘතිපත්‍රය සූදානම්. පිරවුම් අදියර පරික්‍ෂාවට තත්‍වය බොත්තම ඔබන්න.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "සැමටම", "DE.Views.FormsTab.textClear": "ක්‍ෂේත්‍ර හිස්කරන්න", "DE.Views.FormsTab.textClearFields": "සියළු ක්‍ෂේත්‍ර හිස්කරන්න", "DE.Views.FormsTab.textCreateForm": "ක්‍ෂේත්‍ර එකතු කර පිරවිය හැකි පීඩීඑෆ් ලේඛනයක් සාදන්න", "DE.Views.FormsTab.textFilled": "පුරවා ඇත", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "තේරුණා", "DE.Views.FormsTab.textHighlight": "තීව්‍රාලෝක සැකසුම් ", "DE.Views.FormsTab.textNoHighlight": "ත්‍රීවාලෝක නැත", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "සාර්ව", "DE.Views.ViewTab.textNavigation": "යාත්‍රණය", "DE.Views.ViewTab.textOutline": "ශ්‍රීර්ෂනාම", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "දකුණු මඬල", "DE.Views.ViewTab.textRulers": "කෝදු", "DE.Views.ViewTab.textStatusBar": "තත්‍ව තීරුව", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "පටිති ශෛලිය", "DE.Views.ViewTab.textZoom": "විශාල කරන්න", "DE.Views.ViewTab.tipDarkDocument": "අඳුරු ලේඛනය", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "ශ්‍රීර්ෂනාම", "DE.Views.ViewTab.tipInterfaceTheme": "අතුරුමුහුණතේ තේමාව", "DE.Views.ViewTab.tipMacros": "සාර්ව", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "ස්වයං", "DE.Views.WatermarkSettingsDialog.textBold": "තද", "DE.Views.WatermarkSettingsDialog.textColor": "පෙළ පාට", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "අර්ධ පාරදෘශ්‍යතාව", "DE.Views.WatermarkSettingsDialog.textUnderline": "යටිඉර", "DE.Views.WatermarkSettingsDialog.tipFontName": "රුවකුරේ නම", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "රුවකුරේ තරම", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "රුවකුරේ තරම" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index 2e9c5149a3..938daa4cd1 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Zarovnanie matice", "DE.Views.DocumentHolder.txtOverbar": "Čiara nad textom", "DE.Views.DocumentHolder.txtOverwriteCells": "Prepísať bunky", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Uchovať zdrojové formátovanie", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Stlačte {0} a kliknite na odkaz", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Skupinový kľúč", "DE.Views.FormSettings.textImage": "Obrázok", "DE.Views.FormSettings.textKey": "Kľúč", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Uzamknúť", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Vyčistiť políčka", "DE.Views.FormsTab.textClearFields": "Vyčistiť všetky polia", "DE.Views.FormsTab.textCreateForm": "Pridať polia a vytvoriť dokument PDF z možnosťou vyplnenia. ", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Rozumiem", "DE.Views.FormsTab.textHighlight": "Nastavenia zvýraznenia", "DE.Views.FormsTab.textNoHighlight": "Bez zvýraznenia", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigácia", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Pravítka", "DE.Views.ViewTab.textStatusBar": "Stavový riadok", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Priblížiť", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Automaticky", "DE.Views.WatermarkSettingsDialog.textBold": "Tučné", "DE.Views.WatermarkSettingsDialog.textColor": "Farba textu", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Polopriehľadný", "DE.Views.WatermarkSettingsDialog.textUnderline": "Podčiarknutie", "DE.Views.WatermarkSettingsDialog.tipFontName": "Názov písma", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veľkosť písma", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veľkosť písma" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index 21554abe88..2b56bc7407 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrix alignment", "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Ohrani izvorno oblikovanje", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Pritisnite {0} in pritisnite povezavo", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Group key", "DE.Views.FormSettings.textImage": "Slika", "DE.Views.FormSettings.textKey": "Key", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Lock", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Date & Time", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Vsi", "DE.Views.FormsTab.textClear": "Počisti polja", "DE.Views.FormsTab.textClearFields": "Počisti vsa polja", "DE.Views.FormsTab.textCreateForm": "Dodaj polja in ustvari PDF obrazec", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Got it", "DE.Views.FormsTab.textHighlight": "Highlight Settings", "DE.Views.FormsTab.textNoHighlight": "No highlighting", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Naslovi", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Povečava", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Naslovi", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Samodejno", "DE.Views.WatermarkSettingsDialog.textBold": "Krepko", "DE.Views.WatermarkSettingsDialog.textColor": "Barva besedila", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Underline", "DE.Views.WatermarkSettingsDialog.tipFontName": "Ime pisave", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost pisave", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Velikost pisave" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sq.json b/apps/documenteditor/main/locale/sq.json index 6425bc4975..65e236614d 100644 --- a/apps/documenteditor/main/locale/sq.json +++ b/apps/documenteditor/main/locale/sq.json @@ -2878,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Data & Ora", "DE.Views.FormsTab.capZipCode": "Kodi postal", "DE.Views.FormsTab.helpTextFillStatus": "Ky formular është gati për plotësim bazuar në rolin. Klikoni në butonin e statusit për të kontrolluar fazën e plotësimit.", + "DE.Views.FormsTab.textAddRole": "Shtoni marrësin", "DE.Views.FormsTab.textAnyone": "Kushdo", "DE.Views.FormsTab.textClear": "Pastroni fushtat", "DE.Views.FormsTab.textClearFields": "Pastroni të gjithë fushat", "DE.Views.FormsTab.textCreateForm": "Shtoni fusha dhe krijoni një PDF që mund të mbushet", "DE.Views.FormsTab.textFilled": "E mbushur", + "DE.Views.FormsTab.textFillFor": "Vendos fushat për", "DE.Views.FormsTab.textGotIt": "E kuptova", "DE.Views.FormsTab.textHighlight": "Cilësimet e theksimit", "DE.Views.FormsTab.textNoHighlight": "Pa theksim", @@ -4246,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Makrot", "DE.Views.ViewTab.textNavigation": "Navigim", "DE.Views.ViewTab.textOutline": "Tituj", + "DE.Views.ViewTab.textPauseMacro": "Ndërprit regjistrimin", + "DE.Views.ViewTab.textRecMacro": "Regjistro makronë", + "DE.Views.ViewTab.textResumeMacro": "Rifillo regjistrimin", "DE.Views.ViewTab.textRightMenu": "Paneli i djathtë", "DE.Views.ViewTab.textRulers": "Vizoret", "DE.Views.ViewTab.textStatusBar": "Statusi i shiritit", + "DE.Views.ViewTab.textStopMacro": "Ndalo regjistrimin", "DE.Views.ViewTab.textTabStyle": "Stili i skedës", "DE.Views.ViewTab.textZoom": "Zmadhoj", "DE.Views.ViewTab.tipDarkDocument": "Dokument i errët", @@ -4257,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Tituj", "DE.Views.ViewTab.tipInterfaceTheme": "Temë e ndërfaqes", "DE.Views.ViewTab.tipMacros": "Makrot", + "DE.Views.ViewTab.tipPauseMacro": "Ndërprit regjistrimin", + "DE.Views.ViewTab.tipRecMacro": "Regjistro makronë", + "DE.Views.ViewTab.tipResumeMacro": "Rifillo regjistrimin", + "DE.Views.ViewTab.tipStopMacro": "Ndalo regjistrimin", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "I zi", "DE.Views.WatermarkSettingsDialog.textColor": "Ngjyra e tekstit", diff --git a/apps/documenteditor/main/locale/sr-cyrl.json b/apps/documenteditor/main/locale/sr-cyrl.json index bd0b146055..2f2af73fc3 100644 --- a/apps/documenteditor/main/locale/sr-cyrl.json +++ b/apps/documenteditor/main/locale/sr-cyrl.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Поравнање матрице", "DE.Views.DocumentHolder.txtOverbar": "Трака преко текста", "DE.Views.DocumentHolder.txtOverwriteCells": "Преписи ћелија", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Настави форматирање извора", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Притисните {0} и кликните на линк", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Кључ групе", "DE.Views.FormSettings.textImage": "Слика", "DE.Views.FormSettings.textKey": "Кључ", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Језик", "DE.Views.FormSettings.textLetters": "Слова", "DE.Views.FormSettings.textLock": "Закључано", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Датум & Време", "DE.Views.FormsTab.capZipCode": "ZIP код", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Било ко", "DE.Views.FormsTab.textClear": "Уклони поља", "DE.Views.FormsTab.textClearFields": "Уклони сва поља", "DE.Views.FormsTab.textCreateForm": "Додај поља и креирај допуњујући PDF документ", "DE.Views.FormsTab.textFilled": "Попуњено", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Разумем", "DE.Views.FormsTab.textHighlight": "Истакни подешавања", "DE.Views.FormsTab.textNoHighlight": "Без истицања", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Макрои", "DE.Views.ViewTab.textNavigation": "Навигација", "DE.Views.ViewTab.textOutline": "Наслови", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Десни панел", "DE.Views.ViewTab.textRulers": "Лењири", "DE.Views.ViewTab.textStatusBar": "Статусна трака", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Стил картице", "DE.Views.ViewTab.textZoom": "Зумирај", "DE.Views.ViewTab.tipDarkDocument": "Тамни документ", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Наслови", "DE.Views.ViewTab.tipInterfaceTheme": "Тема интерфејса", "DE.Views.ViewTab.tipMacros": "Макрои", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Ауто", "DE.Views.WatermarkSettingsDialog.textBold": "Подебљано", "DE.Views.WatermarkSettingsDialog.textColor": "Текст боја", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Полупровидно", "DE.Views.WatermarkSettingsDialog.textUnderline": "Подвуци", "DE.Views.WatermarkSettingsDialog.tipFontName": "Назив фонта", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Величина фонта", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Величина фонта" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sr.json b/apps/documenteditor/main/locale/sr.json index 9adc2e8b88..14739d1e58 100644 --- a/apps/documenteditor/main/locale/sr.json +++ b/apps/documenteditor/main/locale/sr.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Poravnanje matrice", "DE.Views.DocumentHolder.txtOverbar": "Traka preko teksta", "DE.Views.DocumentHolder.txtOverwriteCells": "Prepisi ćelija", + "DE.Views.DocumentHolder.txtPastePicture": "Slika", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Nastavi formatiranje izvora", "DE.Views.DocumentHolder.txtPercentage": "Procenat", "DE.Views.DocumentHolder.txtPressLink": "Pritisnite {0} i kliknite na link", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Ključ grupe", "DE.Views.FormSettings.textImage": "Slika", "DE.Views.FormSettings.textKey": "Ključ", + "DE.Views.FormSettings.textLabel": "Etiketa", "DE.Views.FormSettings.textLang": "Jezik", "DE.Views.FormSettings.textLetters": "Slova", "DE.Views.FormSettings.textLock": "Zaključano ", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Datum & Vreme", "DE.Views.FormsTab.capZipCode": "ZIP kod", "DE.Views.FormsTab.helpTextFillStatus": "Ovaj obrazac je spreman za popunjavanje na osnovu uloge. Kliknite na dugme za status da biste proverili fazu popunjavanja.", + "DE.Views.FormsTab.textAddRole": "Dodaj primaoca", "DE.Views.FormsTab.textAnyone": "Bilo ko", "DE.Views.FormsTab.textClear": "Ukloni Polja", "DE.Views.FormsTab.textClearFields": "Ukloni Sva Polja", "DE.Views.FormsTab.textCreateForm": "Dodaj polja i kreiraj dopunjujući PDF dokument", "DE.Views.FormsTab.textFilled": "Popunjeno", + "DE.Views.FormsTab.textFillFor": "Umetnite polja za", "DE.Views.FormsTab.textGotIt": "Razumem", "DE.Views.FormsTab.textHighlight": "Istakni Podešavanja", "DE.Views.FormsTab.textNoHighlight": "Bez isticanja", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Makroi", "DE.Views.ViewTab.textNavigation": "Navigacija ", "DE.Views.ViewTab.textOutline": "Naslovi", + "DE.Views.ViewTab.textPauseMacro": "Pauzirajte snimanje", + "DE.Views.ViewTab.textRecMacro": "Snimite makro", + "DE.Views.ViewTab.textResumeMacro": "Nastavite snimanje", "DE.Views.ViewTab.textRightMenu": "Desni Panel", "DE.Views.ViewTab.textRulers": "Lenjiri", "DE.Views.ViewTab.textStatusBar": "Statusna Traka", + "DE.Views.ViewTab.textStopMacro": "Prekinite snimanje", "DE.Views.ViewTab.textTabStyle": "Stil kartice", "DE.Views.ViewTab.textZoom": "Zumiraj", "DE.Views.ViewTab.tipDarkDocument": "Tamni dokument", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Naslovi", "DE.Views.ViewTab.tipInterfaceTheme": "Tema interfejsa", "DE.Views.ViewTab.tipMacros": "Makroi", + "DE.Views.ViewTab.tipPauseMacro": "Pauzirajte snimanje", + "DE.Views.ViewTab.tipRecMacro": "Snimite makro", + "DE.Views.ViewTab.tipResumeMacro": "Nastavite snimanje", + "DE.Views.ViewTab.tipStopMacro": "Prekinite snimanje", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Podebljano", "DE.Views.WatermarkSettingsDialog.textColor": "Boja teksta", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Poluprovidno", "DE.Views.WatermarkSettingsDialog.textUnderline": "Podvuci", "DE.Views.WatermarkSettingsDialog.tipFontName": "Naziv fonta ", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veličina fonta", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Veličina fonta" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 62b7fd9f95..9f117d746b 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matrisens justering", "DE.Views.DocumentHolder.txtOverbar": "Linje ovanför text", "DE.Views.DocumentHolder.txtOverwriteCells": "Skriv över celler", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Behåll källformatering", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Tryck på {0} och klicka på länken", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Gruppnyckel", "DE.Views.FormSettings.textImage": "Bild", "DE.Views.FormSettings.textKey": "Nyckel", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Språk", "DE.Views.FormSettings.textLetters": "Brev", "DE.Views.FormSettings.textLock": "Lås", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Datum & Tid", "DE.Views.FormsTab.capZipCode": "Postkod", "DE.Views.FormsTab.helpTextFillStatus": "Detta formulär är redo för att fyllas i enligt rollerna. Klicka på status knappen för att kontrollera fyllnadsgrad", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Vem som helst", "DE.Views.FormsTab.textClear": "Rensa fält", "DE.Views.FormsTab.textClearFields": "Rensa fält", "DE.Views.FormsTab.textCreateForm": "Lägg till fält och skapa ett ifyllbart PDF dokument", "DE.Views.FormsTab.textFilled": "Fylld", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Uppfattat", "DE.Views.FormsTab.textHighlight": "Markera inställningar", "DE.Views.FormsTab.textNoHighlight": "Ingen markering", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Makron", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Rubriker", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Höger panel", "DE.Views.ViewTab.textRulers": "Linjaler", "DE.Views.ViewTab.textStatusBar": "Statusmätare", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Flikstil", "DE.Views.ViewTab.textZoom": "Förstora", "DE.Views.ViewTab.tipDarkDocument": "Mörkt dokument", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Rubriker", "DE.Views.ViewTab.tipInterfaceTheme": "Gränssnittstema", "DE.Views.ViewTab.tipMacros": "Makron", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Fet", "DE.Views.WatermarkSettingsDialog.textColor": "Textfärg", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "halvgenomskinlig", "DE.Views.WatermarkSettingsDialog.textUnderline": "Understrykning", "DE.Views.WatermarkSettingsDialog.tipFontName": "Fontnamn", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fontstorlek", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Fontstorlek" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index c0bbe0c536..38a116a85c 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Matris hizalama", "DE.Views.DocumentHolder.txtOverbar": "Bar over text", "DE.Views.DocumentHolder.txtOverwriteCells": "Hücrelerin üzerine yaz", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Kaynak biçimlendirmesini koruyun", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "{0}'ye basın ve bağlantıya tıklayın", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Grup anahtarı", "DE.Views.FormSettings.textImage": "Resim", "DE.Views.FormSettings.textKey": "Anahtar", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Dil", "DE.Views.FormSettings.textLetters": "Harfler", "DE.Views.FormSettings.textLock": "Kilitle", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Tarih & Saat", "DE.Views.FormsTab.capZipCode": "Posta kodu", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Herhangi biri", "DE.Views.FormsTab.textClear": "Alanları Temizle", "DE.Views.FormsTab.textClearFields": "Tüm alanları temizle", "DE.Views.FormsTab.textCreateForm": "Alanlar ekleyin ve doldurulabilir bir PDF belgesi oluşturun", "DE.Views.FormsTab.textFilled": "Dolduruldu", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Anladım", "DE.Views.FormsTab.textHighlight": "Vurgu Ayarları", "DE.Views.FormsTab.textNoHighlight": "Vurgulama yok", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Gezinti", "DE.Views.ViewTab.textOutline": "Başlıklar", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Sağ Panel", "DE.Views.ViewTab.textRulers": "Cetveller", "DE.Views.ViewTab.textStatusBar": "Durum Çubuğu", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Yakınlaştırma", "DE.Views.ViewTab.tipDarkDocument": "Koyu belge", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Başlıklar", "DE.Views.ViewTab.tipInterfaceTheme": "Arayüz teması", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Otomatik", "DE.Views.WatermarkSettingsDialog.textBold": "Kalın", "DE.Views.WatermarkSettingsDialog.textColor": "Renk", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Yarı saydam", "DE.Views.WatermarkSettingsDialog.textUnderline": "Altı çizili", "DE.Views.WatermarkSettingsDialog.tipFontName": "Yazı Tipi", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Yazıtipi boyutu", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Yazıtipi boyutu" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index 2f674ad11e..e7ef787603 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Вирівнювання матриці", "DE.Views.DocumentHolder.txtOverbar": "Риска над текстом", "DE.Views.DocumentHolder.txtOverwriteCells": "Перезаписати комірки", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Зберегти початкове форматування", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Натисніть {0} та клацніть по посиланню", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Ключ групи", "DE.Views.FormSettings.textImage": "Зображення", "DE.Views.FormSettings.textKey": "Ключ", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Мова", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Заблокувати", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Дата та час", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Будь-хто", "DE.Views.FormsTab.textClear": "Очистити поля", "DE.Views.FormsTab.textClearFields": "Очистити всі поля", "DE.Views.FormsTab.textCreateForm": "Додайте поля і створіть документ для заповнення PDF", "DE.Views.FormsTab.textFilled": "Заповнено", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "ОК", "DE.Views.FormsTab.textHighlight": "Колір підсвітки", "DE.Views.FormsTab.textNoHighlight": "Без виділення", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Макроси", "DE.Views.ViewTab.textNavigation": "Навігація", "DE.Views.ViewTab.textOutline": "Заголовки", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Права панель", "DE.Views.ViewTab.textRulers": "Лінійки", "DE.Views.ViewTab.textStatusBar": "Рядок стану", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Масштаб", "DE.Views.ViewTab.tipDarkDocument": "Затемнений документ", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Заголовки", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Макроси", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Авто", "DE.Views.WatermarkSettingsDialog.textBold": "Грубий", "DE.Views.WatermarkSettingsDialog.textColor": "Колір тексту", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Напівпрозорий", "DE.Views.WatermarkSettingsDialog.textUnderline": "Підкреслений", "DE.Views.WatermarkSettingsDialog.tipFontName": "Шрифт", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Розмір шрифту", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Розмір шрифту" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/ur.json b/apps/documenteditor/main/locale/ur.json index fed509bd65..73ab62d982 100644 --- a/apps/documenteditor/main/locale/ur.json +++ b/apps/documenteditor/main/locale/ur.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "میٹرکس سیدھ", "DE.Views.DocumentHolder.txtOverbar": "متن پر بار", "DE.Views.DocumentHolder.txtOverwriteCells": "خلیات کو اوور رائٹ کریں۔", + "DE.Views.DocumentHolder.txtPastePicture": "تصویر", "DE.Views.DocumentHolder.txtPasteSourceFormat": "سورس فارمیٹنگ رکھیں", "DE.Views.DocumentHolder.txtPercentage": "فیصد", "DE.Views.DocumentHolder.txtPressLink": "{0} دبائیں اور لنک پر کلک کریں", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "گروپ کلید", "DE.Views.FormSettings.textImage": "تصویر", "DE.Views.FormSettings.textKey": "کلید", + "DE.Views.FormSettings.textLabel": "لیبل", "DE.Views.FormSettings.textLang": "زبان", "DE.Views.FormSettings.textLetters": "خطوط", "DE.Views.FormSettings.textLock": "تالا", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "تاریخ اور وقت", "DE.Views.FormsTab.capZipCode": "زپ کوڈ", "DE.Views.FormsTab.helpTextFillStatus": "یہ فارم رول بیسڈ فلنگ کے لیے تیار ہے۔ بھرنے کا مرحلہ چیک کرنے کے لیے اسٹیٹس بٹن پر کلک کریں۔", + "DE.Views.FormsTab.textAddRole": "وصول کنندہ کو شامل کریں۔", "DE.Views.FormsTab.textAnyone": "کوئی بھی", "DE.Views.FormsTab.textClear": "صاف فیلڈز", "DE.Views.FormsTab.textClearFields": "تمام فیلڈز کو صاف کریں۔", "DE.Views.FormsTab.textCreateForm": "PDF فیلڈز شامل کریں اور فل ایبل بنائیں", "DE.Views.FormsTab.textFilled": "بھرا ہوا", + "DE.Views.FormsTab.textFillFor": "کے لیے فیلڈز داخل کریں۔", "DE.Views.FormsTab.textGotIt": "سمجھ گیا", "DE.Views.FormsTab.textHighlight": "نمایاں ترتیبات", "DE.Views.FormsTab.textNoHighlight": "کوئی ہائی لائٹنگ نہیں۔", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "میکروس", "DE.Views.ViewTab.textNavigation": "نیویگیشن", "DE.Views.ViewTab.textOutline": "عنوانات", + "DE.Views.ViewTab.textPauseMacro": "ریکارڈنگ روک دیں۔", + "DE.Views.ViewTab.textRecMacro": "میکرو ریکارڈ کریں۔", + "DE.Views.ViewTab.textResumeMacro": "ریکارڈنگ دوبارہ شروع کریں۔", "DE.Views.ViewTab.textRightMenu": "دائیں پینل", "DE.Views.ViewTab.textRulers": "حکمرانوں", "DE.Views.ViewTab.textStatusBar": "اسٹیٹس بار", + "DE.Views.ViewTab.textStopMacro": "ریکارڈنگ بند کرو", "DE.Views.ViewTab.textTabStyle": "ٹیب اسٹائل", "DE.Views.ViewTab.textZoom": "زوم", "DE.Views.ViewTab.tipDarkDocument": "تاریک دستاویز", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "عنوانات", "DE.Views.ViewTab.tipInterfaceTheme": "انٹرفیس تھیم", "DE.Views.ViewTab.tipMacros": "میکروس", + "DE.Views.ViewTab.tipPauseMacro": "ریکارڈنگ روک دیں۔", + "DE.Views.ViewTab.tipRecMacro": "میکرو ریکارڈ کریں۔", + "DE.Views.ViewTab.tipResumeMacro": "ریکارڈنگ دوبارہ شروع کریں۔", + "DE.Views.ViewTab.tipStopMacro": "ریکارڈنگ بند کرو", "DE.Views.WatermarkSettingsDialog.textAuto": "خود کار", "DE.Views.WatermarkSettingsDialog.textBold": "بولڈ", "DE.Views.WatermarkSettingsDialog.textColor": "متن کا رنگ", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "نیم شفاف", "DE.Views.WatermarkSettingsDialog.textUnderline": "لکیر", "DE.Views.WatermarkSettingsDialog.tipFontName": "فونٹ کا نام", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "فونٹ کا سائز", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "فونٹ کا سائز" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/vi.json b/apps/documenteditor/main/locale/vi.json index 5d51e1e8e9..639ad9d465 100644 --- a/apps/documenteditor/main/locale/vi.json +++ b/apps/documenteditor/main/locale/vi.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "Căn chỉnh ma trận", "DE.Views.DocumentHolder.txtOverbar": "Gạch trên văn bản", "DE.Views.DocumentHolder.txtOverwriteCells": "Overwrite cells", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "Keep source formatting", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "Ấn {0} và nhấp vào liên kết", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "Group key", "DE.Views.FormSettings.textImage": "Image", "DE.Views.FormSettings.textKey": "Key", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "Language", "DE.Views.FormSettings.textLetters": "Letters", "DE.Views.FormSettings.textLock": "Lock", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "Ngày & Giờ", "DE.Views.FormsTab.capZipCode": "ZIP Code", "DE.Views.FormsTab.helpTextFillStatus": "This form is ready for role-based filling. Click on the status button to check the filling stage.", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "Anyone", "DE.Views.FormsTab.textClear": "Clear Fields", "DE.Views.FormsTab.textClearFields": "Clear All Fields", "DE.Views.FormsTab.textCreateForm": "Add fields and create a fillable PDF", "DE.Views.FormsTab.textFilled": "Filled", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "Got it", "DE.Views.FormsTab.textHighlight": "Highlight Settings", "DE.Views.FormsTab.textNoHighlight": "No highlighting", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "Macros", "DE.Views.ViewTab.textNavigation": "Navigation", "DE.Views.ViewTab.textOutline": "Headings", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "Right Panel", "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "Tab style", "DE.Views.ViewTab.textZoom": "Zoom", "DE.Views.ViewTab.tipDarkDocument": "Dark document", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "Headings", "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "DE.Views.ViewTab.tipMacros": "Macros", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Bold", "DE.Views.WatermarkSettingsDialog.textColor": "Text color", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "Semitransparent", "DE.Views.WatermarkSettingsDialog.textUnderline": "Underline", "DE.Views.WatermarkSettingsDialog.tipFontName": "Font name", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "Font size" } \ 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 21f8de9a90..0346ba8181 100644 --- a/apps/documenteditor/main/locale/zh-tw.json +++ b/apps/documenteditor/main/locale/zh-tw.json @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "矩陣對齊", "DE.Views.DocumentHolder.txtOverbar": "文字上方橫線", "DE.Views.DocumentHolder.txtOverwriteCells": "覆寫儲存格", + "DE.Views.DocumentHolder.txtPastePicture": "Picture", "DE.Views.DocumentHolder.txtPasteSourceFormat": "保留原始格式", "DE.Views.DocumentHolder.txtPercentage": "Percentage", "DE.Views.DocumentHolder.txtPressLink": "按{0}並單擊連結", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "群組密鑰", "DE.Views.FormSettings.textImage": "圖片", "DE.Views.FormSettings.textKey": "密鑰", + "DE.Views.FormSettings.textLabel": "Label", "DE.Views.FormSettings.textLang": "語言", "DE.Views.FormSettings.textLetters": "字母", "DE.Views.FormSettings.textLock": "鎖定", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "日期及時間", "DE.Views.FormsTab.capZipCode": "郵遞區號", "DE.Views.FormsTab.helpTextFillStatus": "此表單已準備好進行基於角色的填寫。點擊狀態按鈕以檢查填寫階段。", + "DE.Views.FormsTab.textAddRole": "Add recipient", "DE.Views.FormsTab.textAnyone": "任何人", "DE.Views.FormsTab.textClear": "清除欄位", "DE.Views.FormsTab.textClearFields": "清除所有欄位", "DE.Views.FormsTab.textCreateForm": "新增文字段落並建立一個可填寫的 PDF 文件", "DE.Views.FormsTab.textFilled": "已填寫", + "DE.Views.FormsTab.textFillFor": "Insert fields for", "DE.Views.FormsTab.textGotIt": "了解", "DE.Views.FormsTab.textHighlight": "突顯設定", "DE.Views.FormsTab.textNoHighlight": "無醒目標示", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "巨集", "DE.Views.ViewTab.textNavigation": "導覽", "DE.Views.ViewTab.textOutline": "標題", + "DE.Views.ViewTab.textPauseMacro": "Pause recording", + "DE.Views.ViewTab.textRecMacro": "Record macro", + "DE.Views.ViewTab.textResumeMacro": "Resume recording", "DE.Views.ViewTab.textRightMenu": "右側面板", "DE.Views.ViewTab.textRulers": "尺規", "DE.Views.ViewTab.textStatusBar": "狀態列", + "DE.Views.ViewTab.textStopMacro": "Stop recording", "DE.Views.ViewTab.textTabStyle": "索引標籤樣式", "DE.Views.ViewTab.textZoom": "縮放", "DE.Views.ViewTab.tipDarkDocument": "夜間模式", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "標題", "DE.Views.ViewTab.tipInterfaceTheme": "介面主題", "DE.Views.ViewTab.tipMacros": "巨集", + "DE.Views.ViewTab.tipPauseMacro": "Pause recording", + "DE.Views.ViewTab.tipRecMacro": "Record macro", + "DE.Views.ViewTab.tipResumeMacro": "Resume recording", + "DE.Views.ViewTab.tipStopMacro": "Stop recording", "DE.Views.WatermarkSettingsDialog.textAuto": "自動", "DE.Views.WatermarkSettingsDialog.textBold": "粗體", "DE.Views.WatermarkSettingsDialog.textColor": "文字顏色", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "半透明", "DE.Views.WatermarkSettingsDialog.textUnderline": "底線", "DE.Views.WatermarkSettingsDialog.tipFontName": "字型名稱", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "字型大小", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "字型大小" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 8607a5dbed..9a5ba35b14 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -869,7 +869,7 @@ "Common.Views.ExternalLinksDlg.textUpdateAll": "全部更新", "Common.Views.ExternalLinksDlg.textUpdating": "更新中...", "Common.Views.ExternalLinksDlg.txtTitle": "外部链接", - "Common.Views.ExternalMergeEditor.textTitle": "邮件合并收件人", + "Common.Views.ExternalMergeEditor.textTitle": "邮件合并接收人", "Common.Views.ExternalOleEditor.textTitle": "电子表格编辑器", "Common.Views.FormatSettingsDialog.textCategory": "分类", "Common.Views.FormatSettingsDialog.textDecimal": "十进制", @@ -2540,6 +2540,7 @@ "DE.Views.DocumentHolder.txtMatrixAlign": "矩阵对齐", "DE.Views.DocumentHolder.txtOverbar": "文本上横条", "DE.Views.DocumentHolder.txtOverwriteCells": "覆盖单元格", + "DE.Views.DocumentHolder.txtPastePicture": "图片", "DE.Views.DocumentHolder.txtPasteSourceFormat": "保留源格式", "DE.Views.DocumentHolder.txtPercentage": "百分比", "DE.Views.DocumentHolder.txtPressLink": "按 {0} 并单击链接", @@ -2819,6 +2820,7 @@ "DE.Views.FormSettings.textGroupKey": "组密钥", "DE.Views.FormSettings.textImage": "图片", "DE.Views.FormSettings.textKey": "秘钥", + "DE.Views.FormSettings.textLabel": "标签", "DE.Views.FormSettings.textLang": "语言", "DE.Views.FormSettings.textLetters": "字母", "DE.Views.FormSettings.textLock": "锁定", @@ -2861,7 +2863,7 @@ "DE.Views.FormsTab.capBtnEmail": "Email地址", "DE.Views.FormsTab.capBtnFinal": "标记为最终版本", "DE.Views.FormsTab.capBtnImage": "图片", - "DE.Views.FormsTab.capBtnManager": "管理角色", + "DE.Views.FormsTab.capBtnManager": "管理接收人", "DE.Views.FormsTab.capBtnNext": "下一个字段", "DE.Views.FormsTab.capBtnPhone": "电话号码", "DE.Views.FormsTab.capBtnPrev": "上一个字段", @@ -2876,11 +2878,13 @@ "DE.Views.FormsTab.capDateTime": "日期和时间", "DE.Views.FormsTab.capZipCode": "邮编", "DE.Views.FormsTab.helpTextFillStatus": "现在可以根据角色填写此表单。单击状态按钮,可检查填写进度。", + "DE.Views.FormsTab.textAddRole": "添加接收人", "DE.Views.FormsTab.textAnyone": "任何人", "DE.Views.FormsTab.textClear": "清除字段", "DE.Views.FormsTab.textClearFields": "清除所有字段", "DE.Views.FormsTab.textCreateForm": "添加字段并创建可填写的PDF文档", "DE.Views.FormsTab.textFilled": "已填写", + "DE.Views.FormsTab.textFillFor": "为其插入字段", "DE.Views.FormsTab.textGotIt": "明白", "DE.Views.FormsTab.textHighlight": "高亮设置", "DE.Views.FormsTab.textNoHighlight": "无高亮", @@ -2903,18 +2907,18 @@ "DE.Views.FormsTab.tipFixedText": "插入固定文本字段", "DE.Views.FormsTab.tipFormGroupKey": "对单选按钮进行分组可以更快进行填充。相同名称的选项会进行同步。用户只能勾选该组中的一个单选按钮。", "DE.Views.FormsTab.tipFormKey": "您可以给一个字段或一组字段设置密钥。 当用户填写数据时,所有具有相同密钥的字段都将复制该数据。", - "DE.Views.FormsTab.tipHelpRoles": "使用管理角色功能,按用途对字段进行分组并分配负责的团队成员。", + "DE.Views.FormsTab.tipHelpRoles": "使用管理接收人功能,按用途对字段进行分组并分配负责的团队成员。", "DE.Views.FormsTab.tipImageField": "插入图片", "DE.Views.FormsTab.tipInlineText": "插入内联文本字段", "DE.Views.FormsTab.tipLastPage": "转到最后一页", - "DE.Views.FormsTab.tipManager": "管理角色", + "DE.Views.FormsTab.tipManager": "管理接收人", "DE.Views.FormsTab.tipNextForm": "跳转到下一个字段", "DE.Views.FormsTab.tipNextPage": "跳转到下一页", "DE.Views.FormsTab.tipPhoneField": "插入电话号码", "DE.Views.FormsTab.tipPrevForm": "跳转到上一个字段", "DE.Views.FormsTab.tipPrevPage": "跳转到上一页", "DE.Views.FormsTab.tipRadioBox": "插入单选按钮", - "DE.Views.FormsTab.tipRolesLink": "了解更多关于角色的信息", + "DE.Views.FormsTab.tipRolesLink": "了解更多关于接收人的信息", "DE.Views.FormsTab.tipSaveFile": "点击“另存为pdf”将表单保存为可填写的格式。", "DE.Views.FormsTab.tipSaveForm": "将文件另存为可填充的PDF文档", "DE.Views.FormsTab.tipSignField": "插入签名", @@ -3283,19 +3287,19 @@ "DE.Views.MailMergeSettings.downloadMergeTitle": "合并", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "合并失败", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "警告", - "DE.Views.MailMergeSettings.textAddRecipients": "首先将一些收件人添加到列表中", + "DE.Views.MailMergeSettings.textAddRecipients": "首先在列表中添加接收人", "DE.Views.MailMergeSettings.textAll": "所有记录", "DE.Views.MailMergeSettings.textCurrent": "当前记录", "DE.Views.MailMergeSettings.textDataSource": "数据来源", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "下载", - "DE.Views.MailMergeSettings.textEditData": "编辑收件人列表", + "DE.Views.MailMergeSettings.textEditData": "编辑接收人列表", "DE.Views.MailMergeSettings.textEmail": "电邮", "DE.Views.MailMergeSettings.textFrom": "从", "DE.Views.MailMergeSettings.textGoToMail": "转到邮件", "DE.Views.MailMergeSettings.textHighlight": "高亮显示合并字段", "DE.Views.MailMergeSettings.textInsertField": "插入合并字段", - "DE.Views.MailMergeSettings.textMaxRecepients": "最多100位收件人。", + "DE.Views.MailMergeSettings.textMaxRecepients": "最多100位接收人。", "DE.Views.MailMergeSettings.textMerge": "合并", "DE.Views.MailMergeSettings.textMergeFields": "合并字段", "DE.Views.MailMergeSettings.textMergeTo": "合并到", @@ -3561,32 +3565,32 @@ "DE.Views.RightMenu.txtSignatureSettings": "签名设置", "DE.Views.RightMenu.txtTableSettings": "表格设置", "DE.Views.RightMenu.txtTextArtSettings": "艺术字设置", - "DE.Views.RoleDeleteDlg.textLabel": "如要删除此角色,您需要将与其关联的字段移动到另一个角色。", - "DE.Views.RoleDeleteDlg.textSelect": "选择用于字段合并的角色", - "DE.Views.RoleDeleteDlg.textTitle": "删除角色", - "DE.Views.RoleEditDlg.errNameExists": "已存在该角色名称。", - "DE.Views.RoleEditDlg.textEmptyError": "角色名称不能为空。", - "DE.Views.RoleEditDlg.textName": "角色名称", + "DE.Views.RoleDeleteDlg.textLabel": "如要删除此接收人,您需要将与其关联的字段移动到另一个接收人。", + "DE.Views.RoleDeleteDlg.textSelect": "选择用于字段合并的接收人", + "DE.Views.RoleDeleteDlg.textTitle": "删除接收人", + "DE.Views.RoleEditDlg.errNameExists": "已存在该接收人名称。", + "DE.Views.RoleEditDlg.textEmptyError": "接收人名称不能为空。", + "DE.Views.RoleEditDlg.textName": "接收人名称", "DE.Views.RoleEditDlg.textNameEx": "例如:申请人、客户、销售代表", "DE.Views.RoleEditDlg.textNoHighlight": "无高亮", - "DE.Views.RoleEditDlg.txtTitleEdit": "编辑角色", - "DE.Views.RoleEditDlg.txtTitleNew": "创建新角色", + "DE.Views.RoleEditDlg.txtTitleEdit": "编辑接收人", + "DE.Views.RoleEditDlg.txtTitleNew": "创建新接收人", "DE.Views.RolesManagerDlg.textAnyone": "任何人", "DE.Views.RolesManagerDlg.textDelete": "删除", - "DE.Views.RolesManagerDlg.textDeleteLast": "是否确定要删除角色{0}?
删除后,将创建默认角色。", - "DE.Views.RolesManagerDlg.textDescription": "添加角色并设置填写人接收和签署文档的顺序", - "DE.Views.RolesManagerDlg.textDown": "向下移动角色", + "DE.Views.RolesManagerDlg.textDeleteLast": "是否确定要删除接收人{0}?
删除后,将创建默认接收人。", + "DE.Views.RolesManagerDlg.textDescription": "添加接收人并设置填写人接收和签署文档的顺序", + "DE.Views.RolesManagerDlg.textDown": "向下移动接收人", "DE.Views.RolesManagerDlg.textEdit": "编辑", - "DE.Views.RolesManagerDlg.textEmpty": "尚未创建任何角色。
至少创建一个角色,它将显示在此字段中。", + "DE.Views.RolesManagerDlg.textEmpty": "尚未创建任何接收人。
至少创建一个接收人,它将显示在此字段中。", "DE.Views.RolesManagerDlg.textNew": "新建", - "DE.Views.RolesManagerDlg.textUp": "向上移动角色", - "DE.Views.RolesManagerDlg.txtTitle": "管理角色", - "DE.Views.RolesManagerDlg.warnCantDelete": "无法删除此角色,因为它有关联的字段。", - "DE.Views.RolesManagerDlg.warnDelete": "是否确定要删除角色{0}?", + "DE.Views.RolesManagerDlg.textUp": "向上移动接收人", + "DE.Views.RolesManagerDlg.txtTitle": "管理接收人", + "DE.Views.RolesManagerDlg.warnCantDelete": "无法删除此接收人,因为它有关联的字段。", + "DE.Views.RolesManagerDlg.warnDelete": "是否确定要删除接收人{0}?", "DE.Views.SaveFormDlg.saveButtonText": "保存", "DE.Views.SaveFormDlg.textAnyone": "任何人", - "DE.Views.SaveFormDlg.textDescription": "保存为PDF时,只有具有字段的角色会被添加到填写列表中", - "DE.Views.SaveFormDlg.textEmpty": "没有与字段关联的角色。", + "DE.Views.SaveFormDlg.textDescription": "保存为PDF时,只有具有字段的接收人会被添加到填写列表中", + "DE.Views.SaveFormDlg.textEmpty": "没有与字段关联的接收人。", "DE.Views.SaveFormDlg.textFill": "填写清单", "DE.Views.SaveFormDlg.txtTitle": "另存为表单", "DE.Views.ShapeSettings.strBackground": "背景颜色", @@ -4244,9 +4248,13 @@ "DE.Views.ViewTab.textMacros": "宏", "DE.Views.ViewTab.textNavigation": "导航", "DE.Views.ViewTab.textOutline": "标题", + "DE.Views.ViewTab.textPauseMacro": "暂停录制", + "DE.Views.ViewTab.textRecMacro": "录制宏", + "DE.Views.ViewTab.textResumeMacro": "恢复录制", "DE.Views.ViewTab.textRightMenu": "右侧面板", "DE.Views.ViewTab.textRulers": "标尺", "DE.Views.ViewTab.textStatusBar": "状态栏", + "DE.Views.ViewTab.textStopMacro": "停止录制", "DE.Views.ViewTab.textTabStyle": "选项卡样式", "DE.Views.ViewTab.textZoom": "縮放", "DE.Views.ViewTab.tipDarkDocument": "深色模式文档", @@ -4255,6 +4263,10 @@ "DE.Views.ViewTab.tipHeadings": "标题", "DE.Views.ViewTab.tipInterfaceTheme": "界面主题", "DE.Views.ViewTab.tipMacros": "宏", + "DE.Views.ViewTab.tipPauseMacro": "暂停录制", + "DE.Views.ViewTab.tipRecMacro": "录制宏", + "DE.Views.ViewTab.tipResumeMacro": "恢复录制", + "DE.Views.ViewTab.tipStopMacro": "停止录制", "DE.Views.WatermarkSettingsDialog.textAuto": "自动", "DE.Views.WatermarkSettingsDialog.textBold": "粗体", "DE.Views.WatermarkSettingsDialog.textColor": "文字颜色", @@ -4278,7 +4290,5 @@ "DE.Views.WatermarkSettingsDialog.textTransparency": "半透明", "DE.Views.WatermarkSettingsDialog.textUnderline": "下划线", "DE.Views.WatermarkSettingsDialog.tipFontName": "字体名称", - "DE.Views.WatermarkSettingsDialog.tipFontSize": "字体大小", - "DE.Views.DocumentHolder.txtPastePicture": "Picture", - "DE.Views.FormSettings.textLabel": "Label" + "DE.Views.WatermarkSettingsDialog.tipFontSize": "字体大小" } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index 39698dbf00..b62598a2be 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -518,7 +518,7 @@ "savePreparingTitle": "Preparazione al salvataggio. Attendere prego...", "saveTextText": "Salvataggio documento in corso...", "saveTitleText": "Salvataggio documento", - "savingText": "Salvataggio", + "savingText": "Invio", "sendMergeText": "Invio resultati dell'unione in corso...", "sendMergeTitle": "Invio resultati dell'unione", "textContinue": "Continua", diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index 0da53fad47..46c9b564d4 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -56,8 +56,8 @@ const SettingsController = props => { closeModal(); setTimeout(() => { - if(config && !!config.feedback && !!config.feedback.url) { - window.open(config.feedback.url, "_blank"); + if(!!config?.customization?.feedback?.url) { + window.open(config.customization.feedback.url, "_blank"); } else window.open(__SUPPORT_URL__, "_blank"); }, 400); } diff --git a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx index 549bf98daf..29993acda1 100644 --- a/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/documenteditor/mobile/src/view/settings/SettingsPage.jsx @@ -89,7 +89,10 @@ const SettingsPage = inject("storeAppOptions", "storeReview", "storeDocumentInfo if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; - _canFeedback = appOptions.customization.feedback !== false; + _canFeedback = ( + appOptions.customization.feedback !== false && + appOptions.customization.feedback.visible !== false + ); _canDisplayInfo = appOptions.customization.mobile?.info !== false; } } diff --git a/apps/pdfeditor/main/app/controller/DocumentHolderExt.js b/apps/pdfeditor/main/app/controller/DocumentHolderExt.js index 27eb96b5b5..9d4b52b41f 100644 --- a/apps/pdfeditor/main/app/controller/DocumentHolderExt.js +++ b/apps/pdfeditor/main/app/controller/DocumentHolderExt.js @@ -1284,11 +1284,12 @@ define([], function () { ToolTip = Common.Utils.String.htmlEncode(ToolTip); - if (screenTip.tipType !== type || screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 ) { - screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink) ? (ToolTip + '
' + Common.Utils.String.platformKey('Ctrl', me.documentHolder.txtPressLink) + '') : ToolTip); + if (screenTip.tipType !== type || screenTip.tipLength !== ToolTip.length || screenTip.strTip.indexOf(ToolTip)<0 || (hyperProps && screenTip.noCtrl !== hyperProps.get_NoCtrl())) { + screenTip.toolTip.setTitle((type==Asc.c_oAscMouseMoveDataTypes.Hyperlink && !hyperProps.get_NoCtrl()) ? (ToolTip + '
' + Common.Utils.String.platformKey('Ctrl', me.documentHolder.txtPressLink) + '') : ToolTip); screenTip.tipLength = ToolTip.length; screenTip.strTip = ToolTip; screenTip.tipType = type; + screenTip.noCtrl = !!hyperProps && hyperProps.get_NoCtrl(); recalc = true; } diff --git a/apps/pdfeditor/main/app/controller/Main.js b/apps/pdfeditor/main/app/controller/Main.js index 7bcdbb3d26..56478ae1d8 100644 --- a/apps/pdfeditor/main/app/controller/Main.js +++ b/apps/pdfeditor/main/app/controller/Main.js @@ -105,6 +105,13 @@ define([ 'Diagram Title': this.txtDiagramTitle, 'X Axis': this.txtXAxis, 'Y Axis': this.txtYAxis, + 'Button': this.txtButton, + 'Group': this.txtGroup, + 'Checkbox': this.txtCheckbox, + 'Text': this.txtText, + 'Dropdown': this.txtDropdown, + 'Listbox': this.txtListbox, + 'Signature': this.txtSignature }; }, @@ -535,7 +542,7 @@ define([ this.api.asc_coAuthoringDisconnect(); Common.NotificationCenter.trigger('collaboration:sharingdeny'); Common.NotificationCenter.trigger('api:disconnect'); - !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : data.message, + !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : Common.Utils.String.htmlEncode(data.message), target: '#toolbar', maxwidth: 600, showButton: false, automove: true, noHighlight: true, noArrow: true, multiple: true, callback: function() { me._state.lostEditingRights = false; @@ -1944,17 +1951,15 @@ define([ onOpenLinkPdfForm: function(sURI, onAllow, onCancel) { var id = 'pdf-link', - re = new RegExp('ctrl|' + Common.Utils.String.textCtrl, 'i'), - msg = Common.Utils.isMac ? this.txtSecurityWarningLink.replace(re, '⌘') : this.txtSecurityWarningLink, config = { closable: true, title: this.notcriticalErrorTitle, iconCls: 'warn', buttons: ['ok', 'cancel'], - msg: Common.Utils.String.format(msg, sURI || ''), + msg: Common.Utils.String.format(this.txtSecurityWarningLinkOk, sURI || ''), maxwidth: 600, callback: _.bind(function(btn){ - if (btn == 'ok' && window.event && (!Common.Utils.isMac && window.event.ctrlKey == true || Common.Utils.isMac && window.event.metaKey)) { + if (btn == 'ok') { onAllow(); } else diff --git a/apps/pdfeditor/main/app/controller/Search.js b/apps/pdfeditor/main/app/controller/Search.js index e7d9d33940..628a2cab65 100644 --- a/apps/pdfeditor/main/app/controller/Search.js +++ b/apps/pdfeditor/main/app/controller/Search.js @@ -365,6 +365,7 @@ define([ onApiGetTextAroundSearch: function (data) { if (this.view && this._state.isStartedAddingResults) { this._state.isStartedAddingResults = false; + this.hideResults(); if (data.length > 300 || !data.length) return; var me = this, selectedInd; diff --git a/apps/pdfeditor/main/app/view/RightMenu.js b/apps/pdfeditor/main/app/view/RightMenu.js index a0f0628f01..c36ee2832d 100644 --- a/apps/pdfeditor/main/app/view/RightMenu.js +++ b/apps/pdfeditor/main/app/view/RightMenu.js @@ -274,7 +274,7 @@ define([ Common.localStorage.setItem("pdfe-hide-right-settings", 0); Common.Utils.InternalSettings.set("pdfe-hide-right-settings", false); } - target_pane_parent.find('.settings-panel.active').removeClass('active'); + target_pane_parent.find('.content-box > .active').removeClass('active'); target_pane && target_pane.addClass("active"); if (this.scroller) { @@ -288,7 +288,6 @@ define([ Common.Utils.InternalSettings.set("pdfe-hide-right-settings", true); } - !isPlugin && $('.right-panel .plugin-panel').toggleClass('active', false); btn && !isPlugin && this.fireEvent('rightmenuclick', [this, btn.options.asctype, this.minimizedMode, e]); }, @@ -301,7 +300,7 @@ define([ } else { var target_pane = $("#" + this._settings[type].panel ); if ( !target_pane.hasClass('active') ) { - target_pane.parent().find('.settings-panel.active').removeClass('active'); + target_pane.parent().find('> .active').removeClass('active'); target_pane.addClass("active"); if (this.scroller) { this.scroller.update(); @@ -320,7 +319,7 @@ define([ clearSelection: function() { var target_pane = $(".right-panel"); - target_pane.find('.settings-panel.active').removeClass('active'); + target_pane.find('.content-box > .active').removeClass('active'); this._settings.forEach(function(item){ if (item.btn.isActive()) item.btn.toggle(false, true); @@ -343,6 +342,10 @@ define([ Common.UI.SideMenu.prototype.setButtons.apply(this, [allButtons]); }, + insertPanel: function ($panel) { + this.$el.find('.side-panel .content-box').append($panel); + }, + updateWidth: function() { var pane = $(this.el).find('.right-panel'), paddings = parseInt(pane.css('padding-left')) + parseInt(pane.css('padding-right')); diff --git a/apps/pdfeditor/main/locale/ar.json b/apps/pdfeditor/main/locale/ar.json index 238e87b259..a035a485de 100644 --- a/apps/pdfeditor/main/locale/ar.json +++ b/apps/pdfeditor/main/locale/ar.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "تم تحديث المحرر", "PDFE.Controllers.Main.titleUpdateVersion": "تم تغيير الإصدار", "PDFE.Controllers.Main.txtArt": "نصك هنا", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "اختيار عنصر", "PDFE.Controllers.Main.txtClickToLoad": "اضغط لتحميل الصورة", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "ضبط وضع التحرير...", "PDFE.Controllers.Main.txtEnterDate": "إدخال تاريخ", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "قيمة غير صالحة للحقل \"{0}\": يجب أن تكون أكبر من أو تساوي {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "قيمة غير صالحة للحقل \"{0}\": يجب أن تكون أكبر من أو تساوي {1} وأقل من أو تساوي {2}.", "PDFE.Controllers.Main.txtInvalidLess": "قيمة غير صالحة للحقل \"{0}\": يجب أن تكون أقل من أو تساوي {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "القيمة المدخلة لا تتطابق مع تنسيق الحقل \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "قيمة غير صالحة للحقل \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "لديك تحديثات", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "نسخة الملف كانت", - "PDFE.Controllers.Main.txtSecurityWarningLink": "يحاول هذا المستند الاتصال بـ {0}.
إذا كنت تثق بهذا الموقع، فاضغط على \"موافق\" أثناء الضغط باستمرار على مفتاح ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "يحاول هذا المستند فتح مربع حوار الملف، اضغط على \"موافق\" لفتحه.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "يجب أن تتطابق قيمة الحقل مع التنسيق \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/az.json b/apps/pdfeditor/main/locale/az.json index f91fc40bb9..b4e9a7e49c 100644 --- a/apps/pdfeditor/main/locale/az.json +++ b/apps/pdfeditor/main/locale/az.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Redaktor yeniləndi", "PDFE.Controllers.Main.titleUpdateVersion": "Versiya dəyişdirildi", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Element seçin", "PDFE.Controllers.Main.txtClickToLoad": "Şəkli yükləmək üçün klikləyin", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Redaktə rejimini təyin edin...", "PDFE.Controllers.Main.txtEnterDate": "Tarixi daxil edin", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Yeniləmələriniz var", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/be.json b/apps/pdfeditor/main/locale/be.json index 039b624c7e..44ccbb8749 100644 --- a/apps/pdfeditor/main/locale/be.json +++ b/apps/pdfeditor/main/locale/be.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Рэдактар абноўлены", "PDFE.Controllers.Main.titleUpdateVersion": "Версія змянілася", "PDFE.Controllers.Main.txtArt": "Увядзіце ваш тэкст", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Абярыце элемент", "PDFE.Controllers.Main.txtClickToLoad": "Націсніце, каб загрузіць выяву", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", "PDFE.Controllers.Main.txtEnterDate": "Увядзіце дату", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Ёсць абнаўленні", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/bg.json b/apps/pdfeditor/main/locale/bg.json index 12730ce617..8b1b82e449 100644 --- a/apps/pdfeditor/main/locale/bg.json +++ b/apps/pdfeditor/main/locale/bg.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран", "PDFE.Controllers.Main.titleUpdateVersion": "Версията е променена", "PDFE.Controllers.Main.txtArt": "Вашият текст тук", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Choose an item", "PDFE.Controllers.Main.txtClickToLoad": "Click to load image", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране...", "PDFE.Controllers.Main.txtEnterDate": "Въведете дата", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Имате актуализации", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/ca.json b/apps/pdfeditor/main/locale/ca.json index de882a612b..e9e3b7ecb9 100644 --- a/apps/pdfeditor/main/locale/ca.json +++ b/apps/pdfeditor/main/locale/ca.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", "PDFE.Controllers.Main.titleUpdateVersion": "S'ha canviat la versió", "PDFE.Controllers.Main.txtArt": "El teu text aquí", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Tria un element", "PDFE.Controllers.Main.txtClickToLoad": "Feu clic per carregar la imatge", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Establir el mode d'edició ...", "PDFE.Controllers.Main.txtEnterDate": "Introdueix una data", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Valor no vàlid per al camp “{0}”: ha de ser superior o igual que {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valor no vàlid per al camp “{0}”: ha de ser superior o igual a {1} i inferior o igual a {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Valor no vàlid per al camp “{0}”: ha de ser inferior a {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "El valor introduït no concorda amb el format del camp “{0}”.", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Tens actualitzacions", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Aquest document intenta connectar-se a {0}.
Si confies en aquest lloc, prem “D'acord” mentre mantens premuda la tecla Ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Aquest document intenta obrir el diàleg de fitxers, prem “D'acord” per obrir-lo.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "El valor del camp ha de coincidir amb el format “{0}”.", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/cs.json b/apps/pdfeditor/main/locale/cs.json index 87ce60c7c1..65dc1e1252 100644 --- a/apps/pdfeditor/main/locale/cs.json +++ b/apps/pdfeditor/main/locale/cs.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", "PDFE.Controllers.Main.titleUpdateVersion": "Verze změněna", "PDFE.Controllers.Main.txtArt": "Zde napište text", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Zvolte položku", "PDFE.Controllers.Main.txtClickToLoad": "Kliknutím nehrajte obrázek", "PDFE.Controllers.Main.txtDiagramTitle": "Název grafu", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Nastavit režim úprav…", "PDFE.Controllers.Main.txtEnterDate": "Zadejte datum", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Neplatná hodnota pole \"{0}\": musí být větší než nebo rovno {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Neplatná hodnota pole \"{0}\": musí být větší než nebo rovno {1} a zároveň menší nebo rovno {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Neplatná hodnota pole \"{0}\": musí být menší než nebo rovno {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Zadaná hodnota neodpovídá formátu pole \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Neplatná hodnota pro pole \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Máte nové aktualizace", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Kopie souboru byla úspěšně uložena", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Tento dokument se pokouší připojit k {0}.
Pokud této stránce důvěřujete, stiskněte tlačítko \"OK\" spolu s klávesu ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Pro zobrazení tohoto dokumentu v okně stiskněte \"OK\".", "PDFE.Controllers.Main.txtSeries": "Řady", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Hodnota pole by měla odpovídat formátu \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Osa X", "PDFE.Controllers.Main.txtYAxis": "Osa Y", diff --git a/apps/pdfeditor/main/locale/da.json b/apps/pdfeditor/main/locale/da.json index a7c396e874..dc341f34db 100644 --- a/apps/pdfeditor/main/locale/da.json +++ b/apps/pdfeditor/main/locale/da.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Redigeringsværktøj opdateret", "PDFE.Controllers.Main.titleUpdateVersion": "Version ændret", "PDFE.Controllers.Main.txtArt": "Din tekst her", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Vælg en vare", "PDFE.Controllers.Main.txtClickToLoad": "Klik for at hente billede", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Vælg redigeringstilstand...", "PDFE.Controllers.Main.txtEnterDate": "Indtast en dato", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Du har opdateringer", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/de.json b/apps/pdfeditor/main/locale/de.json index 8611a2571f..5ccac2ee37 100644 --- a/apps/pdfeditor/main/locale/de.json +++ b/apps/pdfeditor/main/locale/de.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert", "PDFE.Controllers.Main.titleUpdateVersion": "Version wurde geändert", "PDFE.Controllers.Main.txtArt": "Text hier eingeben", + "PDFE.Controllers.Main.txtButton": "Schaltfläche", + "PDFE.Controllers.Main.txtCheckbox": "Kontrollkästchen", "PDFE.Controllers.Main.txtChoose": "Wählen Sie ein Element aus", "PDFE.Controllers.Main.txtClickToLoad": "Klicken Sie, um das Bild zu laden", "PDFE.Controllers.Main.txtDiagramTitle": "Diagrammtitel", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus festlegen...", "PDFE.Controllers.Main.txtEnterDate": "Datum einfügen", + "PDFE.Controllers.Main.txtGroup": "Gruppe", "PDFE.Controllers.Main.txtInvalidGreater": "Ungültiger Wert für Feld „{0}“: muss größer oder gleich {1} sein.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ungültiger Wert für Feld „{0}“: muss größer oder gleich {1} und kleiner oder gleich {2} sein.", "PDFE.Controllers.Main.txtInvalidLess": "Ungültiger Wert für Feld „{0}“: muss kleiner oder gleich {1} sein.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Der eingegebene Wert stimmt nicht mit dem Format des Feldes „{0}“ überein.", "PDFE.Controllers.Main.txtInvalidValue": "Ungültiger Wert für Feld \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Änderungen sind verfügbar", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Die Dateikopie wurde erfolgreich gespeichert", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Dieses Dokument versucht, eine Verbindung zu {0} herzustellen.
Wenn Sie dieser Site vertrauen, drücken Sie „OK“, während Sie die Strg-Taste gedrückt halten.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "Dieses Dokument versucht, eine Verbindung zu {0} herzustellen.
Wenn Sie dieser Website vertrauen, drücken Sie OK.", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Dieses Dokument versucht, den Dateidialog zu öffnen. Klicken Sie zum Öffnen auf „OK“.", "PDFE.Controllers.Main.txtSeries": "Reihen", + "PDFE.Controllers.Main.txtSignature": "Signatur", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Der Feldwert sollte dem Format „{0}“ entsprechen.", "PDFE.Controllers.Main.txtXAxis": "Achse X", "PDFE.Controllers.Main.txtYAxis": "Achse Y", diff --git a/apps/pdfeditor/main/locale/el.json b/apps/pdfeditor/main/locale/el.json index 8bca53e1e1..1fc2c9f3da 100644 --- a/apps/pdfeditor/main/locale/el.json +++ b/apps/pdfeditor/main/locale/el.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Ο επεξεργαστής ενημερώθηκε", "PDFE.Controllers.Main.titleUpdateVersion": "Η έκδοση άλλαξε", "PDFE.Controllers.Main.txtArt": "Το κείμενό σας εδώ", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Επιλέξτε ένα αντικείμενο", "PDFE.Controllers.Main.txtClickToLoad": "Κάντε κλικ για φόρτωση εικόνας", "PDFE.Controllers.Main.txtDiagramTitle": "Τίτλος γραφήματος", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", "PDFE.Controllers.Main.txtEnterDate": "Εισάγετε μια ημερομηνία", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Μη έγκυρη τιμή για το πεδίο \"{0}\": πρέπει να είναι μεγαλύτερη ή ίση με {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Μη έγκυρη τιμή για το πεδίο \"{0}\": πρέπει να είναι μεγαλύτερη ή ίση με {1} και μικρότερη ή ίση με {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Μη έγκυρη τιμή για το πεδίο \"{0}\": πρέπει να είναι μικρότερη ή ίση με {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Η τιμή που εισάγεται δεν ταιριάζει με τη μορφή του πεδίου \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Μη έγκυρη τιμή για το πεδίο \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Έχετε ενημερώσεις", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Το αντίγραφο του αρχείου αποθηκεύτηκε με επιτυχία", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Αυτό το έγγραφο προσπαθεί να συνδεθεί με {0}. Εάν εμπιστεύεστε αυτόν τον ιστότοπο, πατήστε \"Εντάξει\" ενώ κρατάτε πατημένο το πλήκτρο ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Αυτό το έγγραφο προσπαθεί να ανοίξει το παράθυρο διαλόγου αρχείου, πατήστε \"Εντάξει\" για να ανοίξετε.", "PDFE.Controllers.Main.txtSeries": "Σειρά", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Η τιμή πεδίου πρέπει να ταιριάζει με τη μορφή \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Άξονας Χ", "PDFE.Controllers.Main.txtYAxis": "Άξονας Υ", diff --git a/apps/pdfeditor/main/locale/en.json b/apps/pdfeditor/main/locale/en.json index 9984b1d2a6..15562b4aa2 100644 --- a/apps/pdfeditor/main/locale/en.json +++ b/apps/pdfeditor/main/locale/en.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor updated", "PDFE.Controllers.Main.titleUpdateVersion": "Version changed", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Choose an item", "PDFE.Controllers.Main.txtClickToLoad": "Click to load image", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Set editing mode...", "PDFE.Controllers.Main.txtEnterDate": "Enter a date", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Invalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "You have updates", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/es.json b/apps/pdfeditor/main/locale/es.json index fd67b5850f..237afbfc3c 100644 --- a/apps/pdfeditor/main/locale/es.json +++ b/apps/pdfeditor/main/locale/es.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "El editor se ha actualizado", "PDFE.Controllers.Main.titleUpdateVersion": "La versión ha cambiado", "PDFE.Controllers.Main.txtArt": "Su texto aquí", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Elija un elemento", "PDFE.Controllers.Main.txtClickToLoad": "Haga clic para cargar la imagen", "PDFE.Controllers.Main.txtDiagramTitle": "Título de gráfico", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...", "PDFE.Controllers.Main.txtEnterDate": "Introduzca una fecha", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Valor no válido para el campo \"{0}\": debe ser mayor o igual que {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valor no válido para el campo \"{0}\": debe ser mayor o igual que {1} y menor o igual que {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Valor no válido para el campo \"{0}\": debe ser menor o igual que {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "El valor introducido no coincide con el formato del campo \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Valor no válido para el campo\"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Hay actualizaciones disponibles", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "La copia del archivo se ha guardado correctamente", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Este documento está intentando conectarse a {0}.
Si confía en este sitio, pulse \"OK\" mientras mantiene pulsada la tecla Ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Este documento está intentando abrir el diálogo de archivo, pulse \"OK\" para abrir.", "PDFE.Controllers.Main.txtSeries": "Serie", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "El valor del campo debe coincidir con el formato \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Eje X", "PDFE.Controllers.Main.txtYAxis": "Eje Y", diff --git a/apps/pdfeditor/main/locale/eu.json b/apps/pdfeditor/main/locale/eu.json index 71a47d4fb1..fb50090301 100644 --- a/apps/pdfeditor/main/locale/eu.json +++ b/apps/pdfeditor/main/locale/eu.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editorea eguneratu da", "PDFE.Controllers.Main.titleUpdateVersion": "Bertsioa aldatu da", "PDFE.Controllers.Main.txtArt": "Zure testua hemen", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Aukeratu elementu bat", "PDFE.Controllers.Main.txtClickToLoad": "Egin klik irudia kargatzeko", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Ezarri edizio modua...", "PDFE.Controllers.Main.txtEnterDate": "Idatzi data", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "\"{0}\" gelaxkan balio gabeko balorea: {1} baino handiagoa edo berdina izan behar da", "PDFE.Controllers.Main.txtInvalidGreaterLess": "\"{0}\" gelaxkan balio gabeko balorea: {1} baino handiagoa edo berdina, eta {2} baino txikiagoa edo berdina izan behar da.", "PDFE.Controllers.Main.txtInvalidLess": "\"{0}\" gelaxkan balio gabeko balorea: {1} baino txikiagoa edo berdina izan behar da", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Sartutako baloreak ez du bat egiten \"{0}\" gelaxkako formatuarekin", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Eguneratzeak dauzkazu", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Dokumentu hau {0]ra konektatzen saiatzen ari da.
Gune honetaz fidatzen bazara, sakatu \"OK\" Ctrl teklarekin batera.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Dokumentu hau fitxategiaren elkarrizketa-koadroa irekitzen saiatzen ari da, sakatu \"OK\" irekitzeko.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Gelaxkaren baloreak \"{0}\" formatuarekin bat etorri behar da.", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/fi.json b/apps/pdfeditor/main/locale/fi.json index 8ae05e8a2f..842d0cf3a5 100644 --- a/apps/pdfeditor/main/locale/fi.json +++ b/apps/pdfeditor/main/locale/fi.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editori päivitetty", "PDFE.Controllers.Main.titleUpdateVersion": "Versio muutettu", "PDFE.Controllers.Main.txtArt": "Tekstisi tähän", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Valitse kohde", "PDFE.Controllers.Main.txtClickToLoad": "Klikkaa ladataksesi kuvan", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Aseta muokkauksen tila...", "PDFE.Controllers.Main.txtEnterDate": "Syötä päivämäärä", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Sinulla on päivityksiä", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Tiedoston kopio tallennettiin onnistuneesti.", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/fr.json b/apps/pdfeditor/main/locale/fr.json index a448597246..e38176a9ac 100644 --- a/apps/pdfeditor/main/locale/fr.json +++ b/apps/pdfeditor/main/locale/fr.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Éditeur mis à jour", "PDFE.Controllers.Main.titleUpdateVersion": "La version a été modifiée", "PDFE.Controllers.Main.txtArt": "Votre texte ici", + "PDFE.Controllers.Main.txtButton": "Bouton", + "PDFE.Controllers.Main.txtCheckbox": "Case à cocher", "PDFE.Controllers.Main.txtChoose": "Choisissez un élément", "PDFE.Controllers.Main.txtClickToLoad": "Cliquez pour charger une image", "PDFE.Controllers.Main.txtDiagramTitle": "Titre du graphique", + "PDFE.Controllers.Main.txtDropdown": "Liste déroulante", "PDFE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...", "PDFE.Controllers.Main.txtEnterDate": "Entrez une date", + "PDFE.Controllers.Main.txtGroup": "Groupe", "PDFE.Controllers.Main.txtInvalidGreater": "Valeur non valide pour le champ \"{0}\" : doit être supérieur ou égal à {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valeur non valide pour le champ \"{0}\" : doit être supérieur ou égal à {1} et inférieur ou égal à {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Valeur non valide pour le champ \"{0}\" : doit être inférieur ou égal à {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "La valeur saisie ne correspond pas au format du champ \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Valeur non valide pour le champ \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Zone de liste", "PDFE.Controllers.Main.txtNeedSynchronize": "Mises jour disponibles", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "La copie du fichier a été enregistrée avec succès", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Ce document tente de se connecter à {0}.
Si vous avez confiance en ce site, appuyez sur \"OK\" tout en maintenant la touche ctrl enfoncée.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "Ce document tente de se connecter à {0}.
Si vous faites confiance à ce site, appuyez sur « OK ».", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Ce document tente d'ouvrir la boîte de dialogue du fichier, appuyez sur \"OK\" pour l'ouvrir.", "PDFE.Controllers.Main.txtSeries": "Séries", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Texte", "PDFE.Controllers.Main.txtValidPdfFormat": "La valeur du champ doit correspondre au format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Axe X", "PDFE.Controllers.Main.txtYAxis": "Axe Y", diff --git a/apps/pdfeditor/main/locale/gl.json b/apps/pdfeditor/main/locale/gl.json index 1db57e6067..ca105321d3 100644 --- a/apps/pdfeditor/main/locale/gl.json +++ b/apps/pdfeditor/main/locale/gl.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor actualizado", "PDFE.Controllers.Main.titleUpdateVersion": "Versión cambiada", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Escolla un elemento", "PDFE.Controllers.Main.txtClickToLoad": "Prema para cargar a imaxe", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Establecer o modo de edición...", "PDFE.Controllers.Main.txtEnterDate": "Insira unha data", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Ten actualizacións", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/he.json b/apps/pdfeditor/main/locale/he.json index 27cc81e9b6..f19870b28c 100644 --- a/apps/pdfeditor/main/locale/he.json +++ b/apps/pdfeditor/main/locale/he.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "עורך מעודכן", "PDFE.Controllers.Main.titleUpdateVersion": "הגרסה השתנתה", "PDFE.Controllers.Main.txtArt": "הטקסט שלך כאן", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "בחירת פריט", "PDFE.Controllers.Main.txtClickToLoad": "נא ללחוץ כדי לטעון תמונה", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "הגדרת מצב עריכה...", "PDFE.Controllers.Main.txtEnterDate": "נא להזין תאריך", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "ערך לא-תקין בשדה \"{0}\" : אמור להיות גדול או שווה ל {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "ערך לא-תקין בשדה \"{0}\" אמור להיות גדול או שווה ל {1} ופחות אז או שווה ל {2}.", "PDFE.Controllers.Main.txtInvalidLess": "ערך לא-תקין בשדה \"{0}\" צריך להיות פחות או שווה ל {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "הערך שהוזן אינו תואם את הפורמט של השדה \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "ערך לא חוקי לשדה \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "יש לך עדכונים", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "עותק הקובץ נשמר בהצלחה", - "PDFE.Controllers.Main.txtSecurityWarningLink": "מסמך זה מנסה להתחבר ל- {0}.
אם אתה סומך על אתר זה, לחץ על \"אישור\" תוך לחיצה ממושכת על מקש Ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "מסמך זה מנסה לפתוח ד-שיח, נא ללחוץ על \"אישור\" כדי לפתוח.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "ערך השדה צריך להתאים לפורמט \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/hu.json b/apps/pdfeditor/main/locale/hu.json index 55c6127216..a1e58818b9 100644 --- a/apps/pdfeditor/main/locale/hu.json +++ b/apps/pdfeditor/main/locale/hu.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", "PDFE.Controllers.Main.titleUpdateVersion": "A verzió megváltozott", "PDFE.Controllers.Main.txtArt": "Írja a szöveget ide", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Válassz egy elemet", "PDFE.Controllers.Main.txtClickToLoad": "Kattintson a kép betöltéséhez", "PDFE.Controllers.Main.txtDiagramTitle": "Diagram címe", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", "PDFE.Controllers.Main.txtEnterDate": "Adjon meg egy dátumot", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Érvénytelen érték a \"{0}\" mezőben: nagyobbnak vagy egyenlőnek kell lennie, mint {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Érvénytelen érték a \"{0}\" mezőben: nagyobbnak vagy egyenlőnek kell lennie, mint {1}, és kisebbnek vagy egyenlőnek kell lennie, mint {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Érvénytelen érték a \"{0}\" mezőben: kisebbnek vagy egyenlőnek kell lennie, mint {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "A megadott érték nem egyezik a \"{0}\" mező formátumával.", "PDFE.Controllers.Main.txtInvalidValue": "Érvénytelen érték a(z) \"{0}\" mezőben", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Frissítések érhetőek el", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "A fájlmásolat sikeresen mentésre került", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Ez a dokumentum megpróbál csatlakozni a következőhöz: {0}.
Ha megbízik ebben a webhelyben, nyomja meg az \"OK\" gombot, miközben lenyomva tartja a ctrl billentyűt.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Ez a dokumentum megpróbálja megnyitni a fájl párbeszédpanelt, a megnyitáshoz nyomja meg az \"OK\" gombot.", "PDFE.Controllers.Main.txtSeries": "Sorozatok", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "A mező értékének meg kell egyeznie a „{0}” formátummal.", "PDFE.Controllers.Main.txtXAxis": "X tengely", "PDFE.Controllers.Main.txtYAxis": "Y tengely", diff --git a/apps/pdfeditor/main/locale/hy.json b/apps/pdfeditor/main/locale/hy.json index 7f01d7627b..853a9aebce 100644 --- a/apps/pdfeditor/main/locale/hy.json +++ b/apps/pdfeditor/main/locale/hy.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Խմբագրիչը թարմացվել է", "PDFE.Controllers.Main.titleUpdateVersion": "Տարբերակը փոխվել է", "PDFE.Controllers.Main.txtArt": "Ձեր տեքստը այստեղ", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Ընտրել տարր", "PDFE.Controllers.Main.txtClickToLoad": "Սեղմեք նկարրը բեռնելու համար", "PDFE.Controllers.Main.txtDiagramTitle": "Գծապատկերի վերնագիր", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Սահմանել ցուցակի խմբագրում․․․", "PDFE.Controllers.Main.txtEnterDate": "Մուտքագրեք ամսաթիվ", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Անվավեր արժեք «{0}» դաշտի համար. պետք է լինի {1}-ից մեծ կամ հավասար:", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Անվավեր արժեք «{0}» դաշտի համար. պետք է լինի {1}-ից մեծ կամ հավասար և փոքր կամ հավասար {2}-ի:", "PDFE.Controllers.Main.txtInvalidLess": "Անվավեր արժեք «{0}» դաշտի համար. պետք է լինի {1}-ից փոքր կամ հավասար:", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Մուտքագրված արժեքը չի համապատասխանում «{0}» դաշտի ձևաչափին:", "PDFE.Controllers.Main.txtInvalidValue": "Անվավեր արժեք «{0}» դաշտի համար", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Կան թարմացումներ", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Ֆայլի պատճենը հաջողությամբ պահպանվեց", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Այս փաստաթուղթը փորձում է միանալ {0}-ին:
Եթե ​​վստահում եք այս կայքին, սեղմեք «OK»՝ սեղմած պահելով ctrl ստեղնը:", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Այս փաստաթուղթը փորձում է բացել ֆայլի երկխոսությունը, բացելու համար սեղմեք «OK»:", "PDFE.Controllers.Main.txtSeries": "Շարքեր", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Դաշտի արժեքը պետք է համապատասխանի «{0}» ձևաչափին:", "PDFE.Controllers.Main.txtXAxis": "X առանցք", "PDFE.Controllers.Main.txtYAxis": "Y առանցք", diff --git a/apps/pdfeditor/main/locale/id.json b/apps/pdfeditor/main/locale/id.json index 0d07a3f5e4..8c2501b160 100644 --- a/apps/pdfeditor/main/locale/id.json +++ b/apps/pdfeditor/main/locale/id.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor mengupdate", "PDFE.Controllers.Main.titleUpdateVersion": "Versi telah diubah", "PDFE.Controllers.Main.txtArt": "Teks Anda di sini", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Pilih satu item", "PDFE.Controllers.Main.txtClickToLoad": "Klik untuk memuat gambar", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Mengatur mode editing...", "PDFE.Controllers.Main.txtEnterDate": "Masukkan tanggal", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Nilai tidak valid untuk bidang \"{0}\": harus lebih besar dari atau sama dengan {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Nilai tidak valid untuk bidang \"{0}\": harus lebih besar dari atau sama dengan {1} dan kurang dari atau sama dengan {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Nilai tidak valid untuk bidang \"{0}\": harus kurang dari atau sama dengan {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Nilai yang dimasukkan tidak sesuai dengan format bidang \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Ada pembaruan", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Dokumen ini mencoba terhubung ke {0}.
Jika Anda memercayai situs ini, tekan \"OK\" sembari menekan tombol ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Dokumen ini mencoba membuka dialog file, tekan \"OK\" untuk membuka.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Nilai bidang harus sesuai dengan format \"{0}\"", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/it.json b/apps/pdfeditor/main/locale/it.json index 6cd3ba4e6d..1244dc1169 100644 --- a/apps/pdfeditor/main/locale/it.json +++ b/apps/pdfeditor/main/locale/it.json @@ -314,7 +314,7 @@ "Common.define.chartData.textArea": "Area", "Common.define.chartData.textAreaStacked": "Stacked area", "Common.define.chartData.textAreaStackedPer": "Area impilata al 100%", - "Common.define.chartData.textBar": "Bar", + "Common.define.chartData.textBar": "Barra", "Common.define.chartData.textBarNormal": "Clustered column", "Common.define.chartData.textBarNormal3d": "Colonna 3D raggruppata", "Common.define.chartData.textBarNormal3dPerspective": "Colonna 3D", @@ -365,23 +365,23 @@ "Common.define.smartArt.textArchitectureLayout": "Schema di architettura", "Common.define.smartArt.textArrowRibbon": "Nastro con frecce", "Common.define.smartArt.textAscendingPictureAccentProcess": "Processo di accentuazione dell'immagine ascendente", - "Common.define.smartArt.textBalance": "Balance", - "Common.define.smartArt.textBasicBendingProcess": "Basic bending process", - "Common.define.smartArt.textBasicBlockList": "Basic block list", - "Common.define.smartArt.textBasicChevronProcess": "Basic chevron process", - "Common.define.smartArt.textBasicCycle": "Basic cycle", - "Common.define.smartArt.textBasicMatrix": "Basic matrix", - "Common.define.smartArt.textBasicPie": "Basic pie", - "Common.define.smartArt.textBasicProcess": "Basic process", - "Common.define.smartArt.textBasicPyramid": "Basic pyramid", - "Common.define.smartArt.textBasicRadial": "Basic radial", - "Common.define.smartArt.textBasicTarget": "Basic target", - "Common.define.smartArt.textBasicTimeline": "Basic timeline", - "Common.define.smartArt.textBasicVenn": "Basic Venn", - "Common.define.smartArt.textBendingPictureAccentList": "Bending picture accent list", + "Common.define.smartArt.textBalance": "Equilibrio", + "Common.define.smartArt.textBasicBendingProcess": "Processo curvo di base", + "Common.define.smartArt.textBasicBlockList": "Elenco blocchi di base", + "Common.define.smartArt.textBasicChevronProcess": "Processo chevron di base", + "Common.define.smartArt.textBasicCycle": "Ciclo base", + "Common.define.smartArt.textBasicMatrix": "Matrice di base", + "Common.define.smartArt.textBasicPie": "Grafico a torta di base", + "Common.define.smartArt.textBasicProcess": "Processo di base", + "Common.define.smartArt.textBasicPyramid": "Grafico a piramide di base", + "Common.define.smartArt.textBasicRadial": "Grafico radiale di base", + "Common.define.smartArt.textBasicTarget": "Target di base", + "Common.define.smartArt.textBasicTimeline": "Timeline di base", + "Common.define.smartArt.textBasicVenn": "Diagramma di Venn di base", + "Common.define.smartArt.textBendingPictureAccentList": "Lista distaccata con immagini pendenti", "Common.define.smartArt.textBendingPictureBlocks": "Bending picture blocks", "Common.define.smartArt.textBendingPictureCaption": "Bending picture caption", - "Common.define.smartArt.textBendingPictureCaptionList": "Bending picture caption list", + "Common.define.smartArt.textBendingPictureCaptionList": "Elenco immagini curvate con descrizione", "Common.define.smartArt.textBendingPictureSemiTranparentText": "Bending picture semi-transparent text", "Common.define.smartArt.textBlockCycle": "Block cycle", "Common.define.smartArt.textBubblePictureList": "Bubble picture list", @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato", "PDFE.Controllers.Main.titleUpdateVersion": "La versione è stata cambiata", "PDFE.Controllers.Main.txtArt": "Il tuo testo qui", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Scegli un elemento", "PDFE.Controllers.Main.txtClickToLoad": "Clicca per caricare l'immagine", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Imposta modalità di modifica...", "PDFE.Controllers.Main.txtEnterDate": "Inserisci una data", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Valore non valido per il campo \"{0}\": deve essere maggiore o uguale a {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valore non valido per il campo \"{0}\": deve essere maggiore o uguale a {1} e minore o uguale a {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Valore non valido per il campo \"{0}\": deve essere inferiore o uguale a {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Il valore inserito non corrisponde al formato del campo. \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Valore non valido per il campo “{0}”.", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Ci sono aggiornamenti disponibili", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "La copia del file è stata salvata correttamente", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Questo documento sta tentando di connettersi a {0}.
Se consideri affidabile questo sito, clicca \"OK\" mentre tieni premuto il tasto Ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Questo documento sta tentando di aprire la finestra di dialogo del file, premi \"OK\" per aprirla.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Il valore del campo deve corrispondere al formato \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", @@ -1668,8 +1675,8 @@ "PDFE.Views.ChartSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, shape, chart, or table.", "PDFE.Views.ChartSettingsAdvanced.textAltTitle": "Title", "PDFE.Views.ChartSettingsAdvanced.textAuto": "Automatico", - "PDFE.Views.ChartSettingsAdvanced.textAxisCrosses": "Axis Crosses", - "PDFE.Views.ChartSettingsAdvanced.textAxisPos": "Axis Position", + "PDFE.Views.ChartSettingsAdvanced.textAxisCrosses": "Intersezione con l'asse", + "PDFE.Views.ChartSettingsAdvanced.textAxisPos": "Posizione asse", "PDFE.Views.ChartSettingsAdvanced.textAxisTitle": "Title", "PDFE.Views.ChartSettingsAdvanced.textBase": "Base", "PDFE.Views.ChartSettingsAdvanced.textBetweenTickMarks": "Between Tick Marks", @@ -1700,7 +1707,7 @@ "PDFE.Views.ChartSettingsAdvanced.textInnerBottom": "Inner Bottom", "PDFE.Views.ChartSettingsAdvanced.textInnerTop": "Inner Top", "PDFE.Views.ChartSettingsAdvanced.textKeepRatio": "Constant proportions", - "PDFE.Views.ChartSettingsAdvanced.textLabelDist": "Axis Label Distance", + "PDFE.Views.ChartSettingsAdvanced.textLabelDist": "Distanza dell'etichetta dell'asse", "PDFE.Views.ChartSettingsAdvanced.textLabelInterval": "Interval between Labels", "PDFE.Views.ChartSettingsAdvanced.textLabelOptions": "Label Options", "PDFE.Views.ChartSettingsAdvanced.textLabelPos": "Label Position", @@ -1818,7 +1825,7 @@ "PDFE.Views.DocumentHolder.textArrangeForward": "Porta avanti", "PDFE.Views.DocumentHolder.textArrangeFront": "Porta in primo piano", "PDFE.Views.DocumentHolder.textAxes": "Assi", - "PDFE.Views.DocumentHolder.textAxisTitles": "Axis Titles", + "PDFE.Views.DocumentHolder.textAxisTitles": "Titoli dell'asse", "PDFE.Views.DocumentHolder.textBottom": "Bottom", "PDFE.Views.DocumentHolder.textCenter": "Center", "PDFE.Views.DocumentHolder.textChartTitle": "Chart Title", diff --git a/apps/pdfeditor/main/locale/ja.json b/apps/pdfeditor/main/locale/ja.json index ba48f4208f..b67d87e42b 100644 --- a/apps/pdfeditor/main/locale/ja.json +++ b/apps/pdfeditor/main/locale/ja.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "エディターが更新された", "PDFE.Controllers.Main.titleUpdateVersion": "バージョンが変更されました", "PDFE.Controllers.Main.txtArt": "テキストを入力…", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "アイテムを選択してください", "PDFE.Controllers.Main.txtClickToLoad": "クリックして画像を読み込む", "PDFE.Controllers.Main.txtDiagramTitle": "グラフのタイトル", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "編集モードを設定する", "PDFE.Controllers.Main.txtEnterDate": "日付を入力してください", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "フィールド \"{0}\" の有効値: {1} 以上でなければなりません。", "PDFE.Controllers.Main.txtInvalidGreaterLess": "フィールド \"{0}\" の有効値: {1} 以上 {2} 以下でなければなりません。", "PDFE.Controllers.Main.txtInvalidLess": "フィールド \"{0}\" の有効値:{1} 以下でなければなりません。", "PDFE.Controllers.Main.txtInvalidPdfFormat": "入力された値がフィールド\"{0}\"のフォーマットと一致しません。", "PDFE.Controllers.Main.txtInvalidValue": "フィールド \"{0}\" の値が無効です", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "アップデートがあります", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "ファイルのコピーが正常に保存されました", - "PDFE.Controllers.Main.txtSecurityWarningLink": "このドキュメントは{0}に接続しようとしています。
このサイトを信頼するなら、ctrlキーを押しながら「OK」を押してください。", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "このドキュメントはファイルダイアログを開こうとしています。開くには、OKを押してください。", "PDFE.Controllers.Main.txtSeries": "系列", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "フィールドの値はフォーマット\"{0}\"と一致しなければなりません。", "PDFE.Controllers.Main.txtXAxis": "X 軸", "PDFE.Controllers.Main.txtYAxis": "Y軸", diff --git a/apps/pdfeditor/main/locale/ko.json b/apps/pdfeditor/main/locale/ko.json index 4fee4f2286..f64a571dbd 100644 --- a/apps/pdfeditor/main/locale/ko.json +++ b/apps/pdfeditor/main/locale/ko.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.", "PDFE.Controllers.Main.titleUpdateVersion": "버전이 변경되었습니다.", "PDFE.Controllers.Main.txtArt": "여기에 텍스트를 입력하여 주십시오", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "아이템 선택", "PDFE.Controllers.Main.txtClickToLoad": "이미지를 읽으려면 여기를 클릭하세요", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...", "PDFE.Controllers.Main.txtEnterDate": "미주 날짜", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "필드 \"{0}\"의 값이 잘못되었습니다: {1} 이상이어야 합니다.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "필드 \"{0}\"의 값이 잘못되었습니다: {1} 이상이어야 하고 {2} 이하이어야 합니다.", "PDFE.Controllers.Main.txtInvalidLess": "필드 \"{0}\"의 값이 잘못되었습니다: {1} 이하이어야 합니다.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "입력한 값이 필드 \"{0}\"의 형식과 일치하지 않습니다.", "PDFE.Controllers.Main.txtInvalidValue": "필드 \"{0}\"의 값이 올바르지 않습니다.", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "업데이트가 있습니다.", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "파일 복사본이 성공적으로 저장되었습니다", - "PDFE.Controllers.Main.txtSecurityWarningLink": "이 문서는 {0}에 연결을 시도하고 있습니다.
만약 이 사이트를 신뢰한다면 Ctrl 키를 누른 상태에서 \"확인\"을 누르세요.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "이 문서는 파일 대화 상자를 열려고 합니다. 열려면 \"확인\"을 누르세요.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "필드 값은 형식 \"{0}\"과(와) 일치해야 합니다.", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/lo.json b/apps/pdfeditor/main/locale/lo.json index 79c035e65f..cbd0587696 100644 --- a/apps/pdfeditor/main/locale/lo.json +++ b/apps/pdfeditor/main/locale/lo.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "ອັບເດດການແກ້ໄຂ", "PDFE.Controllers.Main.titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "ເລືອກໄອເທມ", "PDFE.Controllers.Main.txtClickToLoad": "ກົດເພື່ອໂຫຼດຮູບ", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "ຕັ້ງຄ່າ ຮູບແບບການແກ້ໄຂ", "PDFE.Controllers.Main.txtEnterDate": "ປ້ອນວັນທີ", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "ທ່ານໄດ້ປັບປຸງ", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/lv.json b/apps/pdfeditor/main/locale/lv.json index 0e2964f8b1..af070772ca 100644 --- a/apps/pdfeditor/main/locale/lv.json +++ b/apps/pdfeditor/main/locale/lv.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Atjaunināts redaktors", "PDFE.Controllers.Main.titleUpdateVersion": "Versija mainīta", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Izvēlieties vienumu", "PDFE.Controllers.Main.txtClickToLoad": "Noklikšķiniet, lai ielādētu attēlu", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Uzstāda rediģēšanas režīmu...", "PDFE.Controllers.Main.txtEnterDate": "Ievadīt datumu", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Jums ir atjauninājumi", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/ms.json b/apps/pdfeditor/main/locale/ms.json index 40873cf051..771b429c26 100644 --- a/apps/pdfeditor/main/locale/ms.json +++ b/apps/pdfeditor/main/locale/ms.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor dikemas kini", "PDFE.Controllers.Main.titleUpdateVersion": "Perubahan versi", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Pilih satu item", "PDFE.Controllers.Main.txtClickToLoad": "Klik untuk muatkan imej", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Tetapkan mod pengeditan…", "PDFE.Controllers.Main.txtEnterDate": "Masukkan Tarikh", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Anda mempunyai kemas kini", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/nl.json b/apps/pdfeditor/main/locale/nl.json index 08db41e4a7..48c04e7399 100644 --- a/apps/pdfeditor/main/locale/nl.json +++ b/apps/pdfeditor/main/locale/nl.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor bijgewerkt", "PDFE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd", "PDFE.Controllers.Main.txtArt": "Hier tekst invoeren", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Kies een item", "PDFE.Controllers.Main.txtClickToLoad": "Klik om afbeelding te laden", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", "PDFE.Controllers.Main.txtEnterDate": "Vul een datum in", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Updates beschikbaar", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/pl.json b/apps/pdfeditor/main/locale/pl.json index 7c2a5ecc51..c0424bc020 100644 --- a/apps/pdfeditor/main/locale/pl.json +++ b/apps/pdfeditor/main/locale/pl.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", "PDFE.Controllers.Main.titleUpdateVersion": "Wersja uległa zmianie", "PDFE.Controllers.Main.txtArt": "Twój tekst tutaj", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Wybierz element", "PDFE.Controllers.Main.txtClickToLoad": "Kliknij, aby załadować obraz", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", "PDFE.Controllers.Main.txtEnterDate": "Wpisz datę", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Niepoprawna wartość dla pola \"{0}\": musi być większa lub równa {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Niepoprawna wartość dla pola \"{0}\": musi być większa lub równa {1} i mniejsza lub równa {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Niepoprawna wartość dla pola \"{0}\": musi być mniejsza lub równa {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Wprowadzona wartość nie pasuje do formatu pola \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Masz aktualizacje", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Kopia pliku została pomyślnie zapisana", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Ten dokument próbuje połączyć się z {0}.
Jeśli ufasz tej witrynie, naciśnij \"OK\", przytrzymując klawisz Ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Ten dokument próbuje otworzyć okno dialogowe pliku, naciśnij \"OK\", aby otworzyć.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Wartość pola powinna być zgodna z formatem \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/pt-pt.json b/apps/pdfeditor/main/locale/pt-pt.json index d43663d76f..51aba436fa 100644 --- a/apps/pdfeditor/main/locale/pt-pt.json +++ b/apps/pdfeditor/main/locale/pt-pt.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor atualizado", "PDFE.Controllers.Main.titleUpdateVersion": "Versão alterada", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Escolha um item", "PDFE.Controllers.Main.txtClickToLoad": "Clique para carregar a imagem", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Definir modo de edição...", "PDFE.Controllers.Main.txtEnterDate": "Introduza uma data", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Valor inválido para o campo \"{0}\": tem que ser maior ou igual a {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valor inválido para o campo \"{0}\": tem que ser maior ou igual a {1} e menor do que {1}.", "PDFE.Controllers.Main.txtInvalidLess": "Valor inválido para o campo \"{0}\": tem que ser menor ou igual a {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "O valor introduzido não coincide com o formato definido para o campo \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Existem atualizações", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Este documento está a tentar estabelecer ligação a {0}.
Se achar que o site é fiável, prima \"OK\" com a tecla Ctrl premida.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Este documento está a tentar abrir uma caixa de diálogo. Prima \"OK\" para continuar.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "O valor do campo deve coincidir com o formato \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/pt.json b/apps/pdfeditor/main/locale/pt.json index 93251ce2df..063121d2a2 100644 --- a/apps/pdfeditor/main/locale/pt.json +++ b/apps/pdfeditor/main/locale/pt.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor atualizado", "PDFE.Controllers.Main.titleUpdateVersion": "Versão alterada", "PDFE.Controllers.Main.txtArt": "Seu texto aqui", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Escolha um item", "PDFE.Controllers.Main.txtClickToLoad": "Clique para carregar imagem", "PDFE.Controllers.Main.txtDiagramTitle": "Título do Gráfico", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Definir modo de edição...", "PDFE.Controllers.Main.txtEnterDate": "Insira uma data", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Valor inválido para campo \"{0}\": deve ser maior ou igual a {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valor inválido para campo \"{0}\": deve ser maior ou igual a {1} e menor ou igual a {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Valor inválido para campo \"{0}\": deve ser menor ou igual a {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "O valor inserido não corresponde ao formato do campo \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Valor inválido para o campo \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Você tem atualizações", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "A cópia do arquivo foi salva com êxito", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Este documento está tentando se conectar a {0}.
Se você confia neste site, pressione \"OK\" enquanto mantém pressionada a tecla Ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Este documento está tentando abrir a caixa de diálogo de arquivo, pressione \"OK\" para abrir.", "PDFE.Controllers.Main.txtSeries": "Série", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "O valor do campo deve corresponder ao formato \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Eixo X", "PDFE.Controllers.Main.txtYAxis": "Eixo Y", diff --git a/apps/pdfeditor/main/locale/ro.json b/apps/pdfeditor/main/locale/ro.json index 3ca1caee5b..1684ad62fd 100644 --- a/apps/pdfeditor/main/locale/ro.json +++ b/apps/pdfeditor/main/locale/ro.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", "PDFE.Controllers.Main.titleUpdateVersion": "Versiunea s-a modificat", "PDFE.Controllers.Main.txtArt": "Textul dvs. aici", + "PDFE.Controllers.Main.txtButton": "Buton", + "PDFE.Controllers.Main.txtCheckbox": "Caseta de selectare", "PDFE.Controllers.Main.txtChoose": "Selectați un element", "PDFE.Controllers.Main.txtClickToLoad": "Faceți clic pentru a încărca imaginea", "PDFE.Controllers.Main.txtDiagramTitle": "Titlu diagramă", + "PDFE.Controllers.Main.txtDropdown": "Listă derulantă", "PDFE.Controllers.Main.txtEditingMode": "Setare modul de editare...", "PDFE.Controllers.Main.txtEnterDate": "Introducere data", + "PDFE.Controllers.Main.txtGroup": "Grup", "PDFE.Controllers.Main.txtInvalidGreater": "Valoarea din câmpul \"{0}\" nevalidă: trebuie să fie mai mare sau egală cu {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Valoarea din câmpul \"{0}\" nevalidă: trebuie să fie mai mare sau egală cu {1} și mai mică sau egală cu {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Valoarea din câmpul \"{0}\" nevalidă: trebuie să fie mai mică sau egală cu {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Valoarea introdusă nu corespunde formatului de câmp \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Valoarea nu este permisă pentru câmpul \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Casetă listă", "PDFE.Controllers.Main.txtNeedSynchronize": "Aveți actualizări disponibile", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Copia fișierului a fost salvată cu succes", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Acest document încearcă să se conecteze la {0}.
Dacă acest site prezintă încredere pentru dvs, apăsați OK și țineți apăsată tasta CTRL.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "Acest document încearcă să se conecteze la {0}.
Dacă aveți încredere în acest site, apăsați OK.", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Acest document încearcă să deschidă fereastra de dialog, apăsați OK pentru a-l deschide.", "PDFE.Controllers.Main.txtSeries": "Serie", + "PDFE.Controllers.Main.txtSignature": "Semnătură", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Valoarea câmpului trebuie să corespundă formatului\"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Axa X", "PDFE.Controllers.Main.txtYAxis": "Axa Y", diff --git a/apps/pdfeditor/main/locale/ru.json b/apps/pdfeditor/main/locale/ru.json index 0a95112865..cf333e3c0c 100644 --- a/apps/pdfeditor/main/locale/ru.json +++ b/apps/pdfeditor/main/locale/ru.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Редактор обновлен", "PDFE.Controllers.Main.titleUpdateVersion": "Версия изменилась", "PDFE.Controllers.Main.txtArt": "Введите ваш текст", + "PDFE.Controllers.Main.txtButton": "Кнопка", + "PDFE.Controllers.Main.txtCheckbox": "Флажок", "PDFE.Controllers.Main.txtChoose": "Выберите элемент", "PDFE.Controllers.Main.txtClickToLoad": "Нажмите для загрузки изображения", "PDFE.Controllers.Main.txtDiagramTitle": "Заголовок диаграммы", + "PDFE.Controllers.Main.txtDropdown": "Выпадающий список", "PDFE.Controllers.Main.txtEditingMode": "Установка режима редактирования...", "PDFE.Controllers.Main.txtEnterDate": "Введите дату", + "PDFE.Controllers.Main.txtGroup": "Группа", "PDFE.Controllers.Main.txtInvalidGreater": "Неверное значение для поля \"{0}\": должно быть больше или равно {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Неверное значение для поля \"{0}\": должно быть больше или равно {1} и меньше или равно {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Неверное значение для поля \"{0}\": должно быть меньше или равно {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Введено значение, не соответствующее формату поля \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Недопустимое значение для поля \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Список", "PDFE.Controllers.Main.txtNeedSynchronize": "Есть обновления", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Копия файла успешно сохранена", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Этот документ пытается подключиться к {0}.
Если вы доверяете этому сайту, нажмите \"OK\", удерживая клавишу ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "Этот документ пытается подключиться к {0}.
Если вы доверяете этому сайту, нажмите \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Этот документ пытается открыть диалоговое окно файла, нажмите \"OK\", чтобы открыть.", "PDFE.Controllers.Main.txtSeries": "Ряд", + "PDFE.Controllers.Main.txtSignature": "Подпись", + "PDFE.Controllers.Main.txtText": "Текст", "PDFE.Controllers.Main.txtValidPdfFormat": "Значение поля должно соответствовать формату \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Ось X", "PDFE.Controllers.Main.txtYAxis": "Ось Y", diff --git a/apps/pdfeditor/main/locale/si.json b/apps/pdfeditor/main/locale/si.json index 48d15515ee..a73e16a86a 100644 --- a/apps/pdfeditor/main/locale/si.json +++ b/apps/pdfeditor/main/locale/si.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "සංස්කරකය යාවත්කාල විය", "PDFE.Controllers.Main.titleUpdateVersion": "අනුවාදය වෙනස් විය", "PDFE.Controllers.Main.txtArt": "ඔබගේ පෙළ මෙතැන", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "අථකයක් තෝරන්න", "PDFE.Controllers.Main.txtClickToLoad": "රූපය පූරණයට ඔබන්න", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "සංස්කරණ ප්‍රකාරය සකසන්න...", "PDFE.Controllers.Main.txtEnterDate": "දිනයක් යොදන්න", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "\"{0}\" ක්‍ෂේත්‍රය සඳහා වලංගු අගය: {1} ට වඩා වැඩි හෝ සමාන විය යුතුය.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "\"{0}\" ක්‍ෂේත්‍රය සඳහා වලංගු අගය: {1} ට වඩා වැඩි හෝ සමාන සහ {2} ට අඩු හෝ සමාන විය යුතුය.", "PDFE.Controllers.Main.txtInvalidLess": "\"{0}\" ක්‍ෂේත්‍රය සඳහා වලංගු අගය: {2} ට අඩු හෝ සමාන විය යුතුය.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "ඇතුල් කළ අගය \"{0}\" ක්‍ෂේත්‍රයේ ආකෘතියට නොගැළපේ.", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "ඔබට යාවත්කාල තිබේ", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "ගොනුවේ පිටපත සාර්ථකව සුරැකිණි", - "PDFE.Controllers.Main.txtSecurityWarningLink": "මෙම ලේඛනය {0} වෙත සම්බන්ධ වීමට උත්සාහ කරයි.
ඔබට මෙම අඩවිය විශ්වාස නම්, ctrl යතුර ඔබාගෙන \"හරි\" ඔබන්න.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "මෙම ලේඛනය ගොනු කවුළුව ඇරීමට උත්සාහ කරයි, එය ඇරීමට \"හරි\" ඔබන්න.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "ක්‍ෂේත්‍රයේ අගය \"{0}\" ආකෘතියට ගැළපිය යුතුය.", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/sk.json b/apps/pdfeditor/main/locale/sk.json index 3c4b8f81e6..9a9c9b1e04 100644 --- a/apps/pdfeditor/main/locale/sk.json +++ b/apps/pdfeditor/main/locale/sk.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "PDFE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Zvolte položku", "PDFE.Controllers.Main.txtClickToLoad": "Klikni pre nahratie obrázku", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...", "PDFE.Controllers.Main.txtEnterDate": "Zadajte dátum", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/sl.json b/apps/pdfeditor/main/locale/sl.json index a6e159ecca..8d3aef99f5 100644 --- a/apps/pdfeditor/main/locale/sl.json +++ b/apps/pdfeditor/main/locale/sl.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", "PDFE.Controllers.Main.titleUpdateVersion": "Različica spremenjena", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Choose an item", "PDFE.Controllers.Main.txtClickToLoad": "Click to load image", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Nastavi način urejanja...", "PDFE.Controllers.Main.txtEnterDate": "Vnesite datum", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Imate posodobitve", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/sq.json b/apps/pdfeditor/main/locale/sq.json index 52b3de8419..dae097dd12 100644 --- a/apps/pdfeditor/main/locale/sq.json +++ b/apps/pdfeditor/main/locale/sq.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Redaktori i përditësuar", "PDFE.Controllers.Main.titleUpdateVersion": "Version i ndryshuar", "PDFE.Controllers.Main.txtArt": "Teksti juaj këtu", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Zgjidhni një artikull", "PDFE.Controllers.Main.txtClickToLoad": "Kliko të ngarkosh foton", "PDFE.Controllers.Main.txtDiagramTitle": "Titulli grafikut", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Vendosni mënyrën e redaktimit", "PDFE.Controllers.Main.txtEnterDate": "Futni nje datë", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Vlera e pavlefshme për fushën \"{0}\": duhet të jetë më e madhe ose e barabartë me {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Vlera e pavlefshme për fushën \"{0}\": duhet të jetë më e madhe ose e barabartë me {1} dhe më e vogël se ose e barabartë me {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Vlera e pavlefshme për fushën \"{0}\": duhet të jetë më e vogël ose e barabartë me {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Vlera e futur nuk përputhet me formatin e fushës \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Vlerë e pavlefshme për fushën \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Ju keni përditësime", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Kopja e skedarit është ruajtur me sukses", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Ky dokument po përpiqet të lidhet me {0}.
Nëse i besoni këtij sajti, shtypni \"OK\" duke mbajtur të shtypur tastin ctrl.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Ky dokument po përpiqet të hapë dialogun e skedarit, shtypni \"OK\" për ta hapur.", "PDFE.Controllers.Main.txtSeries": "Seri", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Vlera e fushës duhet të përputhet me formatin \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Boshti X", "PDFE.Controllers.Main.txtYAxis": "Akse Y", diff --git a/apps/pdfeditor/main/locale/sr-cyrl.json b/apps/pdfeditor/main/locale/sr-cyrl.json index 3aca691370..1bc9e394b8 100644 --- a/apps/pdfeditor/main/locale/sr-cyrl.json +++ b/apps/pdfeditor/main/locale/sr-cyrl.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Уређивач ажуриран", "PDFE.Controllers.Main.titleUpdateVersion": "Верзија промењена", "PDFE.Controllers.Main.txtArt": "Ваш текст овде", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Изабери ставку", "PDFE.Controllers.Main.txtClickToLoad": "Кликни да учиташ слику", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Подеси режим уређивања...", "PDFE.Controllers.Main.txtEnterDate": "Унеси датум", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Неважећа вредност за поље \"{0}\": мора бити веће од или једнако са {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Неважећа вредност за поље \"{0}\": мора бити веће од или једнако са {1} и мање од или једнако са {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Неважећа вредност за поље \"{0}\": мора бити мање од или једнако са {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Вредност унета се не поклапа са форматом поља \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Имате ажурирања", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Копија датотеке је успешно сачуванадатотеку, молимо сачекајте...", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Овај документ покушава да се конектује на {0}.
Ако верујете овом сајту, притисните \"ОК\" док држите Ctrl тастер.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Овај документ покушава да отвори дијалог фајла, притисните \"ОК\" да отворите.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Вредност поља треба да се поклапа са форматом \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/sr.json b/apps/pdfeditor/main/locale/sr.json index 926b98550e..fbb21bb20f 100644 --- a/apps/pdfeditor/main/locale/sr.json +++ b/apps/pdfeditor/main/locale/sr.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Uređivač apdejtovan", "PDFE.Controllers.Main.titleUpdateVersion": "Promenjena verzija", "PDFE.Controllers.Main.txtArt": "Vaš tekst ovde ", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Izaberi stavku", "PDFE.Controllers.Main.txtClickToLoad": "Klikni da učitaš sliku", "PDFE.Controllers.Main.txtDiagramTitle": "Naslov grafikona", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Podesi režim uređivanja...", "PDFE.Controllers.Main.txtEnterDate": "Unesi datum", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Nevažeća vrednost za polje \"{0}\": mora biti veće od ili jednako sa {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Nevažeća vrednost za polje \"{0}\": mora biti veće od ili jednako sa {1} i manje od ili jednako sa {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Nevažeća vrednost za polje \"{0}\": mora biti manje od ili jednako sa {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "Vrednost uneta se ne poklapa sa formatom polja \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Nevažeća vrednost za polje „{0}“", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Imate ažuriranja", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "Kopija datoteke je uspešno sačuvana", - "PDFE.Controllers.Main.txtSecurityWarningLink": "Ovaj dokument pokušava da se konektuje na {0}.
Ako verujete ovom sajtu, pritisnite \"OK\" dok držite ctrl taster.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "Ovaj dokument pokušava da otvori dijalog fajla, pritisnite \"OK\" da otvorite.", "PDFE.Controllers.Main.txtSeries": "Serije", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Vrednost polja treba da se poklapa sa formatom \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "Osa X", "PDFE.Controllers.Main.txtYAxis": "Y osa", diff --git a/apps/pdfeditor/main/locale/sv.json b/apps/pdfeditor/main/locale/sv.json index 8328f99089..746d171f39 100644 --- a/apps/pdfeditor/main/locale/sv.json +++ b/apps/pdfeditor/main/locale/sv.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editorn är uppdaterad", "PDFE.Controllers.Main.titleUpdateVersion": "Version ändrad", "PDFE.Controllers.Main.txtArt": "Din text här", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Välj ett objekt", "PDFE.Controllers.Main.txtClickToLoad": "Klicka för att ladda bild", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge...", "PDFE.Controllers.Main.txtEnterDate": "Ange ett datum", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/tr.json b/apps/pdfeditor/main/locale/tr.json index 4ed107442d..52b7762124 100644 --- a/apps/pdfeditor/main/locale/tr.json +++ b/apps/pdfeditor/main/locale/tr.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor updated", "PDFE.Controllers.Main.titleUpdateVersion": "Versiyon değiştirildi", "PDFE.Controllers.Main.txtArt": "Metni buraya giriniz", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Bir öğe seçin", "PDFE.Controllers.Main.txtClickToLoad": "Resmi yüklemek için tıkla", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Düzenleme modunu belirle...", "PDFE.Controllers.Main.txtEnterDate": "Bir tarih girin", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Güncellemeleriniz var", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/uk.json b/apps/pdfeditor/main/locale/uk.json index e23365e8c3..6cf8746143 100644 --- a/apps/pdfeditor/main/locale/uk.json +++ b/apps/pdfeditor/main/locale/uk.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Редактор оновлено", "PDFE.Controllers.Main.titleUpdateVersion": "Версію змінено", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Оберіть елемент", "PDFE.Controllers.Main.txtClickToLoad": "Натисніть для завантаження зображення", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Встановити режим редагування ...", "PDFE.Controllers.Main.txtEnterDate": "Введіть дату", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "Є оновлення", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/ur.json b/apps/pdfeditor/main/locale/ur.json index 82946567fa..cef64404dc 100644 --- a/apps/pdfeditor/main/locale/ur.json +++ b/apps/pdfeditor/main/locale/ur.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "ایڈیٹر کو اپ ڈیٹ کر دیا گیا۔", "PDFE.Controllers.Main.titleUpdateVersion": "ورژن بدل گیا", "PDFE.Controllers.Main.txtArt": "آپ کا متن یہاں", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "ایک آئٹم کا انتخاب کریں۔", "PDFE.Controllers.Main.txtClickToLoad": "تصویر لوڈ کرنے کے لیے کلک کریں۔", "PDFE.Controllers.Main.txtDiagramTitle": "عنوانِ چارٹ", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "ترمیم کا طریقہ طے کریں۔۔۔", "PDFE.Controllers.Main.txtEnterDate": "ایک تاریخ درج کریں۔", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "فیلڈ \"{0}\" کے لیے غلط قدر: {1} سے زیادہ یا اس کے برابر ہونی چاہیے۔", "PDFE.Controllers.Main.txtInvalidGreaterLess": "فیلڈ \"{0}\" کے لیے غلط قدر: {1} سے زیادہ یا اس کے برابر اور {2} سے کم یا اس کے برابر ہونی چاہیے۔", "PDFE.Controllers.Main.txtInvalidLess": "فیلڈ \"{0}\" کے لیے غلط قدر: {1} سے کم یا اس کے برابر ہونی چاہیے۔", "PDFE.Controllers.Main.txtInvalidPdfFormat": "درج کردہ قدر فیلڈ \"{0}\" کے فارمیٹ سے مماثل نہیں ہے۔", "PDFE.Controllers.Main.txtInvalidValue": "فیلڈ \"{0}\" کے لیے غلط قدر", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "آپ کے لئے اپڈیٹس ہیں", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "فائل کاپی کامیابی کے ساتھ محفوظ ہو گئی۔", - "PDFE.Controllers.Main.txtSecurityWarningLink": "یہ دستاویز {0} سے رابطہ قائم کرنے کی کوشش کر رہی ہے۔ اگر آپ کو اس سائٹ پر بھروسہ ہے تو ، CTRL کلید کو تھامتے ہوئے \"اوکے\" دبائیں۔", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "یہ دستاویز فائل ڈائیلاگ کو کھولنے کی کوشش کر رہی ہے، کھولنے کے لیے \"OK\" دبائیں۔", "PDFE.Controllers.Main.txtSeries": "سیریز", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "فیلڈ ویلیو فارمیٹ \"{0}\" سے مماثل ہونی چاہیے۔", "PDFE.Controllers.Main.txtXAxis": "ایکس محور", "PDFE.Controllers.Main.txtYAxis": "وائے محور", diff --git a/apps/pdfeditor/main/locale/vi.json b/apps/pdfeditor/main/locale/vi.json index 5aa63def03..5f3ebfe4ac 100644 --- a/apps/pdfeditor/main/locale/vi.json +++ b/apps/pdfeditor/main/locale/vi.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "Editor updated", "PDFE.Controllers.Main.titleUpdateVersion": "Version changed", "PDFE.Controllers.Main.txtArt": "Your text here", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "Choose an item", "PDFE.Controllers.Main.txtClickToLoad": "Click to load image", "PDFE.Controllers.Main.txtDiagramTitle": "Chart title", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "Set editing mode...", "PDFE.Controllers.Main.txtEnterDate": "Enter a date", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Invalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "You have updates", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "The file copy was successfully saved", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "Series", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X Axis", "PDFE.Controllers.Main.txtYAxis": "Y Axis", diff --git a/apps/pdfeditor/main/locale/zh-tw.json b/apps/pdfeditor/main/locale/zh-tw.json index 6dd11cfa33..e3cbfd969d 100644 --- a/apps/pdfeditor/main/locale/zh-tw.json +++ b/apps/pdfeditor/main/locale/zh-tw.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "編輯器已更新", "PDFE.Controllers.Main.titleUpdateVersion": "版本已更改", "PDFE.Controllers.Main.txtArt": "在此輸入文字", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "選擇一個項目", "PDFE.Controllers.Main.txtClickToLoad": "點此讀取圖片", "PDFE.Controllers.Main.txtDiagramTitle": "圖表標題", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "設定編輯模式...", "PDFE.Controllers.Main.txtEnterDate": "輸入日期", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "Ivalid value for field \"{0}\": must be greater than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidGreaterLess": "Ivalid value for field \"{0}\": must be greater than or equal to {1} and less then or equal to {2}.", "PDFE.Controllers.Main.txtInvalidLess": "Ivalid value for field \"{0}\": must be less than or equal to {1}.", "PDFE.Controllers.Main.txtInvalidPdfFormat": "The value entered does not match the format of the field \"{0}\".", "PDFE.Controllers.Main.txtInvalidValue": "Ivalid value for field \"{0}\"", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "您有更新", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "檔案副本已成功儲存", - "PDFE.Controllers.Main.txtSecurityWarningLink": "This document is trying to connect to {0}.
If you trust this site, press \"OK\" while holding down the ctrl key.", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "This document is trying to open file dialog, press \"OK\" to open.", "PDFE.Controllers.Main.txtSeries": "系列", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "Field value should match format \"{0}\".", "PDFE.Controllers.Main.txtXAxis": "X軸", "PDFE.Controllers.Main.txtYAxis": "Y軸", diff --git a/apps/pdfeditor/main/locale/zh.json b/apps/pdfeditor/main/locale/zh.json index 63656c486f..3ba6779100 100644 --- a/apps/pdfeditor/main/locale/zh.json +++ b/apps/pdfeditor/main/locale/zh.json @@ -1546,21 +1546,28 @@ "PDFE.Controllers.Main.titleServerVersion": "编辑器已更新", "PDFE.Controllers.Main.titleUpdateVersion": "版本已变化", "PDFE.Controllers.Main.txtArt": "在此输入文字", + "PDFE.Controllers.Main.txtButton": "Button", + "PDFE.Controllers.Main.txtCheckbox": "Checkbox", "PDFE.Controllers.Main.txtChoose": "选择一项", "PDFE.Controllers.Main.txtClickToLoad": "单击以加载图像", "PDFE.Controllers.Main.txtDiagramTitle": "图表标题", + "PDFE.Controllers.Main.txtDropdown": "Dropdown", "PDFE.Controllers.Main.txtEditingMode": "设置编辑模式..", "PDFE.Controllers.Main.txtEnterDate": "输入日期", + "PDFE.Controllers.Main.txtGroup": "Group", "PDFE.Controllers.Main.txtInvalidGreater": "字段“{0}”的值无效:必须大于或等于{1}。", "PDFE.Controllers.Main.txtInvalidGreaterLess": "字段“{0}”的值无效:必须大于或等于{1}且小于或等于{2}。", "PDFE.Controllers.Main.txtInvalidLess": "字段“{0}”的值无效:必须小于或等于{1}。", "PDFE.Controllers.Main.txtInvalidPdfFormat": "输入的值与字段“{0}”的格式不匹配。", "PDFE.Controllers.Main.txtInvalidValue": "字段“{0}”的值无效", + "PDFE.Controllers.Main.txtListbox": "Listbox", "PDFE.Controllers.Main.txtNeedSynchronize": "您有更新", "PDFE.Controllers.Main.txtSaveCopyAsComplete": "已成功保存文件副本", - "PDFE.Controllers.Main.txtSecurityWarningLink": "此文档正在尝试连接到{0}
如果您信任此网站,请在按住ctrl键的同时按“确定”。", + "PDFE.Controllers.Main.txtSecurityWarningLinkOk": "This document is trying to connect to {0}.
If you trust this site, press \"OK\".", "PDFE.Controllers.Main.txtSecurityWarningOpenFile": "此文档正在尝试打开文件对话框,请按“确定”打开。", "PDFE.Controllers.Main.txtSeries": "序列", + "PDFE.Controllers.Main.txtSignature": "Signature", + "PDFE.Controllers.Main.txtText": "Text", "PDFE.Controllers.Main.txtValidPdfFormat": "字段值应与格式“{0}”匹配。", "PDFE.Controllers.Main.txtXAxis": "X轴", "PDFE.Controllers.Main.txtYAxis": "Y轴", diff --git a/apps/pdfeditor/main/resources/less/filemenu.less b/apps/pdfeditor/main/resources/less/filemenu.less index 59b69c34d2..73ab020473 100644 --- a/apps/pdfeditor/main/resources/less/filemenu.less +++ b/apps/pdfeditor/main/resources/less/filemenu.less @@ -386,20 +386,21 @@ div { width: 100%; height: 100%; + + svg { + display: none; + width: 24px; + height: 30px; + + .pixel-ratio__2_5 & { + display: block; + } + } + div{ background: ~"url(@{common-image-const-path}/doc-formats/formats.png)"; background-size: 1200px 30px; - svg { - display: none; - width: 24px; - height: 30px; - - .pixel-ratio__2_5 & { - display: block; - } - } - &:not(.svg-file-recent) { .pixel-ratio__1_25 & { background-image: ~"url(@{common-image-const-path}/doc-formats/formats@1.25x.png)"; diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 96fe4b5414..0826062b5e 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -155,7 +155,6 @@ PE.ApplicationController = new(function(){ api.asc_setDocInfo(docInfo); api.asc_getEditorPermissions(config.licenseUrl, config.customerId); api.asc_enableKeyEvents(true); - common.controller.Shortcuts.setApi(api); Common.Analytics.trackEvent('Load', 'Start'); } @@ -351,6 +350,8 @@ PE.ApplicationController = new(function(){ embed: '#idt-embed' }); + common.controller.Shortcuts.setApi(api); + api.asc_registerCallback('asc_onMouseMoveStart', onDocMouseMoveStart); api.asc_registerCallback('asc_onMouseMoveEnd', onDocMouseMoveEnd); api.asc_registerCallback('asc_onMouseMove', onDocMouseMove); diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index 83ea23fa36..7e4b567ef0 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -558,7 +558,7 @@ define([ this.api.asc_coAuthoringDisconnect(); Common.NotificationCenter.trigger('collaboration:sharingdeny'); Common.NotificationCenter.trigger('api:disconnect'); - !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : data.message, + !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : Common.Utils.String.htmlEncode(data.message), target: '#toolbar', maxwidth: 600, showButton: false, automove: true, noHighlight: true, noArrow: true, multiple: true, callback: function() { me._state.lostEditingRights = false; @@ -2832,7 +2832,7 @@ define([ } Common.UI.alert({ title: this.notcriticalErrorTitle, - msg: (opts.data.error) ? opts.data.error : this.txtErrorLoadHistory, + msg: (opts.data.error) ? Common.Utils.String.htmlEncode(opts.data.error) : this.txtErrorLoadHistory, iconCls: 'warn', buttons: ['ok'], callback: _.bind(function(btn){ diff --git a/apps/presentationeditor/main/app/controller/RightMenu.js b/apps/presentationeditor/main/app/controller/RightMenu.js index 572a4b7575..b5180d3371 100644 --- a/apps/presentationeditor/main/app/controller/RightMenu.js +++ b/apps/presentationeditor/main/app/controller/RightMenu.js @@ -239,9 +239,9 @@ define([ if (priorityactive>-1) active = priorityactive; else if (currentactive>=0) active = currentactive; - else if (lastactive>=0) active = lastactive; + else if (lastactive>=0 && !this.rightmenu.GetActivePluginPane()) active = lastactive; else if (forceSignature && !this._settings[Common.Utils.documentSettingsType.Signature].hidden) active = Common.Utils.documentSettingsType.Signature; - else active = Common.Utils.documentSettingsType.Slide; + else if (!this.rightmenu.GetActivePluginPane()) active = Common.Utils.documentSettingsType.Slide; if (active !== undefined) { this.rightmenu.SetActivePane(active, open); diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index f71c5846c0..576110174a 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -2586,6 +2586,7 @@ define([ var clr; var effectcolors = Common.Utils.ThemeColor.getEffectColors(); + if (!effectcolors) return; for (var i = 0; i < effectcolors.length; i++) { if (typeof(picker.currentColor) == 'object' && clr === undefined && @@ -2604,7 +2605,7 @@ define([ updateColors(this.toolbar.mnuFontColorPicker, 1); if (this.toolbar.btnFontColor.currentColor===undefined) { - this.toolbar.btnFontColor.currentColor = this.toolbar.mnuFontColorPicker.currentColor.color || this.toolbar.mnuFontColorPicker.currentColor; + this.toolbar.btnFontColor.currentColor = this.toolbar.mnuFontColorPicker.currentColor ? this.toolbar.mnuFontColorPicker.currentColor.color || this.toolbar.mnuFontColorPicker.currentColor : this.toolbar.mnuFontColorPicker.currentColor; this.toolbar.btnFontColor.setColor(this.toolbar.btnFontColor.currentColor); } if (this._state.clrtext_asccolor!==undefined) { diff --git a/apps/presentationeditor/main/app/view/RightMenu.js b/apps/presentationeditor/main/app/view/RightMenu.js index 8003e36660..43f8239141 100644 --- a/apps/presentationeditor/main/app/view/RightMenu.js +++ b/apps/presentationeditor/main/app/view/RightMenu.js @@ -278,7 +278,7 @@ define([ Common.localStorage.setItem("pe-hide-right-settings", 0); Common.Utils.InternalSettings.set("pe-hide-right-settings", false); } - target_pane_parent.find('.settings-panel.active').removeClass('active'); + target_pane_parent.find('.content-box > .active').removeClass('active'); target_pane && target_pane.addClass("active"); if (this.scroller) { @@ -292,7 +292,6 @@ define([ Common.Utils.InternalSettings.set("pe-hide-right-settings", true); } - !isPlugin && $('.right-panel .plugin-panel').toggleClass('active', false); btn && !isPlugin && this.fireEvent('rightmenuclick', [this, btn.options.asctype, this.minimizedMode, e]); }, @@ -305,7 +304,7 @@ define([ } else { var target_pane = $("#" + this._settings[type].panel ); if ( !target_pane.hasClass('active') ) { - target_pane.parent().find('.settings-panel.active').removeClass('active'); + target_pane.parent().find('> .active').removeClass('active'); target_pane.addClass("active"); if (this.scroller) { this.scroller.update(); @@ -322,9 +321,14 @@ define([ return (this.minimizedMode || active.length === 0) ? null : active[0].id; }, + GetActivePluginPane: function() { + var active = this.$el.find(".plugin-panel.active"); + return (this.minimizedMode || active.length === 0) ? null : active[0].id; + }, + clearSelection: function() { var target_pane = $(".right-panel"); - target_pane.find('.settings-panel.active').removeClass('active'); + target_pane.find('.content-box > .active').removeClass('active'); this._settings.forEach(function(item){ if (item.btn.isActive()) item.btn.toggle(false, true); @@ -347,6 +351,10 @@ define([ Common.UI.SideMenu.prototype.setButtons.apply(this, [allButtons]); }, + insertPanel: function ($panel) { + this.$el.find('.side-panel .content-box').append($panel); + }, + updateWidth: function() { var pane = $(this.el).find('.right-panel'), paddings = parseInt(pane.css('padding-left')) + parseInt(pane.css('padding-right')); diff --git a/apps/presentationeditor/main/app/view/ViewTab.js b/apps/presentationeditor/main/app/view/ViewTab.js index c2ba5cd5bb..1b5dd2c56d 100644 --- a/apps/presentationeditor/main/app/view/ViewTab.js +++ b/apps/presentationeditor/main/app/view/ViewTab.js @@ -411,7 +411,11 @@ define([ }); this.lockedControls.push(this.chLeftMenu); - if (this.appConfig.isEdit && !(this.appConfig.customization && this.appConfig.customization.macros===false)) { + if ( + this.appConfig.isEdit && + !(this.appConfig.customization && this.appConfig.customization.macros===false) && + !(Common.Controllers.Desktop && Common.Controllers.Desktop.isWinXp()) + ) { this.btnMacros = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-macros', @@ -589,7 +593,11 @@ define([ me.btnGuides.$el.closest('.group').remove(); me.$el.find('#slot-btn-slide-master').closest('.group').next().addBack().remove(); } - if (!config.isEdit || config.customization && config.customization.macros===false) { + if ( + !config.isEdit || + config.customization && config.customization.macros===false || + (Common.Controllers.Desktop && Common.Controllers.Desktop.isWinXp()) + ) { me.$el.find('.macro').remove(); } if (config.isEdit || config.isRestrictedEdit) { diff --git a/apps/presentationeditor/main/locale/ar.json b/apps/presentationeditor/main/locale/ar.json index 5a449030bb..ae59fc6a83 100644 --- a/apps/presentationeditor/main/locale/ar.json +++ b/apps/presentationeditor/main/locale/ar.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "وحدات الماكرو", "PE.Views.ViewTab.textNormal": "عادي", "PE.Views.ViewTab.textNotes": "ملاحظات", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "اللوحة اليمنى", "PE.Views.ViewTab.textRulers": "مساطر", "PE.Views.ViewTab.textShowGridlines": "إظهار خطوط الشبكة", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "دلائل ذكية", "PE.Views.ViewTab.textSnapObjects": "تموضع الكائن على الشبكة", "PE.Views.ViewTab.textStatusBar": "شريط الحالة", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "نمط التبويبة", "PE.Views.ViewTab.textZoom": "تكبير/تصغير", "PE.Views.ViewTab.tipFitToSlide": "الملائمة إلى الشريحة", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "سمة الواجهة", "PE.Views.ViewTab.tipMacros": "وحدات الماكرو", "PE.Views.ViewTab.tipNormal": "عادي", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "حدد الأداة", - "PE.Views.ViewTab.tipSlideMaster": "الشريحة الرئيسية" + "PE.Views.ViewTab.tipSlideMaster": "الشريحة الرئيسية", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/az.json b/apps/presentationeditor/main/locale/az.json index 3e61bde23c..28941a199a 100644 --- a/apps/presentationeditor/main/locale/az.json +++ b/apps/presentationeditor/main/locale/az.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/be.json b/apps/presentationeditor/main/locale/be.json index c0dd9b3288..e54447b2ce 100644 --- a/apps/presentationeditor/main/locale/be.json +++ b/apps/presentationeditor/main/locale/be.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Нататкі", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Правая панэль", "PE.Views.ViewTab.textRulers": "Лінейкі", "PE.Views.ViewTab.textShowGridlines": "Паказваць лініі сеткі", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Разумныя накіравальныя", "PE.Views.ViewTab.textSnapObjects": "Прывязаць аб'ект да сеткі", "PE.Views.ViewTab.textStatusBar": "Панэль стану", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Маштаб", "PE.Views.ViewTab.tipFitToSlide": "Па памеры слайда", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/bg.json b/apps/presentationeditor/main/locale/bg.json index 02bc2a9f2a..d453731625 100644 --- a/apps/presentationeditor/main/locale/bg.json +++ b/apps/presentationeditor/main/locale/bg.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Владетели", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Тема на интерфейса", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 9f17c7d003..85bf280fe3 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Panell dret", "PE.Views.ViewTab.textRulers": "Regles", "PE.Views.ViewTab.textShowGridlines": "Mostrar les línies de la quadrícula", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Guies intel·ligents", "PE.Views.ViewTab.textSnapObjects": "Ajustar l'objecte a la quadrícula", "PE.Views.ViewTab.textStatusBar": "Barra d'estat", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Ajusta a la diapositiva", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfície", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Seleccionar l'eina", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 78906ada49..52b810247c 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Makra", "PE.Views.ViewTab.textNormal": "Normální", "PE.Views.ViewTab.textNotes": "Poznámky", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Pravý panel", "PE.Views.ViewTab.textRulers": "Pravítka", "PE.Views.ViewTab.textShowGridlines": "Zobrazit mřížku", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Chytrá vodítka", "PE.Views.ViewTab.textSnapObjects": "Připnout objekt k mřížce", "PE.Views.ViewTab.textStatusBar": "Stavová lišta", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Styl panelu", "PE.Views.ViewTab.textZoom": "Přiblížení", "PE.Views.ViewTab.tipFitToSlide": "Přizpůsobit snímku", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Vzhled uživatelského rozhraní", "PE.Views.ViewTab.tipMacros": "Makra", "PE.Views.ViewTab.tipNormal": "Normální", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Zvolit nástroj", - "PE.Views.ViewTab.tipSlideMaster": "Předloha snímků" + "PE.Views.ViewTab.tipSlideMaster": "Předloha snímků", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/da.json b/apps/presentationeditor/main/locale/da.json index cb2548e140..2eb38320e6 100644 --- a/apps/presentationeditor/main/locale/da.json +++ b/apps/presentationeditor/main/locale/da.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface tema", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index aad14ace03..5ee4dc1d79 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Makros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notizen", + "PE.Views.ViewTab.textPauseMacro": "Aufnahme pausieren", + "PE.Views.ViewTab.textRecMacro": "Makro aufzeichnen", + "PE.Views.ViewTab.textResumeMacro": "Aufnahme fortsetzen", "PE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ", "PE.Views.ViewTab.textRulers": "Lineale", "PE.Views.ViewTab.textShowGridlines": "Gitternetzlinien anzeigen", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Intelligente Führungslinien", "PE.Views.ViewTab.textSnapObjects": "Objekt an das Raster binden", "PE.Views.ViewTab.textStatusBar": "Statusleiste", + "PE.Views.ViewTab.textStopMacro": "Aufnahme beenden", "PE.Views.ViewTab.textTabStyle": "Stil der Registerkarte", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "An Folie anpassen", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche", "PE.Views.ViewTab.tipMacros": "Makros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Aufnahme pausieren", + "PE.Views.ViewTab.tipRecMacro": "Makro aufzeichnen", + "PE.Views.ViewTab.tipResumeMacro": "Aufnahme fortsetzen", "PE.Views.ViewTab.tipSelectTool": "Auswählungstool", - "PE.Views.ViewTab.tipSlideMaster": "Folienmaster" + "PE.Views.ViewTab.tipSlideMaster": "Folienmaster", + "PE.Views.ViewTab.tipStopMacro": "Aufnahme beenden" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index 3416c7c092..62b4628c3b 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Μακροεντολές", "PE.Views.ViewTab.textNormal": "Κανονικό", "PE.Views.ViewTab.textNotes": "Σημειώσεις", + "PE.Views.ViewTab.textPauseMacro": "Παύση εγγραφής", + "PE.Views.ViewTab.textRecMacro": "Εγγραφή μακροεντολής", + "PE.Views.ViewTab.textResumeMacro": "Συνέχιση εγγραφής", "PE.Views.ViewTab.textRightMenu": "Δεξιό πλαίσιο", "PE.Views.ViewTab.textRulers": "Χάρακες", "PE.Views.ViewTab.textShowGridlines": "Εμφάνιση γραμμών πλέγματος", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Έξυπνοι οδηγοί", "PE.Views.ViewTab.textSnapObjects": "Προσκόλληση αντικειμένου στο πλέγμα", "PE.Views.ViewTab.textStatusBar": "Γραμμή κατάστασης", + "PE.Views.ViewTab.textStopMacro": "Διακοπή εγγραφής", "PE.Views.ViewTab.textTabStyle": "Στυλ καρτέλας", "PE.Views.ViewTab.textZoom": "Εστίαση", "PE.Views.ViewTab.tipFitToSlide": "Προσαρμογή στη διαφάνεια", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Θέμα διεπαφής", "PE.Views.ViewTab.tipMacros": "Μακροεντολές", "PE.Views.ViewTab.tipNormal": "Κανονικό", + "PE.Views.ViewTab.tipPauseMacro": "Παύση εγγραφής", + "PE.Views.ViewTab.tipRecMacro": "Εγγραφή μακροεντολής", + "PE.Views.ViewTab.tipResumeMacro": "Συνέχιση εγγραφής", "PE.Views.ViewTab.tipSelectTool": "Εργαλείο επιλογής", - "PE.Views.ViewTab.tipSlideMaster": "Υπόδειγμα διαφανειών" + "PE.Views.ViewTab.tipSlideMaster": "Υπόδειγμα διαφανειών", + "PE.Views.ViewTab.tipStopMacro": "Διακοπή εγγραφής" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index daaefcd51d..219e5e2239 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,14 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", "PE.Views.ViewTab.tipSlideMaster": "Slide master", - "PE.Views.ViewTab.textRecMacro": "Record macro", - "PE.Views.ViewTab.textPauseMacro": "Pause recording", - "PE.Views.ViewTab.textResumeMacro": "Resume recording", - "PE.Views.ViewTab.textStopMacro": "Stop recording", - "PE.Views.ViewTab.tipRecMacro": "Record macro", - "PE.Views.ViewTab.tipPauseMacro": "Pause recording", - "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 2f0b43f3cf..59447634b4 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Panel derecho", "PE.Views.ViewTab.textRulers": "Reglas", "PE.Views.ViewTab.textShowGridlines": "Mostrar líneas de cuadrícula", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Guías inteligentes", "PE.Views.ViewTab.textSnapObjects": "Acoplar el objeto a la cuadrícula", "PE.Views.ViewTab.textStatusBar": "Barra de estado", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Estilo de pestaña", "PE.Views.ViewTab.textZoom": "Ampliación", "PE.Views.ViewTab.tipFitToSlide": "Ajustar a la diapositiva", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Herramienta de selección", - "PE.Views.ViewTab.tipSlideMaster": "Patrón de diapositivas" + "PE.Views.ViewTab.tipSlideMaster": "Patrón de diapositivas", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/eu.json b/apps/presentationeditor/main/locale/eu.json index 0966914291..e7a6561c6e 100644 --- a/apps/presentationeditor/main/locale/eu.json +++ b/apps/presentationeditor/main/locale/eu.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Oharrak", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Eskuineko panela", "PE.Views.ViewTab.textRulers": "Erregelak", "PE.Views.ViewTab.textShowGridlines": "Erakutsi sareta-lerroak", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Gida adimendunak", "PE.Views.ViewTab.textSnapObjects": "Atxiki objektua saretara", "PE.Views.ViewTab.textStatusBar": "Egoera-barra", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zooma", "PE.Views.ViewTab.tipFitToSlide": "Doitu diapositibara", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interfazearen gaia", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fi.json b/apps/presentationeditor/main/locale/fi.json index de59bddef6..946376dadd 100644 --- a/apps/presentationeditor/main/locale/fi.json +++ b/apps/presentationeditor/main/locale/fi.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normaali", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Oikea paneeli", "PE.Views.ViewTab.textRulers": "Viivaimet", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Tilarivi", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Välilehden tyyli", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Sovita diaan", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Käyttöliittymän teema", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normaali", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Valitse työkalu", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index dcf15d8ffe..65c403efd1 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normale", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Mettre en pause l'enregistrement", + "PE.Views.ViewTab.textRecMacro": "Enregistrer une macro", + "PE.Views.ViewTab.textResumeMacro": "Reprendre l'enregistrement", "PE.Views.ViewTab.textRightMenu": "Panneau droit", "PE.Views.ViewTab.textRulers": "Règles", "PE.Views.ViewTab.textShowGridlines": "Afficher le quadrillage", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Repères actifs", "PE.Views.ViewTab.textSnapObjects": "Fixer l'objet à la grille", "PE.Views.ViewTab.textStatusBar": "Barre d'état", + "PE.Views.ViewTab.textStopMacro": "Arrêter l'enregistrement", "PE.Views.ViewTab.textTabStyle": "Style d'onglet", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Ajuster à la diapositive", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Thème d'interface", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normale", + "PE.Views.ViewTab.tipPauseMacro": "Mettre en pause l'enregistrement", + "PE.Views.ViewTab.tipRecMacro": "Enregistrer une macro", + "PE.Views.ViewTab.tipResumeMacro": "Reprendre l'enregistrement", "PE.Views.ViewTab.tipSelectTool": "Outil de sélection", - "PE.Views.ViewTab.tipSlideMaster": "Masque de diapositives" + "PE.Views.ViewTab.tipSlideMaster": "Masque de diapositives", + "PE.Views.ViewTab.tipStopMacro": "Arrêter l'enregistrement" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/gl.json b/apps/presentationeditor/main/locale/gl.json index 01968bd6c4..6cb039f5d1 100644 --- a/apps/presentationeditor/main/locale/gl.json +++ b/apps/presentationeditor/main/locale/gl.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Regras", "PE.Views.ViewTab.textShowGridlines": "Amosar liñas de cuadrícula", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Barra de estado", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Ampliar", "PE.Views.ViewTab.tipFitToSlide": "Axustar á diapositiva", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/he.json b/apps/presentationeditor/main/locale/he.json index c42bebf564..7f90d40b71 100644 --- a/apps/presentationeditor/main/locale/he.json +++ b/apps/presentationeditor/main/locale/he.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "פקודות מאקרו", "PE.Views.ViewTab.textNormal": "רגיל", "PE.Views.ViewTab.textNotes": "הערות", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "לוח ימני", "PE.Views.ViewTab.textRulers": "סרגלים", "PE.Views.ViewTab.textShowGridlines": "הצג קווי רשת", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "מדריכים חכמים", "PE.Views.ViewTab.textSnapObjects": "הצמד אובייקט לרשת", "PE.Views.ViewTab.textStatusBar": "שורת מצב", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "סגנון טאב", "PE.Views.ViewTab.textZoom": "זום", "PE.Views.ViewTab.tipFitToSlide": "התאמה לשקופית", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "ערכת נושא", "PE.Views.ViewTab.tipMacros": "פקודות מאקרו", "PE.Views.ViewTab.tipNormal": "רגיל", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "כלי הבחירה", - "PE.Views.ViewTab.tipSlideMaster": "תבנית בסיס לשקופיות" + "PE.Views.ViewTab.tipSlideMaster": "תבנית בסיס לשקופיות", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hu.json b/apps/presentationeditor/main/locale/hu.json index f5d59f7a2e..36ca43177d 100644 --- a/apps/presentationeditor/main/locale/hu.json +++ b/apps/presentationeditor/main/locale/hu.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Makrók", "PE.Views.ViewTab.textNormal": "Normál", "PE.Views.ViewTab.textNotes": "Megjegyzések", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Jobb panel", "PE.Views.ViewTab.textRulers": "Vonalzók", "PE.Views.ViewTab.textShowGridlines": "Rácsvonalak Megjelenítése", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Okos útmutató", "PE.Views.ViewTab.textSnapObjects": "Objektum rácshoz igazítása", "PE.Views.ViewTab.textStatusBar": "Állapotsor", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Lap stílus", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "A diához igazít", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Felhasználói felület témája", "PE.Views.ViewTab.tipMacros": "Makrók", "PE.Views.ViewTab.tipNormal": "Normál", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Eszköz kiválasztása", - "PE.Views.ViewTab.tipSlideMaster": "Diaminta" + "PE.Views.ViewTab.tipSlideMaster": "Diaminta", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index 9ced9f5087..94553b84a3 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Մակրոներ", "PE.Views.ViewTab.textNormal": "Սովորական", "PE.Views.ViewTab.textNotes": "Նշումներ", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Աջ վահանակ", "PE.Views.ViewTab.textRulers": "Քանոններ", "PE.Views.ViewTab.textShowGridlines": "Ցուցադրել Ցանցային գծերը", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Խելացի ուղեցույցներ", "PE.Views.ViewTab.textSnapObjects": "Կցեք օբյեկտը ցանցին", "PE.Views.ViewTab.textStatusBar": "Վիճակագոտի", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Ներդիրի ոճ", "PE.Views.ViewTab.textZoom": "Խոշորացնել", "PE.Views.ViewTab.tipFitToSlide": "Հարմարեցնել լուսապատկերին", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ", "PE.Views.ViewTab.tipMacros": "Մակրոներ", "PE.Views.ViewTab.tipNormal": "Սովորական", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Ընտրել գործիք", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/id.json b/apps/presentationeditor/main/locale/id.json index 595dca4d14..f3045ba694 100644 --- a/apps/presentationeditor/main/locale/id.json +++ b/apps/presentationeditor/main/locale/id.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Catatan", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Panel Kanan", "PE.Views.ViewTab.textRulers": "Penggaris", "PE.Views.ViewTab.textShowGridlines": "Tampilkan Garis Kisi", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Pemandu pintar", "PE.Views.ViewTab.textSnapObjects": "Posisikan Objek pada Kisi", "PE.Views.ViewTab.textStatusBar": "Bar Status", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Pembesaran", "PE.Views.ViewTab.tipFitToSlide": "Paskan dengan slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema antarmuka", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 5caa2da672..42a288f883 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macro", "PE.Views.ViewTab.textNormal": "Normale", "PE.Views.ViewTab.textNotes": "Appunti", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Pannello destro", "PE.Views.ViewTab.textRulers": "Righelli", "PE.Views.ViewTab.textShowGridlines": "Mostra griglie", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Guide intelligenti", "PE.Views.ViewTab.textSnapObjects": "Fissa l'obiettivo alla griglia", "PE.Views.ViewTab.textStatusBar": "Barra di stato", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Stile della tabella", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Adatta alla diapositiva", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema dell'interfaccia", "PE.Views.ViewTab.tipMacros": "Macro", "PE.Views.ViewTab.tipNormal": "Normale", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Seleziona strumento", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index dedca410d7..d13beb0655 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "マクロ", "PE.Views.ViewTab.textNormal": "標準", "PE.Views.ViewTab.textNotes": "ノート", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "右パネル", "PE.Views.ViewTab.textRulers": "ルーラー", "PE.Views.ViewTab.textShowGridlines": "枠線を表示する", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "スマートガイド", "PE.Views.ViewTab.textSnapObjects": "スナップオブジェクトをグリッドに", "PE.Views.ViewTab.textStatusBar": "ステータスバー", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "タブのスタイル", "PE.Views.ViewTab.textZoom": "ズーム", "PE.Views.ViewTab.tipFitToSlide": "スライドに合わせる", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "インターフェースのテーマ", "PE.Views.ViewTab.tipMacros": "マクロ", "PE.Views.ViewTab.tipNormal": "標準", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "選択ツール", - "PE.Views.ViewTab.tipSlideMaster": "スライドマスター" + "PE.Views.ViewTab.tipSlideMaster": "スライドマスター", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ko.json b/apps/presentationeditor/main/locale/ko.json index f0d93c32be..8b9a11f3e0 100644 --- a/apps/presentationeditor/main/locale/ko.json +++ b/apps/presentationeditor/main/locale/ko.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "매크로", "PE.Views.ViewTab.textNormal": "보통", "PE.Views.ViewTab.textNotes": "메모", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "오른쪽 패널", "PE.Views.ViewTab.textRulers": "자", "PE.Views.ViewTab.textShowGridlines": "눈금선 표시", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "스마트 가이드", "PE.Views.ViewTab.textSnapObjects": "객체를 그리드에 정렬하기", "PE.Views.ViewTab.textStatusBar": "상태 바", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "탭 스타일", "PE.Views.ViewTab.textZoom": "확대 / 축소", "PE.Views.ViewTab.tipFitToSlide": "슬라이드에 맞추기", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "인터페이스 테마", "PE.Views.ViewTab.tipMacros": "매크로", "PE.Views.ViewTab.tipNormal": "보통", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "도구 선택", - "PE.Views.ViewTab.tipSlideMaster": "슬라이드 마스터" + "PE.Views.ViewTab.tipSlideMaster": "슬라이드 마스터", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lo.json b/apps/presentationeditor/main/locale/lo.json index 5d85a31e3f..7d3b687844 100644 --- a/apps/presentationeditor/main/locale/lo.json +++ b/apps/presentationeditor/main/locale/lo.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "ຈົດບັນທຶກ", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "ໄມ້ບັນທັດ", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "ຮູບແບບບາ", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/lv.json b/apps/presentationeditor/main/locale/lv.json index bea02a217e..969e353240 100644 --- a/apps/presentationeditor/main/locale/lv.json +++ b/apps/presentationeditor/main/locale/lv.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Piezīmes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Labais panelis", "PE.Views.ViewTab.textRulers": "Mērjoslas", "PE.Views.ViewTab.textShowGridlines": "Rādīt režģlīnijas", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Viedie ceļveži", "PE.Views.ViewTab.textSnapObjects": "Pievienot objektu režģim", "PE.Views.ViewTab.textStatusBar": "Statusa josla", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Palielināšana", "PE.Views.ViewTab.tipFitToSlide": "Saskaņot ar slaidu", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interfeisa tēma", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index 2066b573c5..783cf7daf7 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Nota", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Pembaris", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Bar Status", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zum", "PE.Views.ViewTab.tipFitToSlide": "Muat kepada Slaid", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema antara muka", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index 66b3850bb3..9a7dcbedb8 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index ab0c96f908..c4266e9d99 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notatki", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Zasady", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Pasek stanu", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Styl zakładki", "PE.Views.ViewTab.textZoom": "Powiększenie", "PE.Views.ViewTab.tipFitToSlide": "Dopasuj do slajdu", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ 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 52b72ac1b0..2385bcee11 100644 --- a/apps/presentationeditor/main/locale/pt-pt.json +++ b/apps/presentationeditor/main/locale/pt-pt.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Réguas", "PE.Views.ViewTab.textShowGridlines": "Mostrar linhas da grelha", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Guias inteligentes", "PE.Views.ViewTab.textSnapObjects": "Ajustar objeto à grelha", "PE.Views.ViewTab.textStatusBar": "Barra de estado", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Ampliação", "PE.Views.ViewTab.tipFitToSlide": "Ajustar ao diapositivo", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 96f0ad0961..9f440dae67 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notas", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Painel direito", "PE.Views.ViewTab.textRulers": "Regras", "PE.Views.ViewTab.textShowGridlines": "Mostrar linhas de grade", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Guias inteligentes", "PE.Views.ViewTab.textSnapObjects": "Ajustar Objeto à Grade", "PE.Views.ViewTab.textStatusBar": "Barra de status", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Estilo da guia", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Ajustar slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema de interface", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Selecionar ferramenta", - "PE.Views.ViewTab.tipSlideMaster": "Slide mestre" + "PE.Views.ViewTab.tipSlideMaster": "Slide mestre", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index 20896826fd..6f386148da 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macrocomandă", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Note", + "PE.Views.ViewTab.textPauseMacro": "Înregistrare în pauză", + "PE.Views.ViewTab.textRecMacro": "Înregistrare macrocomandă", + "PE.Views.ViewTab.textResumeMacro": "Reluare înregistrare", "PE.Views.ViewTab.textRightMenu": "Panou dreapta", "PE.Views.ViewTab.textRulers": "Rigle", "PE.Views.ViewTab.textShowGridlines": "Afișare linii de grilă", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Ghiduri inteligente", "PE.Views.ViewTab.textSnapObjects": "Fixare obiect la grilă", "PE.Views.ViewTab.textStatusBar": "Bară de stare", + "PE.Views.ViewTab.textStopMacro": "Oprire înregistrare", "PE.Views.ViewTab.textTabStyle": "Stil filă", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Se aliniază la diapozitiv", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema interfeței", "PE.Views.ViewTab.tipMacros": "Macrocomandă", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Înregistrare în pauză", + "PE.Views.ViewTab.tipRecMacro": "Înregistrare macrocomandă", + "PE.Views.ViewTab.tipResumeMacro": "Reluare înregistrare", "PE.Views.ViewTab.tipSelectTool": "Instrumentul Selectare", - "PE.Views.ViewTab.tipSlideMaster": "Coordonator de diapozitive" + "PE.Views.ViewTab.tipSlideMaster": "Coordonator de diapozitive", + "PE.Views.ViewTab.tipStopMacro": "Oprire înregistrare" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index f3edf5872d..c5533a9617 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Макросы", "PE.Views.ViewTab.textNormal": "Обычный", "PE.Views.ViewTab.textNotes": "Заметки", + "PE.Views.ViewTab.textPauseMacro": "Приостановить запись", + "PE.Views.ViewTab.textRecMacro": "Записать макрос", + "PE.Views.ViewTab.textResumeMacro": "Возобновить запись", "PE.Views.ViewTab.textRightMenu": "Правая панель", "PE.Views.ViewTab.textRulers": "Линейки", "PE.Views.ViewTab.textShowGridlines": "Показать линии сетки", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Смарт-направляющие", "PE.Views.ViewTab.textSnapObjects": "Привязать объект к сетке", "PE.Views.ViewTab.textStatusBar": "Строка состояния", + "PE.Views.ViewTab.textStopMacro": "Остановить запись", "PE.Views.ViewTab.textTabStyle": "Стиль вкладки", "PE.Views.ViewTab.textZoom": "Масштаб", "PE.Views.ViewTab.tipFitToSlide": "По размеру слайда", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Тема интерфейса", "PE.Views.ViewTab.tipMacros": "Макросы", "PE.Views.ViewTab.tipNormal": "Обычный", + "PE.Views.ViewTab.tipPauseMacro": "Приостановить запись", + "PE.Views.ViewTab.tipRecMacro": "Записать макрос", + "PE.Views.ViewTab.tipResumeMacro": "Возобновить запись", "PE.Views.ViewTab.tipSelectTool": "Инструмент выделения", - "PE.Views.ViewTab.tipSlideMaster": "Образец слайдов" + "PE.Views.ViewTab.tipSlideMaster": "Образец слайдов", + "PE.Views.ViewTab.tipStopMacro": "Остановить запись" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/si.json b/apps/presentationeditor/main/locale/si.json index 3e0b660105..ee9f4b9f56 100644 --- a/apps/presentationeditor/main/locale/si.json +++ b/apps/presentationeditor/main/locale/si.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "සාර්ව", "PE.Views.ViewTab.textNormal": "සාමාන්‍ය", "PE.Views.ViewTab.textNotes": "සටහන්", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "දකුණු මඬල", "PE.Views.ViewTab.textRulers": "කෝදු", "PE.Views.ViewTab.textShowGridlines": "ජාලකය පෙන්වන්න", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "සුහුරු උපදේශ", "PE.Views.ViewTab.textSnapObjects": "වස්තුව ජාලකයට සකසන්න(*)", "PE.Views.ViewTab.textStatusBar": "තත්‍ව තීරුව", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "පටිති ශෛලිය", "PE.Views.ViewTab.textZoom": "විශාල කරන්න", "PE.Views.ViewTab.tipFitToSlide": "සර්පණයට ගළපන්න", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "අතුරුමුහුණතේ තේමාව", "PE.Views.ViewTab.tipMacros": "සාර්ව", "PE.Views.ViewTab.tipNormal": "සාමාන්‍ය", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "මෙවලම තෝරන්න", - "PE.Views.ViewTab.tipSlideMaster": "ප්‍රධාන සර්පණය" + "PE.Views.ViewTab.tipSlideMaster": "ප්‍රධාන සර්පණය", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index 4f5a0d2fb0..212caee60b 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Poznámky", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Pravítka", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Stavový riadok", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Priblíženie", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sl.json b/apps/presentationeditor/main/locale/sl.json index 3c1baa51ec..645e6c9670 100644 --- a/apps/presentationeditor/main/locale/sl.json +++ b/apps/presentationeditor/main/locale/sl.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sq.json b/apps/presentationeditor/main/locale/sq.json index cd8c292df9..62da3b3114 100644 --- a/apps/presentationeditor/main/locale/sq.json +++ b/apps/presentationeditor/main/locale/sq.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Makrot", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Shënime", + "PE.Views.ViewTab.textPauseMacro": "Ndërprit regjistrimin", + "PE.Views.ViewTab.textRecMacro": "Regjistro makronë", + "PE.Views.ViewTab.textResumeMacro": "Rifillo regjistrimin", "PE.Views.ViewTab.textRightMenu": "Paneli i djathtë", "PE.Views.ViewTab.textRulers": "Vizoret", "PE.Views.ViewTab.textShowGridlines": "Shfaqni linjat e rrjetit", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Udhëzues të zgjuar", "PE.Views.ViewTab.textSnapObjects": "Përputh objektin me rrjetin", "PE.Views.ViewTab.textStatusBar": "Statusi i shiritit", + "PE.Views.ViewTab.textStopMacro": "Ndalo regjistrimin", "PE.Views.ViewTab.textTabStyle": "Stili i skedës", "PE.Views.ViewTab.textZoom": "Zmadhoj", "PE.Views.ViewTab.tipFitToSlide": "Përshtatni me slajdet", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Temë e ndërfaqes", "PE.Views.ViewTab.tipMacros": "Makrot", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Ndërprit regjistrimin", + "PE.Views.ViewTab.tipRecMacro": "Regjistro makronë", + "PE.Views.ViewTab.tipResumeMacro": "Rifillo regjistrimin", "PE.Views.ViewTab.tipSelectTool": "Selektoni mjetin", - "PE.Views.ViewTab.tipSlideMaster": "Slajdi master" + "PE.Views.ViewTab.tipSlideMaster": "Slajdi master", + "PE.Views.ViewTab.tipStopMacro": "Ndalo regjistrimin" } \ 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 bbc5dc2216..b71bda4c2e 100644 --- a/apps/presentationeditor/main/locale/sr-cyrl.json +++ b/apps/presentationeditor/main/locale/sr-cyrl.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Макрои", "PE.Views.ViewTab.textNormal": "Нормалан", "PE.Views.ViewTab.textNotes": "Белешке", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Десни панел", "PE.Views.ViewTab.textRulers": "Лењири", "PE.Views.ViewTab.textShowGridlines": "Прикажи линије мреже", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Паметни водичи", "PE.Views.ViewTab.textSnapObjects": "Повежи објекат са мрежом", "PE.Views.ViewTab.textStatusBar": "Статусна трака", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Стил картице", "PE.Views.ViewTab.textZoom": "Зумирај", "PE.Views.ViewTab.tipFitToSlide": "Прилагоди слајду", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Тема интерфејса", "PE.Views.ViewTab.tipMacros": "Макрои", "PE.Views.ViewTab.tipNormal": "Нормалан", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Одабери алатку", - "PE.Views.ViewTab.tipSlideMaster": "Главни управљаш слајдова" + "PE.Views.ViewTab.tipSlideMaster": "Главни управљаш слајдова", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sr.json b/apps/presentationeditor/main/locale/sr.json index 8891ef7f72..8e649622f9 100644 --- a/apps/presentationeditor/main/locale/sr.json +++ b/apps/presentationeditor/main/locale/sr.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Makroi", "PE.Views.ViewTab.textNormal": "Normalno", "PE.Views.ViewTab.textNotes": "Beleške ", + "PE.Views.ViewTab.textPauseMacro": "Pauzirajte snimanje", + "PE.Views.ViewTab.textRecMacro": "Snimite makro", + "PE.Views.ViewTab.textResumeMacro": "Nastavite snimanje", "PE.Views.ViewTab.textRightMenu": "Desni panel", "PE.Views.ViewTab.textRulers": "Lenjiri", "PE.Views.ViewTab.textShowGridlines": "Prikaži Linije Mreže", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Pametni vodiči", "PE.Views.ViewTab.textSnapObjects": "Poveži objekat sa mrežom", "PE.Views.ViewTab.textStatusBar": "Statusna traka", + "PE.Views.ViewTab.textStopMacro": "Prekinite snimanje", "PE.Views.ViewTab.textTabStyle": "Stil kartice", "PE.Views.ViewTab.textZoom": "Zumiraj", "PE.Views.ViewTab.tipFitToSlide": "Prilagodi Slajdu", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Tema interfejsa", "PE.Views.ViewTab.tipMacros": "Makroi", "PE.Views.ViewTab.tipNormal": "Normalno", + "PE.Views.ViewTab.tipPauseMacro": "Pauzirajte snimanje", + "PE.Views.ViewTab.tipRecMacro": "Snimite makro", + "PE.Views.ViewTab.tipResumeMacro": "Nastavite snimanje", "PE.Views.ViewTab.tipSelectTool": "Odaberi alatku", - "PE.Views.ViewTab.tipSlideMaster": "Glavni upravljaš slajdova" + "PE.Views.ViewTab.tipSlideMaster": "Glavni upravljaš slajdova", + "PE.Views.ViewTab.tipStopMacro": "Prekinite snimanje" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index f342b64994..332a2a5614 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Anteckningar", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Höger panel", "PE.Views.ViewTab.textRulers": "Linjaler", "PE.Views.ViewTab.textShowGridlines": "Visa rutnät", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Statusmätare", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Förstora", "PE.Views.ViewTab.tipFitToSlide": "Anpassa till bild", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Gränssnittstema", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Välj verktyg", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 34b1f6e3b5..03441413d4 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "notlar", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Yakınlaştırma", "PE.Views.ViewTab.tipFitToSlide": "Slayta sığdır", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Arayüz teması", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 8508f6fcac..ee84a59fda 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Нотатки", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Лінійки", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Рядок стану", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Масштаб", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ur.json b/apps/presentationeditor/main/locale/ur.json index 6c35ec4e25..d2ca90d59c 100644 --- a/apps/presentationeditor/main/locale/ur.json +++ b/apps/presentationeditor/main/locale/ur.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "میکروس", "PE.Views.ViewTab.textNormal": "عام", "PE.Views.ViewTab.textNotes": "نوٹس", + "PE.Views.ViewTab.textPauseMacro": "ریکارڈنگ روک دیں۔", + "PE.Views.ViewTab.textRecMacro": "میکرو ریکارڈ کریں۔", + "PE.Views.ViewTab.textResumeMacro": "ریکارڈنگ دوبارہ شروع کریں۔", "PE.Views.ViewTab.textRightMenu": "دائیں پینل", "PE.Views.ViewTab.textRulers": "حکمرانوں", "PE.Views.ViewTab.textShowGridlines": "گرڈ لائنز دکھائیں۔", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "اسمارٹ گائیڈز", "PE.Views.ViewTab.textSnapObjects": "گرڈ پر آبجیکٹ اسنیپ کریں۔", "PE.Views.ViewTab.textStatusBar": "اسٹیٹس بار", + "PE.Views.ViewTab.textStopMacro": "ریکارڈنگ بند کرو", "PE.Views.ViewTab.textTabStyle": "ٹیب اسٹائل", "PE.Views.ViewTab.textZoom": "زوم", "PE.Views.ViewTab.tipFitToSlide": "سلائیڈ کے لیے فٹ", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "انٹرفیس تھیم", "PE.Views.ViewTab.tipMacros": "میکروس", "PE.Views.ViewTab.tipNormal": "عام", + "PE.Views.ViewTab.tipPauseMacro": "ریکارڈنگ روک دیں۔", + "PE.Views.ViewTab.tipRecMacro": "میکرو ریکارڈ کریں۔", + "PE.Views.ViewTab.tipResumeMacro": "ریکارڈنگ دوبارہ شروع کریں۔", "PE.Views.ViewTab.tipSelectTool": "ٹول منتخب کریں۔", - "PE.Views.ViewTab.tipSlideMaster": "سلائیڈ ماسٹر" + "PE.Views.ViewTab.tipSlideMaster": "سلائیڈ ماسٹر", + "PE.Views.ViewTab.tipStopMacro": "ریکارڈنگ بند کرو" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/vi.json b/apps/presentationeditor/main/locale/vi.json index 0cda3656e7..6c7e80789e 100644 --- a/apps/presentationeditor/main/locale/vi.json +++ b/apps/presentationeditor/main/locale/vi.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "Macros", "PE.Views.ViewTab.textNormal": "Normal", "PE.Views.ViewTab.textNotes": "Notes", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "Right Panel", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textShowGridlines": "Show Gridlines", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "Smart guides", "PE.Views.ViewTab.textSnapObjects": "Snap object to grid", "PE.Views.ViewTab.textStatusBar": "Status Bar", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "Tab style", "PE.Views.ViewTab.textZoom": "Zoom", "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "PE.Views.ViewTab.tipMacros": "Macros", "PE.Views.ViewTab.tipNormal": "Normal", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "Select tool", - "PE.Views.ViewTab.tipSlideMaster": "Slide master" + "PE.Views.ViewTab.tipSlideMaster": "Slide master", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ 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 ebe8855599..a4916460ac 100644 --- a/apps/presentationeditor/main/locale/zh-tw.json +++ b/apps/presentationeditor/main/locale/zh-tw.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "巨集", "PE.Views.ViewTab.textNormal": "標準模式", "PE.Views.ViewTab.textNotes": "註解", + "PE.Views.ViewTab.textPauseMacro": "Pause recording", + "PE.Views.ViewTab.textRecMacro": "Record macro", + "PE.Views.ViewTab.textResumeMacro": "Resume recording", "PE.Views.ViewTab.textRightMenu": "右側面板", "PE.Views.ViewTab.textRulers": "尺規", "PE.Views.ViewTab.textShowGridlines": "顯示格線", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "智慧參考線", "PE.Views.ViewTab.textSnapObjects": "對齊物件到網格", "PE.Views.ViewTab.textStatusBar": "狀態列", + "PE.Views.ViewTab.textStopMacro": "Stop recording", "PE.Views.ViewTab.textTabStyle": "索引標籤樣式", "PE.Views.ViewTab.textZoom": "縮放", "PE.Views.ViewTab.tipFitToSlide": "調整至投影片大小", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "介面主題", "PE.Views.ViewTab.tipMacros": "巨集", "PE.Views.ViewTab.tipNormal": "標準模式", + "PE.Views.ViewTab.tipPauseMacro": "Pause recording", + "PE.Views.ViewTab.tipRecMacro": "Record macro", + "PE.Views.ViewTab.tipResumeMacro": "Resume recording", "PE.Views.ViewTab.tipSelectTool": "選取工具", - "PE.Views.ViewTab.tipSlideMaster": "大綱模式" + "PE.Views.ViewTab.tipSlideMaster": "大綱模式", + "PE.Views.ViewTab.tipStopMacro": "Stop recording" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index cf17179f99..997f6a58d7 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -3521,6 +3521,9 @@ "PE.Views.ViewTab.textMacros": "宏", "PE.Views.ViewTab.textNormal": "正文", "PE.Views.ViewTab.textNotes": "备注", + "PE.Views.ViewTab.textPauseMacro": "暂停录制", + "PE.Views.ViewTab.textRecMacro": "录制宏", + "PE.Views.ViewTab.textResumeMacro": "恢复录制", "PE.Views.ViewTab.textRightMenu": "右侧面板", "PE.Views.ViewTab.textRulers": "标尺", "PE.Views.ViewTab.textShowGridlines": "显示网格线", @@ -3529,6 +3532,7 @@ "PE.Views.ViewTab.textSmartGuides": "智慧参考线", "PE.Views.ViewTab.textSnapObjects": "将对象对齐至网格", "PE.Views.ViewTab.textStatusBar": "状态栏", + "PE.Views.ViewTab.textStopMacro": "停止录制", "PE.Views.ViewTab.textTabStyle": "选项卡样式", "PE.Views.ViewTab.textZoom": "缩放", "PE.Views.ViewTab.tipFitToSlide": "适应幻灯片", @@ -3539,6 +3543,10 @@ "PE.Views.ViewTab.tipInterfaceTheme": "界面主题", "PE.Views.ViewTab.tipMacros": "宏", "PE.Views.ViewTab.tipNormal": "正常", + "PE.Views.ViewTab.tipPauseMacro": "暂停录制", + "PE.Views.ViewTab.tipRecMacro": "录制宏", + "PE.Views.ViewTab.tipResumeMacro": "恢复录制", "PE.Views.ViewTab.tipSelectTool": "选择工具", - "PE.Views.ViewTab.tipSlideMaster": "幻灯片母版" + "PE.Views.ViewTab.tipSlideMaster": "幻灯片母版", + "PE.Views.ViewTab.tipStopMacro": "停止录制" } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 56d429a757..cc70206859 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -83,7 +83,7 @@ "textDoNotShowAgain": "Non mostrare di nuovo", "textOk": "Ok", "textRows": "Righe", - "txtWarnUrl": "Cliccando su questo collegamento si può danneggiare il tuo dispositivo e i dati.
Sei sicuro di voler continuare?" + "txtWarnUrl": "Cliccando su questo collegamento il tuo dispositivo e i dati potrebbero essere danneggiati.
Sei sicuro di voler continuare?" }, "Controller": { "Main": { diff --git a/apps/presentationeditor/mobile/locale/sr.json b/apps/presentationeditor/mobile/locale/sr.json index ca1f5e3e53..7e23d84d12 100644 --- a/apps/presentationeditor/mobile/locale/sr.json +++ b/apps/presentationeditor/mobile/locale/sr.json @@ -162,7 +162,7 @@ "textRemember": "Zapamti moj izbor", "textReplaceSkipped": "Zamena je učinjena. {0} pojave su preskočene.", "textReplaceSuccess": "Pretraga je učinjena. Pojave zamenjene: {0}", - "textRequestMacros": "Makro pravi zahtev za URL. Da li želite da dozvolite zahtev za %1?", + "textRequestMacros": "Makro pravi zahtev za URL. Da li želite da dozvolite zahtev do %1?", "textYes": "Da", "tipLicenseExceeded": "Dokument je otvoren u režimu samo za čitanje jer je dostignut maksimalni broj istovremenih veza dozvoljenih licencom.

Molimo pokušajte ponovo kasnije ili kontaktirajte vlasnika dokumenta ako vam je potreban pristup za uređivanje.", "tipLicenseUsersExceeded": "Dokument je otvoren u režimu samo za čitanje jer je dostignut maksimalni broj korisnika kojima je licenca dozvolila uređivanje dokumenata.

Molimo pokušajte ponovo kasnije ili kontaktirajte vlasnika dokumenta ako vam je potreban pristup za uređivanje.", diff --git a/apps/presentationeditor/mobile/src/controller/settings/Settings.jsx b/apps/presentationeditor/mobile/src/controller/settings/Settings.jsx index 49322a20d9..f9b69b9f23 100644 --- a/apps/presentationeditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/controller/settings/Settings.jsx @@ -54,8 +54,8 @@ const SettingsController = props => { let config = props.storeAppOptions.config; closeModal(); - if(config && !!config.feedback && !!config.feedback.url) { - window.open(config.feedback.url, "_blank"); + if(!!config?.customization?.feedback?.url) { + window.open(config.customization.feedback.url, "_blank"); } else window.open(__SUPPORT_URL__, "_blank"); }; diff --git a/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx b/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx index f6c8939df1..0899c1dd2c 100644 --- a/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/SettingsPage.jsx @@ -68,7 +68,10 @@ const SettingsPage = inject('storeAppOptions', 'storeToolbarSettings', 'storePre if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; - _canFeedback = appOptions.customization.feedback !== false; + _canFeedback = ( + appOptions.customization.feedback !== false && + appOptions.customization.feedback.visible !== false + ); _canDisplayInfo = appOptions.customization.mobile?.info !== false; } } diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index 8735473a90..d24a307d2f 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -171,7 +171,6 @@ SSE.ApplicationController = new(function(){ api.asc_setDocInfo(docInfo); api.asc_getEditorPermissions(config.licenseUrl, config.customerId); api.asc_enableKeyEvents(true); - common.controller.Shortcuts.setApi(api); Common.Analytics.trackEvent('Load', 'Start'); } @@ -435,6 +434,8 @@ SSE.ApplicationController = new(function(){ embed: '#idt-embed' }); + common.controller.Shortcuts.setApi(api); + api.asc_registerCallback('asc_onMouseMove', onApiMouseMove); api.asc_registerCallback('asc_onHyperlinkClick', onHyperlinkClick); api.asc_registerCallback('asc_onDownloadUrl', onDownloadUrl); diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 726b4178d6..8b7d6a74d6 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -634,7 +634,7 @@ define([ this.api.asc_coAuthoringDisconnect(); Common.NotificationCenter.trigger('collaboration:sharingdeny'); Common.NotificationCenter.trigger('api:disconnect'); - !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : data.message, + !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : Common.Utils.String.htmlEncode(data.message), target: '#toolbar', maxwidth: 600, showButton: false, automove: true, noHighlight: true, noArrow: true, multiple: true, callback: function() { me._state.lostEditingRights = false; @@ -983,6 +983,8 @@ define([ if (me.appOptions.isEdit && me.appOptions.spreadsheet.fileType.toLowerCase()==='csv') Common.UI.TooltipManager.showTip({ step: 'openCsv', text: me.warnOpenCsv, target: '#toolbar', maxwidth: 350, automove: true, noHighlight: true, noArrow: true, showButton: false}); + if (me.appOptions.isEdit && !me.appOptions.canModifyFilter) + Common.UI.TooltipManager.showTip({ step: 'cantModifyFilter', text: me.warnModifyFilter, target: '#toolbar', maxwidth: 400, showButton: false, automove: true, noHighlight: true, noArrow: true}); value = (this.appOptions.isEditMailMerge || this.appOptions.isEditDiagram || this.appOptions.isEditOle) ? 100 : Common.localStorage.getItem("sse-settings-zoom"); Common.Utils.InternalSettings.set("sse-settings-zoom", value); @@ -3550,7 +3552,7 @@ define([ } Common.UI.alert({ title: this.notcriticalErrorTitle, - msg: (opts.data.error) ? opts.data.error : this.txtErrorLoadHistory, + msg: (opts.data.error) ? Common.Utils.String.htmlEncode(opts.data.error) : this.txtErrorLoadHistory, iconCls: 'warn', buttons: ['ok'], callback: _.bind(function(btn){ diff --git a/apps/spreadsheeteditor/main/app/controller/Statusbar.js b/apps/spreadsheeteditor/main/app/controller/Statusbar.js index 534090072c..a3fd503c64 100644 --- a/apps/spreadsheeteditor/main/app/controller/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Statusbar.js @@ -875,6 +875,7 @@ define([ var clr, effectcolors = Common.Utils.ThemeColor.getEffectColors(); + if (!effectcolors) return; for (var i = 0; i < effectcolors.length; ++i) { if (typeof(picker.currentColor) == 'object' && clr === undefined && diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 29edc2b136..0b5a023059 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -3840,6 +3840,7 @@ define([ var clr; var effectcolors = Common.Utils.ThemeColor.getEffectColors(); + if (!effectcolors) return; for (var i = 0; i < effectcolors.length; i++) { if (typeof(picker.currentColor) == 'object' && clr === undefined && @@ -3856,17 +3857,18 @@ define([ } }; - updateColors(this.toolbar.mnuTextColorPicker, Common.Utils.ThemeColor.getStandartColors()[1]); + var stdColors = Common.Utils.ThemeColor.getStandartColors(); + updateColors(this.toolbar.mnuTextColorPicker, stdColors ? stdColors[1] : undefined); if (this.toolbar.btnTextColor.currentColor === undefined || !this.toolbar.btnTextColor.currentColor.isAuto) { - this.toolbar.btnTextColor.currentColor=Common.Utils.ThemeColor.getStandartColors()[1]; + this.toolbar.btnTextColor.currentColor=stdColors ? stdColors[1] : undefined; this.toolbar.btnTextColor.setColor(this.toolbar.btnTextColor.currentColor); } - updateColors(this.toolbar.mnuBackColorPicker, Common.Utils.ThemeColor.getStandartColors()[3]); + updateColors(this.toolbar.mnuBackColorPicker, stdColors ? stdColors[3] : undefined); if (this.toolbar.btnBackColor.currentColor === undefined) { - this.toolbar.btnBackColor.currentColor=Common.Utils.ThemeColor.getStandartColors()[3]; + this.toolbar.btnBackColor.currentColor=stdColors ? stdColors[3] : undefined; } else - this.toolbar.btnBackColor.currentColor = this.toolbar.mnuBackColorPicker.currentColor.color || this.toolbar.mnuBackColorPicker.currentColor; + this.toolbar.btnBackColor.currentColor = this.toolbar.mnuBackColorPicker.currentColor ? this.toolbar.mnuBackColorPicker.currentColor.color || this.toolbar.mnuBackColorPicker.currentColor : this.toolbar.mnuBackColorPicker.currentColor; this.toolbar.btnBackColor.setColor(this.toolbar.btnBackColor.currentColor); if (this._state.clrtext_asccolor!==undefined || this._state.clrshd_asccolor!==undefined) { @@ -3885,7 +3887,7 @@ define([ var clr_item = this.toolbar.btnBorders.menu.$el.find('#id-toolbar-menu-auto-bordercolor > a'); !clr_item.hasClass('selected') && clr_item.addClass('selected'); } - this.toolbar.btnBorders.options.borderscolor = currentColor.color || currentColor; + this.toolbar.btnBorders.options.borderscolor = currentColor ? currentColor.color || currentColor : currentColor; $('#id-toolbar-mnu-item-border-color > a .menu-item-icon').css('border-color', '#' + this.toolbar.btnBorders.options.borderscolor); } }, diff --git a/apps/spreadsheeteditor/main/app/view/RightMenu.js b/apps/spreadsheeteditor/main/app/view/RightMenu.js index e59d54f435..763d36ee3c 100644 --- a/apps/spreadsheeteditor/main/app/view/RightMenu.js +++ b/apps/spreadsheeteditor/main/app/view/RightMenu.js @@ -295,7 +295,7 @@ define([ Common.localStorage.setItem("sse-hide-right-settings", 0); Common.Utils.InternalSettings.set("sse-hide-right-settings", false); } - target_pane_parent.find('.settings-panel.active').removeClass('active'); + target_pane_parent.find('.content-box > .active').removeClass('active'); target_pane && target_pane.addClass("active"); if (this.scroller) { @@ -309,7 +309,6 @@ define([ Common.Utils.InternalSettings.set("sse-hide-right-settings", true); } - !isPlugin && $('.right-panel .plugin-panel').toggleClass('active', false); btn && !isPlugin && this.fireEvent('rightmenuclick', [this, btn.options.asctype, this.minimizedMode, e]); }, @@ -322,7 +321,7 @@ define([ } else { var target_pane = $("#" + this._settings[type].panel ); if ( !target_pane.hasClass('active') ) { - target_pane.parent().find('.settings-panel.active').removeClass('active'); + target_pane.parent().find('> .active').removeClass('active'); target_pane.addClass("active"); if (this.scroller) { this.scroller.update(); @@ -341,7 +340,7 @@ define([ clearSelection: function() { var target_pane = $(".right-panel"); - target_pane.find('.settings-panel.active').removeClass('active'); + target_pane.find('.content-box > .active').removeClass('active'); this._settings.forEach(function(item){ if (item.btn.isActive()) item.btn.toggle(false, true); @@ -364,6 +363,10 @@ define([ Common.UI.SideMenu.prototype.setButtons.apply(this, [allButtons]); }, + insertPanel: function ($panel) { + this.$el.find('.side-panel .content-box').append($panel); + }, + updateWidth: function() { var pane = $(this.el).find('.right-panel'), paddings = parseInt(pane.css('padding-left')) + parseInt(pane.css('padding-right')); diff --git a/apps/spreadsheeteditor/main/app/view/ViewTab.js b/apps/spreadsheeteditor/main/app/view/ViewTab.js index 7db0c4cf7a..af84781fc9 100644 --- a/apps/spreadsheeteditor/main/app/view/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/view/ViewTab.js @@ -315,7 +315,11 @@ define([ }); this.lockedControls.push(this.btnViewPageBreak); - if (!(this.appConfig.customization && this.appConfig.customization.macros===false)) { + if ( + this.appConfig.isEdit && + !(this.appConfig.customization && this.appConfig.customization.macros===false) && + !(Common.Controllers.Desktop && Common.Controllers.Desktop.isWinXp()) + ) { this.btnMacros = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-macros', @@ -530,7 +534,11 @@ define([ me.toolbar && me.toolbar.$el.find('.separator.sheet-freeze').hide(); me.toolbar && me.toolbar.$el.find('.group.sheet-gridlines').hide(); } - if (!config.isEdit || config.customization && config.customization.macros===false) { + if ( + !config.isEdit || + config.customization && config.customization.macros===false || + (Common.Controllers.Desktop && Common.Controllers.Desktop.isWinXp()) + ) { me.toolbar.$el.find('.macro').remove(); } diff --git a/apps/spreadsheeteditor/main/index_internal.html.deploy b/apps/spreadsheeteditor/main/index_internal.html.deploy index d87077ec68..9d44bea8dc 100644 --- a/apps/spreadsheeteditor/main/index_internal.html.deploy +++ b/apps/spreadsheeteditor/main/index_internal.html.deploy @@ -187,7 +187,7 @@ var re = /chrome\/(\d+)/i.exec(userAgent); if (!!re && !!re[1] && !(re[1] > 49)) { setTimeout(function () { - document.getElementsByTagName('body')[0].className += "winxp"; + document.getElementsByTagName('html')[0].className += "winxp"; },0); } } diff --git a/apps/spreadsheeteditor/main/locale/ar.json b/apps/spreadsheeteditor/main/locale/ar.json index 02bc18710b..ecf9043a91 100644 --- a/apps/spreadsheeteditor/main/locale/ar.json +++ b/apps/spreadsheeteditor/main/locale/ar.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "إذا تابعت الحفظ بهذا التنسيق ستفقد كل الميزات عدا النص
هل حقاً تريد المتابعة؟", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "إن تنسيق CSV لا يدعم حفظ الملفات التي تحتوي على أوراق متعددة.
للحفاظ على النسق المححد و حفظ الورقة الحالية فقط، إضغط على زر الحفظ.
للحفظ إلى الجدول الحسابي الحالي، إضغط على إلغاء و من ثم احفظ الملف باستخدام تنسيق مختلف.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "سيقوم هذا الفعل بإضافة {0} مراقبات خلية.
هل تود المتابعة؟", "SSE.Controllers.Main.confirmAddCellWatchesMax": "سيقوم هذا الفعل بإضافة {0} مراقبات خلية فقط لأسباب تتعلق بتوفير الذاكرة.
هل تود المتابعة؟", "SSE.Controllers.Main.confirmMaxChangesSize": "حجم الإجراءات تجاوز الحد الموضوع لخادمك.
اضغط على \"تراجع\" لإلغاء آخر ما قمت به أو اضغط على \"متابعة\" لحفظ ما قمت به محليا (يجب عليك تحميل الملف أو نسخ محتوياته للتأكد من عدم فقدان شئ).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "الترخيص منتهي الصلاحية.
بالرجاء تحديث الترخيص الخاص بك واعادة تحميل الصفحة", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "الترخيص منتهي الصلاحية.
ليس لديك صلاحية تعديل المستند.
برجاء التواصل مع مسئولك", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "يجب تجديد الترخيص.
لديك وصول محدود إلى وظيفة تحرير المستندات.
يُرجى الاتصال بالمسؤول للحصول على حق الوصول الكامل", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "لقد وصلت إلى الحد الأقصي للأتصالات المتزامنة في وقت واحد ل 1% محررين. هذا المستند يستم فتحه للمعاينة فقط.
اتصل %1 فريق المبيعات لمعرفة شروط الترقية للإستخدام الشخصي.", "SSE.Controllers.Main.warnNoLicenseUsers": "لقد وصلت إلى الحد الأقصى لعدد المستخدمين المسموح به لـ %1 من المحررين. اتصل بفريق مبيعات %1 لمعرفة شروط الترقية الشخصية.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "خط", "SSE.Views.ViewTab.textMacros": "وحدات الماكرو", "SSE.Views.ViewTab.textManager": "مدير المظاهر", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "اللوحة اليمنى", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "عرض ظلال اللوائح المجمدة", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "نمط التبويبة", "SSE.Views.ViewTab.textUnFreeze": "إلغاء تجميد الأشرطة", "SSE.Views.ViewTab.textZeros": "إظهار الأصفار", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "تجميد الأشرطة", "SSE.Views.ViewTab.tipInterfaceTheme": "سمة الواجهة", "SSE.Views.ViewTab.tipMacros": "وحدات الماكرو", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "مظهر الورقة", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "عرض المستند في الوضع الطبيعي", "SSE.Views.ViewTab.tipViewPageBreak": "عرض أين ستظهر فواصل الصفحة عند طباعة المستند", "SSE.Views.ViewTab.txtViewNormal": "عادي", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "أدخل كلمة السر لفك تشفير الصفحة", "SSE.Views.WBProtection.txtSheetUnlockTitle": "فك حماية الورقة", "SSE.Views.WBProtection.txtWBUnlockDescription": "أدخل كلمة سر لفك تشفير المصنف", - "SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "فك حماية المصنف" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/az.json b/apps/spreadsheeteditor/main/locale/az.json index 858eccf77a..e45f5fc726 100644 --- a/apps/spreadsheeteditor/main/locale/az.json +++ b/apps/spreadsheeteditor/main/locale/az.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Bu formatda yadda saxlamağa davam etsəniz, mətndən başqa bütün funksiyalar itiriləcək.
Davam etmək istədiyinizdən əminsiniz?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Lisenziyanızın vaxtı bitib.
Lisenziyanızı yeniləyin və səhifəni yeniləyin.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisenziyanın müddəti bitdi.
Sənəd redaktə funksiyasına girişiniz yoxdur.
Lütfən, inzibatçınızla əlaqə saxlayın.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lisenziya yenilənməlidir.
Sənəd redaktə funksiyasına məhdud girişiniz var.
Tam giriş əldə etmək üçün inzibatçınızla əlaqə saxlayın.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Siz %1 redaktorlarına eyni vaxtda qoşulma limitinə çatdınız. Bu sənəd yalnız baxmaq üçün açılacaq.
Şəxsi təkmilləşdirmə şərtləri üçün %1 satış komandası ilə əlaqə saxlayın.", "SSE.Controllers.Main.warnNoLicenseUsers": "%1 redaktor üçün istifadəçi limitinə çatdınız. Şəxsi təkmilləşdirmə şərtləri üçün %1 satış komandası ilə əlaqə saxlayın.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Sətir", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Görünüş meneceri", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Panellərdən Dondurmanı götür", "SSE.Views.ViewTab.textZeros": "Sıfırları göstərin", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Panelləri Dondur", "SSE.Views.ViewTab.tipInterfaceTheme": "İnterfeys mövzusu", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Vərəq görünüşü", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Vərəqin mühafizəsini ləğv etmək üçün parol daxil edin", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Vərəqin qorumasını ləğv et", "SSE.Views.WBProtection.txtWBUnlockDescription": "İş kitabının mühafizəsini ləğv etmək üçün parol daxil edin", - "SSE.Views.WBProtection.txtWBUnlockTitle": "İş kitabının qorumasını ləğv et", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "İş kitabının qorumasını ləğv et" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/be.json b/apps/spreadsheeteditor/main/locale/be.json index b705a25570..da1be6b2db 100644 --- a/apps/spreadsheeteditor/main/locale/be.json +++ b/apps/spreadsheeteditor/main/locale/be.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Калі вы працягнеце захаванне ў гэты фармат, усе функцыі, апроч тэксту страцяцца.
Сапраўды хочаце працягнуць?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Гэтае дзеянне дадасць {0} ячэек назірання.
Хочаце працягнуць?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Каб зэканоміць памяць, гэтае дзеянне дадасць толькі {0} ячэек назірання.
Хочаце працягнуць?", "SSE.Controllers.Main.confirmMaxChangesSize": "Памер зменаў перасягае абмежаванне вашага сервера.
Націсніце \"Адрабіць\", каб адрабіць апошняе дзеянне або націсніце \"Працягнуць\", каб захаваць дзеянне лакальна (трэба будзе спампаваць файл або скапіяваць яго змесціва, каб нічога не страцілася).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Тэрмін дзеяння ліцэнзіі сышоў.
У вас няма доступу да функцый рэдагавання дакументаў.
Калі ласка, звярніцеся да адміністратара.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Патрэбна абнавіць ліцэнзію.
У вас абмежаваны доступ да функцый рэдагавання дакументаў.
Каб атрымаць поўны доступ, звярніцеся да адміністратара", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", "SSE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Лінія", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Кіраўнік мініяцюр", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Правая панэль", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Паказваць цень для замацаваных панэляў", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Адмацаваць вобласці", "SSE.Views.ViewTab.textZeros": "Паказваць нулі", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Замацаваць вобласці", "SSE.Views.ViewTab.tipInterfaceTheme": "Тэма інтэрфейсу", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Мініяцюра аркуша", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Звычайны", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Каб зняць абарону аркуша, увядзіце пароль", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняць абарону аркуша", "SSE.Views.WBProtection.txtWBUnlockDescription": "Каб зняць абарону кнігі, увядзіце пароль", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняць абарону працоўнай кнігі" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/bg.json b/apps/spreadsheeteditor/main/locale/bg.json index 9eb4716def..6dd3bf980c 100644 --- a/apps/spreadsheeteditor/main/locale/bg.json +++ b/apps/spreadsheeteditor/main/locale/bg.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ако продължите да записвате в този формат, всички функции, с изключение на текста, ще бъдат загубени.
Сигурни ли сте, че искате да продължите?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Вашият лиценз е изтекъл.
Моля, актуализирайте лиценза си и опреснете страницата.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Тази версия на редакторите на %1 има някои ограничения за едновременни връзки към сървъра за документи.
Ако имате нужда от повече, моля обмислете закупуването на търговски лиценз.", "SSE.Controllers.Main.warnNoLicenseUsers": "Тази версия на редакторите на %1 има някои ограничения за едновременни потребители.
Ако имате нужда от повече, моля обмислете закупуването на търговски лиценз.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Линия", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Unfreeze panes", "SSE.Views.ViewTab.textZeros": "Show Zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 8e77d14dfd..944df909ab 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Si continues i deses en aquest format, es perdran totes les característiques, excepte el text.
Vols continuar?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "El format CSV no admet desar un fitxer de diversos fulls.
Per mantenir el format seleccionat i desar només el full actual, prem Desa.
Per desar el full de càlcul actual, fes clic a Cancel·la i desa'l en un format diferent.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Aquesta acció afegirà {0} visualitzacions de cel·les. Vols continuar?", "SSE.Controllers.Main.confirmMaxChangesSize": "La mida de les accions excedeix la limitació establerta pel servidor.
Prem «Desfés» per a cancel·lar l'última acció o prem «Continua» per a mantenir l'acció localment (cal baixar el fitxer o copiar el seu contingut per a assegurar-te que no es perd res).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "La teva llicència ha caducat.
Actualitza la llicència i torna a carregar la pàgina.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No tens accés a la funció d'edició de documents.
Posa't en contacte amb el teu administrador.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Tens accés limitat a la funció d'edició de documents.
Posa't en contacte amb l'administrador per obtenir accés total", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Has arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà al mode de només lectura. Contacta l'equip de vendes %1 per a les condicions personals de millora del servei.", "SSE.Controllers.Main.warnNoLicenseUsers": "Has arribat al límit d'usuaris per a %1 editors. Contacta amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels teus serveis.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Línia", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Administrador de la visualització", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Panell dret", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar l'ombra de les subfinestres immobilitzades", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Mobilitzar subfinestres", "SSE.Views.ViewTab.textZeros": "Mostrar zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Immobilitza les subfinestres", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfície", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Visualització del full", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Mostra el document en vista Normal", "SSE.Views.ViewTab.tipViewPageBreak": "Mostra on apareixeran els salts de pàgina quan s'imprimeixi el document", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Introdueix una contrasenya per desprotegir el full", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desprotegeix el full", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introdueix una contrasenya per desprotegir el llibre", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotegeix el llibre de treball", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotegeix el llibre de treball" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index 48f8973498..56e6cf67a1 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
Opravdu chcete pokračovat?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "Formát CSV nepodporuje ukládání souboru s více listy a všech prvků kromě textu.
Pro uložení pouze vybraného listu do CSV, klikněte na OK.
Pro uložení celého sešitu a všech jeho vlastností klikněte na Zrušit a vyberte jiný formát.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "Formát CSV nepodporuje ukládání souboru s více listy.
Chcete-li zachovat zvolený formát a uložit pouze aktuální list, stiskněte tlačítko Uložit.
Chcete-li uložit aktuální sešit, klikněte na tlačítko Zrušit a uložte jej v jiném formátu.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Touto akcí přidáte {0} kukátek do buněk.
Opravdu chcete pokračovat?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Touto akcí přidáte pouze {0} kukátek do buněk, z důvodu ukládání do paměti.
Opravdu chcete pokračovat?", "SSE.Controllers.Main.confirmMaxChangesSize": "Množství akcí překračuje limity nastavené pro váš server.
Stisknutím tlačítka \"Zpět\" zrušíte poslední akci, nebo stisknutím tlačítka \"Pokračovat\" ponecháte akci lokálně (soubor si musíte stáhnout, nebo zkopírovat jeho obsah, abyste se ujistili, že se nic neztratí).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Platnost vaší licence skončila.
Obnovte si svou licenci a načtěte stránku znovu.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Platnost vaší licence skončila.
Nemáte přístup k upravování dokumentů.
Obraťte se na svého správce.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Vaši licenci je nutné obnovit.
Přístup k možnostem editace dokumentu je omezen.
Pro získání plného přístupu prosím kontaktujte svého administrátora.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Došlo dosažení limitu souběžných připojení %1 editorů. Dokument bude otevřen pouze pro náhled.
Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "SSE.Controllers.Main.warnNoLicenseUsers": "Došlo k dosažení limitu %1 editorů. Pro rozšíření funkcí kontaktujte %1 obchodní oddělení.", "SSE.Controllers.Main.warnOpenCsv": "Formát CSV nepodporuje ukládání souboru s více listy, nebo jiné prvky nežli text.
Bude uložen pouze aktivní list.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Liniový", "SSE.Views.ViewTab.textMacros": "Makra", "SSE.Views.ViewTab.textManager": "Správce zobrazení", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Pravý panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Zobrazit stín ukotvených příček", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Styl panelu", "SSE.Views.ViewTab.textUnFreeze": "Zrušit ukotvení příček", "SSE.Views.ViewTab.textZeros": "Zobrazit nuly", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Ukotvit příčky", "SSE.Views.ViewTab.tipInterfaceTheme": "Vzhled uživatelského rozhraní", "SSE.Views.ViewTab.tipMacros": "Makra", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Zobrazení listu", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Ukázat dokument v normálním zobrazení", "SSE.Views.ViewTab.tipViewPageBreak": "Zobrazit, kde bude zobrazeno zalomení stránky při tisku dokumentu", "SSE.Views.ViewTab.txtViewNormal": "Normální", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Zadejte heslo pro deaktivaci zabezpečení listu", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Zrušit zabezpečení listu", "SSE.Views.WBProtection.txtWBUnlockDescription": "Vložte heslo pro přístup k sešitu", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušit zabezpečení sešitu", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušit zabezpečení sešitu" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/da.json b/apps/spreadsheeteditor/main/locale/da.json index f6640f3c27..9a77c778cd 100644 --- a/apps/spreadsheeteditor/main/locale/da.json +++ b/apps/spreadsheeteditor/main/locale/da.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Hvis du fortsætter med at gemme i dette format, vil alle funktioner på nær teksten blive tabt.
Er du sikker på at du vil fortsætte?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Din licens er udløbet.
Opdater venligst din licens og genindlæs siden.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licens udløbet.
Du har ikke adgang til at redigere.
Kontakt venligst din administrator.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licens skal fornyes.
Du har begrænset adgang til at redigere dokumenter.
Kontakt venligst din administrator for at få fuld adgang.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Du har nået grænsen for antal samtidige forbindelser til %1 værktøjer. Dokumentet åbnes for læsning.
Kontakt %1 salgsteamet for betingelser for opgradering.", "SSE.Controllers.Main.warnNoLicenseUsers": "Du har nået grænsen for brugere af %1 redigeringsværktøj. Kontakt %1 salgsafdeling for at høre om dine opgraderingsmuligheder.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linie", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Administrér visning", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Lås paneler op", "SSE.Views.ViewTab.textZeros": "Vis nuller", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Frys paneler", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface tema", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Arkvisning", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Indtast en adgangskode for at fjerne beskyttelsen af ​​arket", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Fjern beskyttelse af ark", "SSE.Views.WBProtection.txtWBUnlockDescription": "Indtast en adgangskode for at fjerne beskyttelsen af ​​projektmappen", - "SSE.Views.WBProtection.txtWBUnlockTitle": "ubeskyt projektmappe", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "ubeskyt projektmappe" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 75679a95bc..1840907323 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Die Lizenz ist abgelaufen.
Die Bearbeitungsfunktionen sind nicht verfügbar.
Bitte wenden Sie sich an Ihrem Administrator.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden.
Die Bearbeitungsfunktionen sind eingeschränkt.
Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff", + "SSE.Controllers.Main.warnModifyFilter": "Sie befinden sich in einem Modus, in dem Filter nur für Sie sichtbar sind und nicht gespeichert werden. Sie können keine Filter hinzufügen oder entfernen.
Um Ihre aktuelle Ansicht zu speichern, verwenden Sie die Option Blattansicht auf der Registerkarte Ansicht.", "SSE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "SSE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", "SSE.Controllers.Main.warnOpenCsv": "Das CSV-Format unterstützt nicht das Speichern einer Datei mit mehreren Blättern oder irgendwelcher Elemente außer Text.
Es wird nur das aktive Blatt gespeichert.", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linie", "SSE.Views.ViewTab.textMacros": "Makros", "SSE.Views.ViewTab.textManager": "Ansichten-Manager", + "SSE.Views.ViewTab.textPauseMacro": "Aufnahme pausieren", + "SSE.Views.ViewTab.textRecMacro": "Makro aufzeichnen", + "SSE.Views.ViewTab.textResumeMacro": "Aufnahme fortsetzen", "SSE.Views.ViewTab.textRightMenu": "Rechtes Bedienungsfeld ", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Schatten für fixierte Bereiche anzeigen", + "SSE.Views.ViewTab.textStopMacro": "Aufnahme beenden", "SSE.Views.ViewTab.textTabStyle": "Stil der Registerkarte", "SSE.Views.ViewTab.textUnFreeze": "Fixierung aufheben", "SSE.Views.ViewTab.textZeros": "Nullen anzeigen", @@ -5098,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Fensterausschnitt fixieren", "SSE.Views.ViewTab.tipInterfaceTheme": "Thema der Benutzeroberfläche", "SSE.Views.ViewTab.tipMacros": "Makros", + "SSE.Views.ViewTab.tipPauseMacro": "Aufnahme pausieren", + "SSE.Views.ViewTab.tipRecMacro": "Makro aufzeichnen", + "SSE.Views.ViewTab.tipResumeMacro": "Aufnahme fortsetzen", "SSE.Views.ViewTab.tipSheetView": "Tabellenansicht", + "SSE.Views.ViewTab.tipStopMacro": "Aufnahme beenden", "SSE.Views.ViewTab.tipViewNormal": "Das Dokument in der Normalansicht sehen", "SSE.Views.ViewTab.tipViewPageBreak": "Sehen Sie, wo die Seitenumbrüche beim Druck Ihres Dokuments erscheinen werden", "SSE.Views.ViewTab.txtViewNormal": "Normal", diff --git a/apps/spreadsheeteditor/main/locale/el.json b/apps/spreadsheeteditor/main/locale/el.json index cd7e7fc757..f9e9bb05a9 100644 --- a/apps/spreadsheeteditor/main/locale/el.json +++ b/apps/spreadsheeteditor/main/locale/el.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.
Θέλετε σίγουρα να συνεχίσετε;", "SSE.Controllers.LeftMenu.warnDownloadCsv": "Η μορφή CSV δεν υποστηρίζει την αποθήκευση ενός αρχείου με πολλές σελίδες και όλα τα στοιχεία, εκτός από το κείμενο.
Για να αποθηκεύσετε μόνο την επιλεγμένη σελίδα σε μορφή CSV, πατήστε OK.
Για να αποθηκεύσετε ολόκληρο το φύλλο εργασίας και όλα τα χαρακτηριστικά, κάντε κλικ στην Ακύρωση και επιλέξτε μια άλλη μορφή.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "Η μορφή CSV δεν υποστηρίζει την αποθήκευση ενός αρχείου πολλών φύλλων.
Για να διατηρήσετε την επιλεγμένη μορφή και να αποθηκεύσετε μόνο το τρέχον φύλλο, πατήστε Αποθήκευση.
Για να αποθηκεύσετε το τρέχον υπολογιστικό φύλλο, κάντε κλικ στην Ακύρωση και αποθηκεύστε το σε διαφορετική μορφή.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Η αποθήκευση αυτού του αρχείου ενδέχεται να προκαλέσει την απώλεια ορισμένων τύπων, μορφοποίησης κελιών ή ενσωματωμένων αντικειμένων λόγω περιορισμένης υποστήριξης μορφής.
Είστε σίγουροι ότι θέλετε να συνεχίσετε;", "SSE.Controllers.Main.confirmAddCellWatches": "Αυτή η ενέργεια θα προσθέσει {0} παρακολουθήσεις κελιών.
Θέλετε να συνεχίσετε;", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Αυτή η ενέργεια θα προσθέσει μόνο {0} παρακολουθήσεις κελιών λόγω εξοικονόμησης μνήμης.
Θέλετε να συνεχίσετε;", "SSE.Controllers.Main.confirmMaxChangesSize": "Το μέγεθος των ενεργειών υπερβαίνει τον περιορισμό που έχει οριστεί για τον διακομιστή σας.
Πατήστε \"Αναίρεση\" για να ακυρώσετε την τελευταία σας ενέργεια ή πατήστε \"Συνέχεια\" για να διατηρήσετε την ενέργεια τοπικά (πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν θα χαθεί τίποτα).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Η άδειά σας έχει λήξει.
Παρακαλούμε ενημερώστε την άδεια χρήσης σας και ανανεώστε τη σελίδα.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Η άδεια έληξε.
Δεν έχετε πρόσβαση στη δυνατότητα επεξεργασίας εγγράφων.
Επικοινωνήστε με τον διαχειριστή σας.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί.
Έχετε περιορισμένη πρόσβαση στη λειτουργία επεξεργασίας εγγράφων.
Επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση", + "SSE.Controllers.Main.warnModifyFilter": "Βρίσκεστε σε λειτουργία όπου τα φίλτρα είναι ορατά μόνο σε εσάς και δεν αποθηκεύονται. Δεν μπορείτε να προσθέσετε ή να αφαιρέσετε φίλτρα.
Για να αποθηκεύσετε την τρέχουσα προβολή σας, χρησιμοποιήστε την Προβολή Φύλλου στην καρτέλα Προβολή.", "SSE.Controllers.Main.warnNoLicense": "Αυτή η έκδοση των επεξεργαστών %1 έχει ορισμένους περιορισμούς για ταυτόχρονες συνδέσεις με το διακομιστή εγγράφων.
Εάν χρειάζεστε περισσότερες, παρακαλούμε σκεφτείτε να αγοράσετε μια εμπορική άδεια.", "SSE.Controllers.Main.warnNoLicenseUsers": "Αυτή η έκδοση των επεξεργαστών %1 έχει ορισμένους περιορισμούς για τους ταυτόχρονους χρήστες.
Εάν χρειάζεστε περισσότερους, παρακαλούμε σκεφτείτε να αγοράσετε μια εμπορική άδεια.", "SSE.Controllers.Main.warnOpenCsv": "Η μορφή CSV δεν υποστηρίζει την αποθήκευση αρχείου πολλών φύλλων ή οποιωνδήποτε στοιχείων εκτός από κείμενο.
Θα αποθηκευτεί μόνο το ενεργό φύλλο.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Γραμμή", "SSE.Views.ViewTab.textMacros": "Μακροεντολές", "SSE.Views.ViewTab.textManager": "Διαχειριστής προβολής", + "SSE.Views.ViewTab.textPauseMacro": "Παύση εγγραφής", + "SSE.Views.ViewTab.textRecMacro": "Εγγραφή μακροεντολής", + "SSE.Views.ViewTab.textResumeMacro": "Συνέχιση εγγραφής", "SSE.Views.ViewTab.textRightMenu": "Δεξιό πλαίσιο", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Εμφάνιση σκιάς σταθεροποιημένων πλαισίων", + "SSE.Views.ViewTab.textStopMacro": "Διακοπή εγγραφής", "SSE.Views.ViewTab.textTabStyle": "Στυλ καρτέλας", "SSE.Views.ViewTab.textUnFreeze": "Απελευθέρωση παραθύρων", "SSE.Views.ViewTab.textZeros": "Εμφάνιση μηδενικών", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Σταθεροποίηση πλαισίων", "SSE.Views.ViewTab.tipInterfaceTheme": "Θέμα διεπαφής", "SSE.Views.ViewTab.tipMacros": "Μακροεντολές", + "SSE.Views.ViewTab.tipPauseMacro": "Παύση εγγραφής", + "SSE.Views.ViewTab.tipRecMacro": "Εγγραφή μακροεντολής", + "SSE.Views.ViewTab.tipResumeMacro": "Συνέχιση εγγραφής", "SSE.Views.ViewTab.tipSheetView": "Όψη φύλλου", + "SSE.Views.ViewTab.tipStopMacro": "Διακοπή εγγραφής", "SSE.Views.ViewTab.tipViewNormal": "Προβολή του εγγράφου σας σε κανονική προβολή", "SSE.Views.ViewTab.tipViewPageBreak": "Δείτε πού θα εμφανίζονται οι αλλαγές σελίδας όταν εκτυπωθεί το έγγραφό σας", "SSE.Views.ViewTab.txtViewNormal": "Κανονικό", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Εισάγετε συνθηματικό για άρση προστασίας φύλλου", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Άρση προστασίας φύλλου", "SSE.Views.WBProtection.txtWBUnlockDescription": "Εισάγετε συνθηματικό για άρση προστασίας βιβλίου εργασίας", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Άρση προστασίας βιβλίου εργασίας" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index de2632c3ef..8861976bfa 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Unfreeze panes", "SSE.Views.ViewTab.textZeros": "Show Zeros", @@ -5098,19 +5103,15 @@ "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", "SSE.Views.ViewTab.txtViewPageBreak": "Page Break Preview", - "SSE.Views.ViewTab.textRecMacro": "Record macro", - "SSE.Views.ViewTab.textPauseMacro": "Pause recording", - "SSE.Views.ViewTab.textResumeMacro": "Resume recording", - "SSE.Views.ViewTab.textStopMacro": "Stop recording", - "SSE.Views.ViewTab.tipRecMacro": "Record macro", - "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", - "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", - "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.WatchDialog.closeButtonText": "Close", "SSE.Views.WatchDialog.textAdd": "Add watch", "SSE.Views.WatchDialog.textBook": "Book", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index c5b23fcfc5..0dcf349a18 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
Por favor, actualice su licencia y recargue la página.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia expirada.
No tiene acceso a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Se requiere que renueve su licencia.
Tiene un acceso limitado a la funcionalidad de edición de documentos.
Por favor, póngase en contacto con su administrador para obtener un acceso completo", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá en modo de solo lectura.
Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.", "SSE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1. Contacte con el equipo de ventas de %1 para conocer las condiciones de una mejora de su plan.", "SSE.Controllers.Main.warnOpenCsv": "El formato CSV no permite guardar un archivo de varias hojas, ni ningún elemento excepto el texto.
Solo se guardará la hoja activa.", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Línea", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Administrador de vista", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Panel derecho", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar la sombra de paneles congelados", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Estilo de pestaña", "SSE.Views.ViewTab.textUnFreeze": "Descongelar paneles", "SSE.Views.ViewTab.textZeros": "Mostrar ceros", @@ -5098,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Congelar paneles", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema de la interfaz", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Vista de hoja", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Ver el documento en vista Normal", "SSE.Views.ViewTab.tipViewPageBreak": "Ver dónde aparecerán los saltos de página al imprimir el documento", "SSE.Views.ViewTab.txtViewNormal": "Normal", diff --git a/apps/spreadsheeteditor/main/locale/eu.json b/apps/spreadsheeteditor/main/locale/eu.json index e251692483..1d1121edcb 100644 --- a/apps/spreadsheeteditor/main/locale/eu.json +++ b/apps/spreadsheeteditor/main/locale/eu.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Formatu honetan gordetzen baduzu, testua ez diren ezaugarri guztiak galduko dira.
Ziur zaude aurrera jarraitu nahi duzula?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV formatuak ez du onartzen orri anitzeko fitxategiak gordetzea.
Hautatutako formatua mantentzeko eta uneko orria soilik gordetzeko, sakatu Gorde.
Uneko kalkulu-orria gordetzeko, egin klik Utzi eta gorde beste formatu batean.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Ekintza honek {0} gelaxka-ikuskatzaile gehituko ditu.
Jarraitu nahi duzu?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Ekintza honek soilik {0} gelaxka-ikuskatzaile gehituko ditu memoria aurrezteko.
Jarraitu nahi duzu?", "SSE.Controllers.Main.confirmMaxChangesSize": "Ekintzen tamainak zure zerbitzariak ezarritako muga gainditzen du.
Sakatu \"Desegin\" azken ekintza ezeztatzeko edo sakatu \"Jarraitu\" ekintza lokalki mantentzeko (fitxategia deskargatu edo bere edukia kopiatu behar duzu ezer ez dela galtzen ziurtatzeko).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Zure lizentzia iraungi da.
Mesedez, eguneratu lizentzia eta kargatu berriz orria.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lizentzia iraungi da.
Ez daukazu dokumentuak editatzeko funtzionalitaterako sarbiderik.
Mesedez, jarri zure administratzailearekin harremanetan.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lizentzia berritu behar da.
Dokumentuak editatzeko funtzionalitatera sarbide mugatua duzu.
Mesedez, jarri harremanetan zure administratzailearekin sarbide osoko lortzeko", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Dokumentu hau irakurtzeko soilik irekiko da.
Jarri harremanetan %1 salmenta taldearekin mailaz igotzeko baldintzak ezagutzeko.", "SSE.Controllers.Main.warnNoLicenseUsers": "Aldi bereko %1 editoreren konexio-mugara iritsi zara. Jarri harremanetan %1 salmenta taldearekin mailaz igotzeko baldintzak ezagutzeko.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Marra", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Ikuspegi-kudeatzailea", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Eskuineko panela", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Erakutsi panel izoztuen itzalak", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Askatu panelak", "SSE.Views.ViewTab.textZeros": "Erakutsi zeroak", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Izoztu panelak", "SSE.Views.ViewTab.tipInterfaceTheme": "Interfazearen gaia", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Orriaren ikuspegia", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Ikusi dokumentua ikuspegi normalean", "SSE.Views.ViewTab.tipViewPageBreak": "Ikusi orri-jauziak non agertuko diren dokumentua inprimatzean", "SSE.Views.ViewTab.txtViewNormal": "Normala", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Idatzi pasahitza orriari babesa kentzeko", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Kendu babesa orriari", "SSE.Views.WBProtection.txtWBUnlockDescription": "Idatzi pasahitza laneko liburuari babesa kentzeko", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Kendu babesa laneko liburuari", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Kendu babesa laneko liburuari" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fi.json b/apps/spreadsheeteditor/main/locale/fi.json index 635b3d8bce..b7b0fa343d 100644 --- a/apps/spreadsheeteditor/main/locale/fi.json +++ b/apps/spreadsheeteditor/main/locale/fi.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Jos jatkat tässä muodossa talletusta, niin kaikki ominaisuudet, paitsi teksti, menetetään.
Oletko varma että haluat jatkaa?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Lisenssisi on erääntynyt.
Ole hyvä ja päivitä lisenssisi ja virkistä sivu.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisenssi erääntynyt.
Sinulla ei ole käyttöoikeutta asiakirjan muokkaustyökaluun.
Ota yhteyttä ylläpitäjään.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lisenssi on uusittava.
Sinulla on rajoitettu käyttöoikeus asiakirjan muokkaustyökaluun.
Ota yhteyttä ylläpitäjään saadaksesi täydet käyttöoikeudet.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Olet käyttämässä %1 avoimen lähdekoodin versiota. Versiolla on rajoituksia yhtäaikaisten yhteyksien määrän suhteen asiakirjan palvelimelle (20 yhteyttä samaan aikaan).
Jos haluat lisää, niin voit harkita kaupallista lisenssiä.", "SSE.Controllers.Main.warnNoLicenseUsers": "Olet saavuttanut käyttäjärajan %1 muokkaustyökalussa. Ota yhteyttä %1 myyntiosastoon käyttöoikeuden laajentamiseksi.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Viiva", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Oikea paneeli", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Välilehden tyyli", "SSE.Views.ViewTab.textUnFreeze": "Unfreeze panes", "SSE.Views.ViewTab.textZeros": "Show Zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipInterfaceTheme": "Käyttöliittymän teema", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 599377908a..197c89f21b 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
Veuillez mettre à jour votre licence et actualisez la page.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "La licence est expirée.
Vous n'avez plus d'accès aux outils d'édition.
Veuillez contacter votre administrateur.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence.
Vous avez un accès limité aux outils d'édition des documents.
Veuillez contacter votre administrateur pour obtenir un accès complet", + "SSE.Controllers.Main.warnModifyFilter": "Vous êtes dans un mode où les filtres ne sont visibles que par vous et ne sont pas enregistrés. Vous ne pouvez ni ajouter ni supprimer de filtres. Pour enregistrer votre affichage actuel, utilisez l'option Mode feuille dans l'onglet Affichage.", "SSE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "SSE.Controllers.Main.warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", "SSE.Controllers.Main.warnOpenCsv": "Le format CSV ne prend pas en charge l'enregistrement d'un fichier à plusieurs feuilles ni aucun élément autre que du texte. Seule la feuille active sera enregistrée.", @@ -2633,7 +2634,7 @@ "SSE.Views.ChartSettingsDlg.textAltTitle": "Titre", "SSE.Views.ChartSettingsDlg.textAuto": "Auto", "SSE.Views.ChartSettingsDlg.textAutoEach": "Automatique pour chacune", - "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Croisement de l'axe", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Intersection de l'axe", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Options de l'axe", "SSE.Views.ChartSettingsDlg.textAxisPos": "Position de l'axe", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Paramètres de l’axe", @@ -2669,7 +2670,7 @@ "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundreds": "Centaines", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", - "SSE.Views.ChartSettingsDlg.textIn": "Intérieur", + "SSE.Views.ChartSettingsDlg.textIn": "À l’intérieur", "SSE.Views.ChartSettingsDlg.textInnerBottom": "À l'intérieur en bas", "SSE.Views.ChartSettingsDlg.textInnerTop": "À l'intérieur en haut", "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERREUR! Plage de cellules non valide", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Ligne", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Gestionnaire d'affichage", + "SSE.Views.ViewTab.textPauseMacro": "Mettre en pause l'enregistrement", + "SSE.Views.ViewTab.textRecMacro": "Enregistrer une macro", + "SSE.Views.ViewTab.textResumeMacro": "Reprendre l'enregistrement", "SSE.Views.ViewTab.textRightMenu": "Panneau droit", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afficher l'ombre des volets figés", + "SSE.Views.ViewTab.textStopMacro": "Arrêter l'enregistrement", "SSE.Views.ViewTab.textTabStyle": "Style d'onglet", "SSE.Views.ViewTab.textUnFreeze": "Libérer les volets", "SSE.Views.ViewTab.textZeros": "Afficher les zéros", @@ -5098,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Figer les volets", "SSE.Views.ViewTab.tipInterfaceTheme": "Thème d'interface", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Mettre en pause l'enregistrement", + "SSE.Views.ViewTab.tipRecMacro": "Enregistrer une macro", + "SSE.Views.ViewTab.tipResumeMacro": "Reprendre l'enregistrement", "SSE.Views.ViewTab.tipSheetView": "Mode Feuille", + "SSE.Views.ViewTab.tipStopMacro": "Arrêter l'enregistrement", "SSE.Views.ViewTab.tipViewNormal": "Voir votre document en Affichage normal", "SSE.Views.ViewTab.tipViewPageBreak": "Voir où les sauts de page apparaîtront lors de l'impression du document", "SSE.Views.ViewTab.txtViewNormal": "Normal", diff --git a/apps/spreadsheeteditor/main/locale/gl.json b/apps/spreadsheeteditor/main/locale/gl.json index 56d8079c59..da448bb482 100644 --- a/apps/spreadsheeteditor/main/locale/gl.json +++ b/apps/spreadsheeteditor/main/locale/gl.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se segue gardando neste formato, todas as características a excepción do texto perderanse.
Te na certeza de que desexa continuar?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "A túa licenza caducou.
Actualiza a túa licenza e actualiza a páxina.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licenza expirada.
Non ten acceso á funcionalidade de edición de documentos.
por favor, póñase en contacto co seu administrador.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "A licenza precisa ser renovada.
Ten un acceso limitado á funcionalidade de edición de documentos.
Por favor, póñase en contacto co seu administrador para obter un acceso completo", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Alcanzou o límite de conexións simultáneas con %1 editores. Este documento abrirase só para as úa visualización.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "SSE.Controllers.Main.warnNoLicenseUsers": "Alcanzou o límite de usuarios para os editores de %1.
Contacte co equipo de vendas de %1 para coñecer os termos de actualización persoal.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Liña", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Xestionador da vista", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Amosar a sombra de paneis inmobilizados", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Mobilizar paneis", "SSE.Views.ViewTab.textZeros": "Amosar ceros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Inmobilizar paneis", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Vista da folla", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduza un contrasinal para quitarlle a protección á folla", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desprotexer folla", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduza un contrasinal para quitarlle a protección ao libro", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotexer libro", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Desprotexer libro" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/he.json b/apps/spreadsheeteditor/main/locale/he.json index 8890d17673..3029280e17 100644 --- a/apps/spreadsheeteditor/main/locale/he.json +++ b/apps/spreadsheeteditor/main/locale/he.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "
אם תימשך השמירה בפורמט זה כל התכונות מלבד הטקסט יאבדו.האם להמשיך בוודאות?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "הפורמט אינו תומך בשמירת קובץ מרובה גיליונות.
כדי לשמור את הפורמט שנבחר ולשמור רק את הגיליון הנוכחי נא ללחוץ על \"שמירה\".
כדי לשמור את הגיליון האלקטרוני הנוכחי נא ללחוץ על \"ביטול\" ולשמור אותו בפורמט אחר.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "פעולה זו תוסיף מעקב אחר תאים{0} .
האם אתה רוצה להמשיך?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "פעולה זו תוסיף רק {0} מעקבים על תאים כדי לחסוך זיכרון.
האם להמשיך?", "SSE.Controllers.Main.confirmMaxChangesSize": "כמות הפעולות שבוצעו עולה על המגבלה שנקבעה עבור השרת.
נא ללחוץ על \"בטל\" כדי לבטל את הפעולה האחרונה או ללחוץ על \"המשך\" כדי לשמור את הפעולה באופן מקומי (יהיה צורך להוריד את הקובץ או להעתיק את התוכן שלו כדי לוודא שלא יאבד דבר).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "
פג תוקפו של הרישיון שלך.נא לעדכן את הרישיון שלך ולרענן את הדף.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "

פג תוקפו של הרישיון.אין לך גישה לפונקציונליות של עריכת מסמכים.נא ליצור קשר עם מנהל המערכת שלך.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "

נא לחדש את הרישיון.יש לך גישה מוגבלת לפונקציונליות של עריכת מסמכים.נא ליצור קשר עם מנהל המערכת שלך כדי לקבל גישה מלאה", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "הגעת למגבלה של חיבורים סימולטניים לעורכי %1.
מסמך זה ייפתח לצפייה בלבד.נא ליצור קשר עם צוות המכירות %1 לקבלת תנאי שדרוג אישיים.", "SSE.Controllers.Main.warnNoLicenseUsers": "הגעת למגבלת המשתמש עבור %1 עורכים. נא ליצור קשר עם צוות המכירות %1 לקבלת תנאי שדרוג אישיים.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "קו", "SSE.Views.ViewTab.textMacros": "פקודות מאקרו", "SSE.Views.ViewTab.textManager": "מנהל תצוגות", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "לוח ימני", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "הצגת הצללה של שורות ועמודות קבועות", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "סגנון טאב", "SSE.Views.ViewTab.textUnFreeze": "ביטול הקפאת חלונות", "SSE.Views.ViewTab.textZeros": "הצג אפסים", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "הקפאת חלוניות", "SSE.Views.ViewTab.tipInterfaceTheme": "ערכת נושא", "SSE.Views.ViewTab.tipMacros": "פקודות מאקרו", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "תצוגת גיליון", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "צפיה במסמך בתצוגה רגילה", "SSE.Views.ViewTab.tipViewPageBreak": "ראה היכן יופיעו מעברי הדף בעת הדפסת המסמך", "SSE.Views.ViewTab.txtViewNormal": "רגיל", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "הזנת סיסמה כדי להסיר הגנה גיליון", "SSE.Views.WBProtection.txtSheetUnlockTitle": "הסרת הגנה על גליון", "SSE.Views.WBProtection.txtWBUnlockDescription": "הזנת סיסמה כדי לבטל את ההגנה חוברת עבודה", - "SSE.Views.WBProtection.txtWBUnlockTitle": "חוברת עבודה לא מוגנת", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "חוברת עבודה לא מוגנת" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hu.json b/apps/spreadsheeteditor/main/locale/hu.json index af0ce16d1b..3d15f52eff 100644 --- a/apps/spreadsheeteditor/main/locale/hu.json +++ b/apps/spreadsheeteditor/main/locale/hu.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
Biztos benne, hogy folytatni akarja?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "A CSV formátum nem támogatja a többlapos fájlok és a szöveg kivételével az összes elem mentését.
Csak a kiválasztott munkalap CSV-fájlba mentéséhez kattintson az OK gombra.
A teljes táblázat és az összes funkció mentéséhez kattintson a Mégse gombra, és válasszon másik formátumot.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "A CSV formátum nem támogatja a többlapos fájlok mentését.
A kiválasztott formátum megőrzéséhez és csak az aktuális munkalap mentéséhez kattintson a Mentés gombra.
Az aktuális táblázat mentéséhez kattintson a Mégse gombra, és mentse el más formátumban.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Ez a művelet {0} cellafigyelőt ad hozzá.
Folytatja?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Ez a művelet csak {0} cellafigyelőt ad hozzá a memóriába mentés okának megfelelően.
Folytatja?", "SSE.Controllers.Main.confirmMaxChangesSize": "A műveletek mérete meghaladja a kiszolgálóra beállított korlátozást.
Nyomja meg a „Mégse” gombot az utolsó művelet törléséhez, vagy nyomja meg a „Folytatás” gombot a művelet helyben tartásához (a fájl letöltése vagy tartalmának másolása szükséges, hogy biztosan ne vesszen el semmi).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "A licence lejárt.
Kérem frissítse a licencét, majd az oldalt.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "A licenc lejárt.
Nincs hozzáférése a dokumentumszerkesztő funkciókhoz.
Kérjük, lépjen kapcsolatba a rendszergazdával.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "A licencet meg kell újítani.
Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
A teljes hozzáférésért forduljon rendszergazdájához", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
Vegye fel a kapcsolatot a(z) %1 értékesítési csapatával a személyes frissítési feltételekért.", "SSE.Controllers.Main.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", "SSE.Controllers.Main.warnOpenCsv": "A CSV formátum nem támogatja a többlapos fájlok vagy a szövegen kívüli elemek mentését.
Csak az aktív munkalap kerül mentésre.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Vonal", "SSE.Views.ViewTab.textMacros": "Makrók", "SSE.Views.ViewTab.textManager": "Megtekintéskezelő", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Jobb panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mutassa a rögzített panelek árnyékát", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Lap stílus", "SSE.Views.ViewTab.textUnFreeze": "Rögzítés eltávolítása", "SSE.Views.ViewTab.textZeros": "Nullák megjelenítése", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Panelek rögzítése", "SSE.Views.ViewTab.tipInterfaceTheme": "Felhasználói felület témája", "SSE.Views.ViewTab.tipMacros": "Makrók", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Lapnézet", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "A dokumentum megtekintése normál nézetben", "SSE.Views.ViewTab.tipViewPageBreak": "Oldaltörések megjelenítése a dokumentum nyomtatása során", "SSE.Views.ViewTab.txtViewNormal": "Normál", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Írjon be egy jelszót a munkalap védelmének megszüntetéséhez", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Munkalap védelmének megszüntetése", "SSE.Views.WBProtection.txtWBUnlockDescription": "Írjon be egy jelszót a munkafüzet védelmének megszüntetéséhez", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Munkafüzet védelmének megszüntetése", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Munkafüzet védelmének megszüntetése" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index 85aa9ee4ff..6f01ab60ed 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Եթե շարունակեք պահպանումն այս ձևաչափով, բոլոր հատկությունները՝ տեքստից բացի, կկորչեն։
Վստա՞հ եք, որ ցանկանում եք շարունակել:", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV ձևաչափը չի աջակցում բազմաշերտ ֆայլի պահպանմանը:
Ընտրված ձևաչափը պահելու և միայն ընթացիկ թերթիկը պահելու համար սեղմեք Պահպանել:
Ընթացիկ աղյուսակը պահելու համար սեղմեք Չեղարկել և պահել այն այլ ձևաչափով:", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Այս գործողությամբ կավելացվեն {0} բջջային ժամացույցներ:
Ցանկանու՞մ եք շարունակել։", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Այս գործողությամբ կավելացվեն միայն {0} բջջային ժամացույցներ՝ ըստ հիշողության պահպանման պատճառի:
Ցանկանու՞մ եք շարունակել։", "SSE.Controllers.Main.confirmMaxChangesSize": "Գործողությունների չափը գերազանցում է Ձեր սերվերի համար սահմանված սահմանափակումը:
Սեղմեք «Հետարկել»՝ Ձեր վերջին գործողությունը չեղարկելու համար կամ սեղմեք «Շարունակել»՝ գործողությունը տեղում պահելու համար (Դուք պետք է ներբեռնեք ֆայլը կամ պատճենեք դրա բովանդակությունը՝ համոզվելու համար, որ ոչինչ կորած չէ):", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Ձեր թույլատրագրի ժամկետը սպառվել է։
Թարմացրեք թույլատրագիրը, ապա՝ էջը։", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Լիցենզիայի ժամկետը լրացել է
Դուք չունեք փաստաթղթերի խմբագրման գործառույթից օգտվելու հնարավորություն :
Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ:", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Լիցենզիան պետք է երկարաձգել:
Դուք ունեք փաստաթղթերի խմբագրման գործառույթի սահմանափակ հասանելիություն:
Խնդրում ենք կապվել Ձեր ադմինիստրատորի հետ՝ լիարժեք մուտք ստանալու համար", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Այս փաստաթուղթը կբացվի միայն ընթերցման համար։
Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի բաժին։", "SSE.Controllers.Main.warnNoLicenseUsers": "Դուք հասել եք %1 խմբագրիչներին միաժամանակ միանալու սահմանափակմանը։ Ծրագրի նորացման անհատական պայմանները քննարկելու համար գրեք վաճառքի %1 բաժին։", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Գիծ", "SSE.Views.ViewTab.textMacros": "Մակրոներ", "SSE.Views.ViewTab.textManager": "Դիտել կառավարիչը", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Աջ վահանակ", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Ցույց տալ սառեցված ապակիների ստվերը", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Ներդիրի ոճ", "SSE.Views.ViewTab.textUnFreeze": "Ապասառեցնել փեղկերը", "SSE.Views.ViewTab.textZeros": "Ցույց տալ զրոները", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Փեղկերի սառեցում", "SSE.Views.ViewTab.tipInterfaceTheme": "Ինտերֆեյսի ոճ", "SSE.Views.ViewTab.tipMacros": "Մակրոներ", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Թերթի տեսք", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Դիտեք ձեր փաստաթուղթը նորմալ տեսքով", "SSE.Views.ViewTab.tipViewPageBreak": "Տեսեք, թե որտեղ կհայտնվեն էջի ընդհատումները, երբ ձեր փաստաթուղթը տպվի", "SSE.Views.ViewTab.txtViewNormal": "Սովորական", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ թերթը չպաշտպանելու համար", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Չպաշտպանել թերթիկը", "SSE.Views.WBProtection.txtWBUnlockDescription": "Մուտքագրեք գաղտնաբառ՝ աշխատանքային գրքույկը պաշտպանելու համար", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Չպաշտպանել աշխատանքային գրքույկը", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Չպաշտպանել աշխատանքային գրքույկը" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/id.json b/apps/spreadsheeteditor/main/locale/id.json index adf9ccdd18..ffd114c03b 100644 --- a/apps/spreadsheeteditor/main/locale/id.json +++ b/apps/spreadsheeteditor/main/locale/id.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Jika Anda lanjut simpan dengan format ini, semua fitur kecuali teks akan hilang.
Apakah Anda ingin melanjutkan?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "Format CSV tidak mendukung penyimpanan file multi-sheet.
Untuk tetap menggunakan format terpilih dan hanya menyimpan sheet ini, tekan Simpan.
Untuk menyimpan spreadsheet ini, klik Batalkan dan simpan dengan format lain.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Tindakan ini akan menambahkan {0} pengawas sel.
Apakah Anda ingin melanjutkan?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Tindakan ini hanya akan menambahkan {0} pengawas sel atas alasan penghematan memori.
Apakah Anda akan melanjutkan?", "SSE.Controllers.Main.confirmMaxChangesSize": "Ukuran tindakan melebihi batas yang ditetapkan untuk server Anda.
Tekan \"Batalkan\" untuk membatalkan tindakan terakhir Anda atau tekan \"Lanjutkan\" untuk menyimpan tindakan secara lokal (Anda perlu mengunduh file atau menyalin isinya untuk memastikan tidak ada yang hilang).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Lisensi Anda sudah kedaluwarsa.
Silakan perbarui lisensi Anda dan segarkan halaman.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensi kadaluwarsa.
Anda tidak memiliki akses untuk editing dokumen secara keseluruhan.
Silakan hubungi admin Anda.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lisensi perlu diperbaharui.
Anda memiliki akses terbatas untuk edit dokumen.
Silakan hubungi admin Anda untuk mendapatkan akses penuh", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Anda sudah mencapai batas untuk koneksi bersamaan ke %1 editor. Dokumen ini akan dibuka untuk dilihat saja.
Hubungi %1 tim sales untuk syarat personal upgrade.", "SSE.Controllers.Main.warnNoLicenseUsers": "Anda sudah mencapai batas user untuk %1 editor. Hubungi %1 tim sales untuk syarat personal upgrade.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Garis", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Manajer tampilan", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Panel kanan", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Tampillkan bayangan panel beku", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Batal Bekukan Panel", "SSE.Views.ViewTab.textZeros": "Tampilkan zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema antarmuka", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Tampilan sheet", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Lihat dokumen pada tampilan Normal", "SSE.Views.ViewTab.tipViewPageBreak": "Lihat di mana jeda halaman akan muncul ketika dokumen dicetak", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Masukkan password untuk membuka proteksi sheet", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Buka Proteksi Sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Masukkan password untuk membuka proteksi workbook", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Buka Proteksi Workbook", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Buka Proteksi Workbook" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 01457c2bf7..c51db46cbe 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -4,7 +4,7 @@ "Common.Controllers.Desktop.hintBtnHome": "Mostra la finestra principale", "Common.Controllers.Desktop.itemCreateFromTemplate": "Crea da modello", "Common.Controllers.ExternalLinks.textAddExternalData": "The link to an external source has been added. You can update such links in the Data tab.", - "Common.Controllers.ExternalLinks.textContinue": "Continue", + "Common.Controllers.ExternalLinks.textContinue": "Continua", "Common.Controllers.ExternalLinks.textDontUpdate": "Don't Update", "Common.Controllers.ExternalLinks.textTurnOff": "Turn off AutoUpdate", "Common.Controllers.ExternalLinks.textUpdate": "Update", @@ -23,16 +23,16 @@ "Common.Controllers.Plugins.textPluginSuccessfullyInstalled": "{0} è stato installato con successo. È possibile accedere a tutti i componenti in sittofondo qui.", "Common.Controllers.Plugins.textRunInstalledPlugins": "Esegui i componenti installati ", "Common.Controllers.Plugins.textRunPlugin": "Esegui componente", - "Common.Controllers.Shortcuts.txtDescriptionAddLineBreak": "Add a line break without starting a new paragraph when entering text within a graphical object.", + "Common.Controllers.Shortcuts.txtDescriptionAddLineBreak": "Aggiungi un'interruzione di riga senza iniziare un nuovo paragrafo quando inserisci testo all’interno di un oggetto grafico.", "Common.Controllers.Shortcuts.txtDescriptionAutoFill": "Use this shortcut in an empty cell below or above existing values in the column. A drop-down list with existing values will appear. Select one of the available text values to fill an empty cell.", "Common.Controllers.Shortcuts.txtDescriptionBold": "Make the font of the selected text fragment darker and heavier than normal, or remove the bold formatting.", "Common.Controllers.Shortcuts.txtDescriptionCellAddSeparator": "Insert a separator within an active cell.", - "Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat": "Apply the Currency format with two decimal places.", - "Common.Controllers.Shortcuts.txtDescriptionCellDateFormat": "Apply the Date format with the day, month, and year.", + "Common.Controllers.Shortcuts.txtDescriptionCellCurrencyFormat": "Applica il formato valuta con due cifre decimali.", + "Common.Controllers.Shortcuts.txtDescriptionCellDateFormat": "Applica il formato data con giorno, mese e anno.", "Common.Controllers.Shortcuts.txtDescriptionCellEditorSwitchReference": "Switch the type of a reference to a cell in the formula bar (absolute, relative).", - "Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel": "Cancel an entry in the selected cell or the formula bar.", - "Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat": "Apply the Exponential number format with two decimal places.", - "Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat": "Apply the General number format.", + "Common.Controllers.Shortcuts.txtDescriptionCellEntryCancel": "Annulla un inserimento nella cella selezionata o nella barra della formula.", + "Common.Controllers.Shortcuts.txtDescriptionCellExponentialFormat": "Applica il formato numerico esponenziale con due cifre decimali.", + "Common.Controllers.Shortcuts.txtDescriptionCellGeneralFormat": "Applica il formato numerico generico.", "Common.Controllers.Shortcuts.txtDescriptionCellInsertDate": "Insert the today date within an active cell.", "Common.Controllers.Shortcuts.txtDescriptionCellInsertSumFunction": "Insert the SUM function into the selected cell.", "Common.Controllers.Shortcuts.txtDescriptionCellInsertTime": "Insert the current time within an active cell.", @@ -53,20 +53,20 @@ "Common.Controllers.Shortcuts.txtDescriptionCellMoveTopEdge": "Outline a cell at the top edge of the visible data region.", "Common.Controllers.Shortcuts.txtDescriptionCellMoveTopNonBlank": "Outline the next cell with data above in a worksheet.", "Common.Controllers.Shortcuts.txtDescriptionCellMoveUp": "Outline a cell above the currently selected one.", - "Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat": "Apply the Number format with two decimal places, thousands separator, and minus sign (-) for negative values.", - "Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat": "Apply the Percentage format with no decimal places.", + "Common.Controllers.Shortcuts.txtDescriptionCellNumberFormat": "Applica il formato numerico con due cifre decimali, separatore delle migliaia e segno meno (-) per i valori negativi.", + "Common.Controllers.Shortcuts.txtDescriptionCellPercentFormat": "Applica il formato percentuale senza cifre decimali.", "Common.Controllers.Shortcuts.txtDescriptionCellStartNewLine": "Start a new line in the same cell.", - "Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat": "Apply the Time format with the hour and minute, and AM or PM.", + "Common.Controllers.Shortcuts.txtDescriptionCellTimeFormat": "Applica il formato orario con ore e minuti e l’indicazione AM o PM.", "Common.Controllers.Shortcuts.txtDescriptionCenterPara": "Switch a paragraph between centered and left-aligned. Works only with text within a graphical object.", "Common.Controllers.Shortcuts.txtDescriptionClearActiveCellContent": "Remove the content (data and formulas) from the active cell without affecting the cell format or comments.", "Common.Controllers.Shortcuts.txtDescriptionClearSelectedCellsContent": "Remove the content (data and formulas) from all selected cells without affecting the cell format or comments.", - "Common.Controllers.Shortcuts.txtDescriptionCloseFile": "Close the current spreadsheet window.", - "Common.Controllers.Shortcuts.txtDescriptionCloseMenu": "Close a menu or modal window. Suspend copying formats. Reset adding shapes mode. Clear clipboard when cutting/copying cells. Hide the Paste Special button.", - "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown": "Complete a cell entry in the selected cell or the formula bar, and move to the cell below.", - "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft": "Complete a cell entry in the selected cell or the formula bar and move to the cell on the left.", - "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight": "Complete a cell entry in the selected cell or the formula bar and move to the cell on the right.", - "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp": "Complete a cell entry in the selected cell, and move to the cell above.", - "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay": "Complete a cell entry in the selected cell or the formula bar and stay in it.", + "Common.Controllers.Shortcuts.txtDescriptionCloseFile": "Chiudi la finestra del foglio di calcolo corrente.", + "Common.Controllers.Shortcuts.txtDescriptionCloseMenu": "Chiudi un menù o una finestra modale. Sospendi la copia dei formati. Reimposta la modalità di aggiunta delle forme. Cancella gli appunti durante il taglio o la copia delle celle. Nascondi il pulsante Incolla speciale.", + "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveDown": "Conferma l’inserimento nella cella selezionata o nella barra della formula e spostati nella cella sottostante.", + "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveLeft": "Conferma l’inserimento nella cella selezionata o nella barra della formula e spostati nella cella a sinistra.", + "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveRight": "Conferma l’inserimento nella cella selezionata o nella barra della formula e spostati nella cella a destra.", + "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryMoveUp": "Conferma l’inserimento nella cella selezionata e spostati nella cella sopra.", + "Common.Controllers.Shortcuts.txtDescriptionCompleteCellEntryStay": "Conferma l’inserimento nella cella selezionata o nella barra della formula e rimani in essa.", "Common.Controllers.Shortcuts.txtDescriptionCopy": "Send the selected data/graphics to the computer clipboard memory. The copied data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program.", "Common.Controllers.Shortcuts.txtDescriptionCut": "Cut the selected data/graphics and send them to the computer clipboard memory. The cut data can be later inserted to another place in the same worksheet, into another spreadsheet, or into some other program.", "Common.Controllers.Shortcuts.txtDescriptionDecreaseFontSize": "Decrease the size of the font for the selected text fragment 1 point. Works only with text within a graphical object.", @@ -75,7 +75,7 @@ "Common.Controllers.Shortcuts.txtDescriptionDeleteRightChar": "Delete one character to the right in the formula bar or in the selected cell when the cell editing mode is activated. Remove the selection. Also removes the cell contents (data and formulas) from selected cells without affecting cell formats or comments. It is also applicable to text in graphical objects.", "Common.Controllers.Shortcuts.txtDescriptionDeleteRightWord": "Remove a word, selection to the right of the cursor.", "Common.Controllers.Shortcuts.txtDescriptionDownloadAs": "Open the Download as... panel to save the currently edited spreadsheet to the computer hard disk drive in one of the supported formats.", - "Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab": "Add the tab character to the object content.", + "Common.Controllers.Shortcuts.txtDescriptionDrawingAddTab": "Aggiungi il carattere di tabulazione al contenuto dell’oggetto.", "Common.Controllers.Shortcuts.txtDescriptionEditChart": "When the chart title is selected, select the text.", "Common.Controllers.Shortcuts.txtDescriptionEditOpenCellEditor": "Edit the active cell and position the insertion point at the end of the cell contents. If editing in a cell is turned off, the insertion point will be moved into the Formula Bar.", "Common.Controllers.Shortcuts.txtDescriptionEditRedo": "Repeat the latest undone action.", @@ -84,16 +84,16 @@ "Common.Controllers.Shortcuts.txtDescriptionEditUndo": "Reverse the latest performed action.", "Common.Controllers.Shortcuts.txtDescriptionEnDash": "Insert an en dash to the right of the cursor.", "Common.Controllers.Shortcuts.txtDescriptionEndParagraph": "End the current paragraph and start a new one when entering text within a graphical object.", - "Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder": "Add a new placeholder to the equation argument.", + "Common.Controllers.Shortcuts.txtDescriptionEquationAddPlaceholder": "Aggiungi un nuovo segnaposto all'argomento dell'equazione.", "Common.Controllers.Shortcuts.txtDescriptionExitAddingShapesMode": "Exit from adding shapes mode. Remove selection step by step (e.g., if the content of a shape within a group is selected, the cursor will be removed from the content first, then from the shape, then from the group).", "Common.Controllers.Shortcuts.txtDescriptionFillSelectedCellRange": "Fill the selected cell range with the current entry. Select a cell range, type data to the active cell, and press the specified keys to fill all the selected cells with entered data.", - "Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate": "Apply a table template to a selected cell range.", - "Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow": "Add the Summary row for a formatted table.", + "Common.Controllers.Shortcuts.txtDescriptionFormatAsTableTemplate": "Applica un modello di tabella a un intervallo di celle selezionato.", + "Common.Controllers.Shortcuts.txtDescriptionFormatTableAddSummaryRow": "Aggiungi la riga di riepilogo a una tabella formattata.", "Common.Controllers.Shortcuts.txtDescriptionIncreaseFontSize": "Increase the size of the font for the selected text fragment 1 point. Works only with text within a graphical object.", "Common.Controllers.Shortcuts.txtDescriptionInsertHyperlink": "Insert a hyperlink which can be used to go to a web address.", "Common.Controllers.Shortcuts.txtDescriptionItalic": "Make the font of the selected text fragment italicized and slightly slanted, or remove italic formatting.", "Common.Controllers.Shortcuts.txtDescriptionJustifyPara": "Switch a paragraph between justified and left-aligned. Works only with text within a graphical object.", - "Common.Controllers.Shortcuts.txtDescriptionLeftPara": "Align a paragraph left. Works only with text within a graphical object.", + "Common.Controllers.Shortcuts.txtDescriptionLeftPara": "Allinea un paragrafo a sinistra. Funziona solo con il testo all’interno di un oggetto grafico.", "Common.Controllers.Shortcuts.txtDescriptionMoveBeginningLine": "Put the cursor to the beginning of the currently edited line.", "Common.Controllers.Shortcuts.txtDescriptionMoveBeginningText": "Put the cursor to the very beginning of the text in a cell or shape.", "Common.Controllers.Shortcuts.txtDescriptionMoveCharacterLeft": "Move the cursor one character to the left.", @@ -185,7 +185,7 @@ "Common.Controllers.Shortcuts.txtDescriptionSelectWordLeft": "Select one word to the left of the cursor.", "Common.Controllers.Shortcuts.txtDescriptionSelectWordRight": "Select one word to the right of the cursor.", "Common.Controllers.Shortcuts.txtDescriptionShowFormulas": "Display functions (not their values) on a sheet for printing them.", - "Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues": "Clear selected values for a slicer.", + "Common.Controllers.Shortcuts.txtDescriptionSlicerClearSelectedValues": "Cancella i valori selezionati per un filtro dati.", "Common.Controllers.Shortcuts.txtDescriptionSlicerSwitchMultiSelect": "Enable/disable multi-select for a slicer.", "Common.Controllers.Shortcuts.txtDescriptionSpeechWorker": "Enables/disables the transmission of actions performed in the application for screen readers.", "Common.Controllers.Shortcuts.txtDescriptionStrikeout": "Make the selected text fragment struck out with a line going through the letters, or remove strikeout formatting.", @@ -199,8 +199,8 @@ "Common.Controllers.Shortcuts.txtDescriptionZoomIn": "Zoom in the currently edited spreadsheet.", "Common.Controllers.Shortcuts.txtDescriptionZoomOut": "Zoom out the currently edited spreadsheet.", "Common.Controllers.Shortcuts.txtLabelAddLineBreak": "AddLineBreak", - "Common.Controllers.Shortcuts.txtLabelAutoFill": "AutoFill", - "Common.Controllers.Shortcuts.txtLabelBold": "Bold", + "Common.Controllers.Shortcuts.txtLabelAutoFill": "Autoriempimento", + "Common.Controllers.Shortcuts.txtLabelBold": "Grassetto", "Common.Controllers.Shortcuts.txtLabelCellAddSeparator": "CellAddSeparator", "Common.Controllers.Shortcuts.txtLabelCellCurrencyFormat": "CellCurrencyFormat", "Common.Controllers.Shortcuts.txtLabelCellDateFormat": "CellDateFormat", @@ -641,8 +641,8 @@ "Common.UI.ButtonColored.textAutoColor": "Automatico", "Common.UI.ButtonColored.textEyedropper": "Contagocce", "Common.UI.ButtonColored.textNewColor": "Più colori", - "Common.UI.Calendar.textApril": "April", - "Common.UI.Calendar.textAugust": "August", + "Common.UI.Calendar.textApril": "aprile", + "Common.UI.Calendar.textAugust": "agosto", "Common.UI.Calendar.textDecember": "December", "Common.UI.Calendar.textFebruary": "February", "Common.UI.Calendar.textJanuary": "January", @@ -655,7 +655,7 @@ "Common.UI.Calendar.textOctober": "October", "Common.UI.Calendar.textSeptember": "September", "Common.UI.Calendar.textShortApril": "Apr", - "Common.UI.Calendar.textShortAugust": "Aug", + "Common.UI.Calendar.textShortAugust": "Ago", "Common.UI.Calendar.textShortDecember": "Dec", "Common.UI.Calendar.textShortFebruary": "Feb", "Common.UI.Calendar.textShortFriday": "Fr", @@ -879,11 +879,11 @@ "Common.Views.Draw.txtSize": "Dimensione", "Common.Views.EditNameDialog.textLabel": "Etichetta:", "Common.Views.EditNameDialog.textLabelError": "L'etichetta non deve essere vuota.", - "Common.Views.ExternalLinksDlg.closeButtonText": "Close", - "Common.Views.ExternalLinksDlg.textAutoUpdate": "Automatically update data from the linked sources", - "Common.Views.ExternalLinksDlg.textChange": "Change source", - "Common.Views.ExternalLinksDlg.textDelete": "Break links", - "Common.Views.ExternalLinksDlg.textDeleteAll": "Break all links", + "Common.Views.ExternalLinksDlg.closeButtonText": "Chiudi", + "Common.Views.ExternalLinksDlg.textAutoUpdate": "Aggiorna automaticamente i dati dalle fonti collegate", + "Common.Views.ExternalLinksDlg.textChange": "Cambia fonte", + "Common.Views.ExternalLinksDlg.textDelete": "Interrompi i collegamenti", + "Common.Views.ExternalLinksDlg.textDeleteAll": "Interrompi tutti i collegamenti", "Common.Views.ExternalLinksDlg.textOk": "OK", "Common.Views.ExternalLinksDlg.textOpen": "Open source", "Common.Views.ExternalLinksDlg.textSource": "Source", @@ -893,7 +893,7 @@ "Common.Views.ExternalLinksDlg.textUpdateAll": "Update all", "Common.Views.ExternalLinksDlg.textUpdating": "Updating...", "Common.Views.ExternalLinksDlg.txtTitle": "External links", - "Common.Views.FormatSettingsDialog.textCategory": "Category", + "Common.Views.FormatSettingsDialog.textCategory": "Categoria", "Common.Views.FormatSettingsDialog.textDecimal": "Decimal", "Common.Views.FormatSettingsDialog.textFormat": "Format", "Common.Views.FormatSettingsDialog.textLinked": "Linked to source", @@ -901,13 +901,13 @@ "Common.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator", "Common.Views.FormatSettingsDialog.textSymbols": "Symbols", "Common.Views.FormatSettingsDialog.textTitle": "Number format", - "Common.Views.FormatSettingsDialog.txtAccounting": "Accounting", - "Common.Views.FormatSettingsDialog.txtAs10": "As tenths (5/10)", - "Common.Views.FormatSettingsDialog.txtAs100": "As hundredths (50/100)", - "Common.Views.FormatSettingsDialog.txtAs16": "As sixteenths (8/16)", - "Common.Views.FormatSettingsDialog.txtAs2": "As halves (1/2)", - "Common.Views.FormatSettingsDialog.txtAs4": "As fourths (2/4)", - "Common.Views.FormatSettingsDialog.txtAs8": "As eighths (4/8)", + "Common.Views.FormatSettingsDialog.txtAccounting": "Contabilità", + "Common.Views.FormatSettingsDialog.txtAs10": "decimi (5/10)", + "Common.Views.FormatSettingsDialog.txtAs100": "Centesimi (50/100)", + "Common.Views.FormatSettingsDialog.txtAs16": "sedicesimi (8/16)", + "Common.Views.FormatSettingsDialog.txtAs2": "Mezzi (1/2)", + "Common.Views.FormatSettingsDialog.txtAs4": "Quarti (2/4)", + "Common.Views.FormatSettingsDialog.txtAs8": "Ottavi (4/8)", "Common.Views.FormatSettingsDialog.txtCurrency": "Currency", "Common.Views.FormatSettingsDialog.txtCustom": "Custom", "Common.Views.FormatSettingsDialog.txtCustomWarning": "Please enter the custom number format carefully. Spreadsheet Editor does not check custom formats for errors that may affect the xlsx file.", @@ -1198,11 +1198,11 @@ "Common.Views.ShortcutsDialog.txtEmpty": "No matches found. Adjust your search.", "Common.Views.ShortcutsDialog.txtRestoreAll": "Restore All to Defaults", "Common.Views.ShortcutsDialog.txtRestoreContinue": "Do you want to continue?", - "Common.Views.ShortcutsDialog.txtRestoreDescription": "All shortcuts settings will be restored to default.", + "Common.Views.ShortcutsDialog.txtRestoreDescription": "Tutte le scorciatoie saranno ripristinate ai valori predefiniti.", "Common.Views.ShortcutsDialog.txtRestoreToDefault": "Restore to default", "Common.Views.ShortcutsDialog.txtSearch": "Search", "Common.Views.ShortcutsDialog.txtTitle": "Keyboard Shortcuts", - "Common.Views.ShortcutsEditDialog.txtAction": "Action", + "Common.Views.ShortcutsEditDialog.txtAction": "Azione", "Common.Views.ShortcutsEditDialog.txtInputPlaceholder": "Type desired shortcut", "Common.Views.ShortcutsEditDialog.txtInputWarnMany": "The shortcut used by actions %1", "Common.Views.ShortcutsEditDialog.txtInputWarnManyLocked": "The shortcut used by actions %1 and can’t be changed", @@ -1210,7 +1210,7 @@ "Common.Views.ShortcutsEditDialog.txtInputWarnOneLocked": "The shortcut used by action %1 and can’t be changed", "Common.Views.ShortcutsEditDialog.txtNewShortcut": "New shortcut", "Common.Views.ShortcutsEditDialog.txtRestoreContinue": "Do you want to continue?", - "Common.Views.ShortcutsEditDialog.txtRestoreDescription": "All shortcuts for action “%1” will be restored to default.", + "Common.Views.ShortcutsEditDialog.txtRestoreDescription": "Tutte le scorciatoie per l'azione “%1” saranno ripristinate ai valori predefiniti.", "Common.Views.ShortcutsEditDialog.txtRestoreToDefault": "Restore to default", "Common.Views.ShortcutsEditDialog.txtTitle": "Edit shortcut", "Common.Views.ShortcutsEditDialog.txtTypeDesiredShortcut": "Type desired shortcut", @@ -1297,7 +1297,7 @@ "SSE.Controllers.DocumentHolder.leftText": "A sinistra", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avviso", "SSE.Controllers.DocumentHolder.rightText": "A destra", - "SSE.Controllers.DocumentHolder.textArgument": "Argument", + "SSE.Controllers.DocumentHolder.textArgument": "Argomento", "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Opzioni di correzione automatica", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Larghezza colonne {0} simboli ({1} pixel)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Altezza righe {0} punti ({1} pixel)", @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se continui a salvare in questo formato tutte le funzioni eccetto il testo andranno perse.
Sei sicuro di voler continuare?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "Il formato CSV non supporta il salvataggio di un file a più fogli.
Per mantenere il formato selezionato e salvare solo il foglio corrente, premi Salva.
Per salvare il foglio corrente, clicca su Annulla e salvalo in un formato diverso.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Questa azione aggiungerà {0} celle di controllo.
Si desidera continuare?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Questa azione aggiungerà solo {0} celle di controllo per motivi di risparmio di memoria.
Desideri continuare?", "SSE.Controllers.Main.confirmMaxChangesSize": "Le dimensioni delle azioni superano il limite impostato per il tuo server.
Premi \"Annulla\" per annullare l'ultima azione o premi \"Continua\" per mantenere l'azione localmente (devi scaricare il file o copiarne il contenuto per assicurarti che nulla vada perso).", @@ -1564,7 +1565,7 @@ "SSE.Controllers.Main.errorLockedCellGoalSeek": "Una delle celle coinvolte nel processo di ricerca dell'obiettivo è stata modificata da un altro utente.", "SSE.Controllers.Main.errorLockedCellPivot": "Non è possibile modificare i dati all'interno di una tabella pivot.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Il foglio non può essere rinominato al momento in quanto viene rinominato da un altro utente.", - "SSE.Controllers.Main.errorMacroUnavailableWarning": "Cannot run the macro %1. The macro may not be available in this workbook or all macros may be disabled.", + "SSE.Controllers.Main.errorMacroUnavailableWarning": "Impossibile eseguire la macro %1. La macro potrebbe non essere disponibile in questa cartella di lavoro oppure tutte le macro potrebbero essere disabilitate.", "SSE.Controllers.Main.errorMaxPoints": "Il numero massimo di punti in serie per grafico è di 4096.", "SSE.Controllers.Main.errorMoveRange": "Impossibile modificare parte di una cella unita", "SSE.Controllers.Main.errorMoveSlicerError": "I filtri dei dati della tabella non possono essere copiati da una cartella di lavoro a un'altra.
Riprova selezionando l'intera tabella e i filtri dei dati.", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
Si prega di aggiornarla e ricaricare la pagina.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licenza scaduta.
Non puoi modificare il documento.
Contatta l'amministratore.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "La licenza dev'essere rinnovata
Hai un accesso limitato alle funzioni di modifica del documento
Contatta l'amministratore per ottenere l'accesso completo", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite di connessioni simultanee a %1 editor. Questo documento verrà aperto in sola lettura.
Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "SSE.Controllers.Main.warnNoLicenseUsers": "Hai raggiunto il limite di utenti per %1 editor. Contatta il team di vendita di %1 per i termini di aggiornamento personali.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -2010,9 +2012,9 @@ "SSE.Controllers.Statusbar.errNameExists": "Sheet with such a name already exists.", "SSE.Controllers.Statusbar.errorLastSheet": "La cartella di lavoro deve contenere almeno un foglio di lavoro visibile.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Impossibile eliminare il foglio.", - "SSE.Controllers.Statusbar.errSheetNameRules": "You typed an invalid sheet name:
- A sheet name cannot be empty.
- A sheet name cannot contain the following characters: \\ / * ? [ ] : or the character ' as first or last character.", + "SSE.Controllers.Statusbar.errSheetNameRules": "Hai digitato un nome di foglio non valido:
- Il nome di un foglio non può essere vuoto.
- Il nome di un foglio non può contenere i seguenti caratteri: \\ / * ? [ ] : né il carattere ' come primo o ultimo carattere.", "SSE.Controllers.Statusbar.strSheet": "Foglio", - "SSE.Controllers.Statusbar.textContinue": "Continue", + "SSE.Controllers.Statusbar.textContinue": "Continua", "SSE.Controllers.Statusbar.textDisconnect": "Connessione persa
Tentativo di connessione in corso. Si prega di controllare le impostazioni di connessione.", "SSE.Controllers.Statusbar.textSheetViewTip": "Sei in modalità di visualizzazione del foglio di calcolo. I filtri e l'ordinamento sono visibili solo a te e a coloro che sono ancora in questa visualizzazione.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Sei in modalità di visualizzazione del foglio di calcolo. I filtri sono visibili solo a te e a coloro che sono ancora in questa visualizzazione.", @@ -2033,12 +2035,12 @@ "SSE.Controllers.Toolbar.errorMaxRows": "ERRORE! Il numero massimo di serie di dati per grafico è 255.", "SSE.Controllers.Toolbar.errorStockChart": "Ordine di righe scorretto. Per creare un grafico in pila posiziona i dati nel foglio nel seguente ordine:
prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", "SSE.Controllers.Toolbar.helpChartElements": "Easily toggle the visibility of chart elements with several clicks.", - "SSE.Controllers.Toolbar.helpChartElementsHeader": "Chart elements display", + "SSE.Controllers.Toolbar.helpChartElementsHeader": "Visualizzazione degli elementi del grafico", "SSE.Controllers.Toolbar.helpCommentFilter": "Manage your view by toggling between open and resolved comments in the left panel.", - "SSE.Controllers.Toolbar.helpCommentFilterHeader": "Comment filters", - "SSE.Controllers.Toolbar.helpRtlDir": "Adjust the text direction for cells to align with your content needs.", - "SSE.Controllers.Toolbar.helpRtlDirHeader": "Cell text direction", - "SSE.Controllers.Toolbar.helpTableTab": "Access all formatted table settings conveniently in the dedicated Table Design tab.", + "SSE.Controllers.Toolbar.helpCommentFilterHeader": "Filtri dei commenti", + "SSE.Controllers.Toolbar.helpRtlDir": "Regola la direzione del testo nelle celle in base alle tue esigenze di contenuto.", + "SSE.Controllers.Toolbar.helpRtlDirHeader": "Direzione del testo nella cella", + "SSE.Controllers.Toolbar.helpTableTab": "Accedi facilmente a tutte le impostazioni della tabella formattata nella scheda dedicata Progettazione tabella.", "SSE.Controllers.Toolbar.helpTableTabHeader": "Table Design tab", "SSE.Controllers.Toolbar.textAccent": "Accenti", "SSE.Controllers.Toolbar.textBracket": "Parentesi", @@ -2903,7 +2905,7 @@ "SSE.Views.DocumentHolder.allLinearText": "Tutti - Lineare", "SSE.Views.DocumentHolder.allProfText": "Tutti - Professionale", "SSE.Views.DocumentHolder.bottomCellText": "Allinea in basso", - "SSE.Views.DocumentHolder.btnChart": "Add, remove or change chart elements such as the title, legend, gridlines, and data labels", + "SSE.Views.DocumentHolder.btnChart": "Aggiungi, rimuovi o modifica elementi del grafico come titolo, legenda, griglia e etichette dati.", "SSE.Views.DocumentHolder.bulletsText": "Pallini e numerazione", "SSE.Views.DocumentHolder.centerCellText": "Allinea in mezzo", "SSE.Views.DocumentHolder.chartDataText": "Selezionare i dati del grafico", @@ -2945,10 +2947,10 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Porta avanti", "SSE.Views.DocumentHolder.textArrangeFront": "Porta in primo piano", "SSE.Views.DocumentHolder.textAverage": "Media", - "SSE.Views.DocumentHolder.textAxes": "Axes", - "SSE.Views.DocumentHolder.textAxisTitles": "Axis Titles", + "SSE.Views.DocumentHolder.textAxes": "Assi", + "SSE.Views.DocumentHolder.textAxisTitles": "Titoli dell'asse", "SSE.Views.DocumentHolder.textBullets": "Elenchi puntati", - "SSE.Views.DocumentHolder.textChartTitle": "Chart Title", + "SSE.Views.DocumentHolder.textChartTitle": "Titolo del grafico", "SSE.Views.DocumentHolder.textCopyCells": "Copia celle", "SSE.Views.DocumentHolder.textCount": "Conteggio", "SSE.Views.DocumentHolder.textCrop": "Ritaglia", @@ -3013,7 +3015,7 @@ "SSE.Views.DocumentHolder.textTrendline": "Trendline", "SSE.Views.DocumentHolder.textUndo": "Annulla", "SSE.Views.DocumentHolder.textUnFreezePanes": "Sblocca i riquadri", - "SSE.Views.DocumentHolder.textUpDownBars": " Up/Down Bars", + "SSE.Views.DocumentHolder.textUpDownBars": "Barre su/giù", "SSE.Views.DocumentHolder.textVar": "Varianza", "SSE.Views.DocumentHolder.textVerticalMajor": "Vertical Major", "SSE.Views.DocumentHolder.textVerticalMinor": "Vertical Minor", @@ -3342,7 +3344,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "come Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Spazio di lavoro", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Cinese", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw": "Chinese (Traditional)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZhtw": "Cinese (tradizionale)", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avviso", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "con Password", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Proteggi foglio di calcolo", @@ -4043,12 +4045,12 @@ "SSE.Views.PrintWithPreview.txtActualSize": "Dimensione reale", "SSE.Views.PrintWithPreview.txtAllSheets": "Tutti i fogli", "SSE.Views.PrintWithPreview.txtApplyToAllSheets": "Applica a tutti i fogli", - "SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting": "Black and white printing", + "SSE.Views.PrintWithPreview.txtBlackAndWhitePrinting": "Stampa in bianco e nero", "SSE.Views.PrintWithPreview.txtBothSides": "Stampa su entrambi i lati", "SSE.Views.PrintWithPreview.txtBothSidesLongDesc": "Capovolgi le pagine sul lato lungo", "SSE.Views.PrintWithPreview.txtBothSidesShortDesc": "Capovolgi le pagine sul lato corto", "SSE.Views.PrintWithPreview.txtBottom": "In basso", - "SSE.Views.PrintWithPreview.txtColorPrinting": "Color printing", + "SSE.Views.PrintWithPreview.txtColorPrinting": "Stampa a colori", "SSE.Views.PrintWithPreview.txtCopies": "Copie", "SSE.Views.PrintWithPreview.txtCurrentSheet": "Foglio attuale", "SSE.Views.PrintWithPreview.txtCustom": "Personalizzato", @@ -4563,11 +4565,11 @@ "SSE.Views.TableDesignTab.tipInsertPivot": "Insert Pivot Table", "SSE.Views.TableDesignTab.tipInsertSlicer": "Insert slicer", "SSE.Views.TableDesignTab.tipRemDuplicates": "Removing duplicate lines from a sheet.", - "SSE.Views.TableDesignTab.tipResize": "Change the size of this table by adding or removing rows and columns.", + "SSE.Views.TableDesignTab.tipResize": "Modifica le dimensioni di questa tabella aggiungendo o rimuovendo righe e colonne.", "SSE.Views.TableDesignTab.tipRowsCols": "Rows & Columns", - "SSE.Views.TableDesignTab.txtAltText": "Alt text", - "SSE.Views.TableDesignTab.txtBandedColumns": "Banded columns", - "SSE.Views.TableDesignTab.txtBandedRows": "Banded rows", + "SSE.Views.TableDesignTab.txtAltText": "Testo alternativo", + "SSE.Views.TableDesignTab.txtBandedColumns": "Colonne a strisce", + "SSE.Views.TableDesignTab.txtBandedRows": "Righe a strisce", "SSE.Views.TableDesignTab.txtConvertToRange": "Convert to range", "SSE.Views.TableDesignTab.txtFilterButton": "Filter button", "SSE.Views.TableDesignTab.txtFirstColumn": "First column", @@ -4761,7 +4763,7 @@ "SSE.Views.Toolbar.textDelUp": "Sposta celle in alto", "SSE.Views.Toolbar.textDiagDownBorder": "Bordo diagonale inferiore", "SSE.Views.Toolbar.textDiagUpBorder": "Bordo diagonale ascendente", - "SSE.Views.Toolbar.textDirContext": "Context", + "SSE.Views.Toolbar.textDirContext": "Contesto", "SSE.Views.Toolbar.textDirLtr": "Left-to-Right", "SSE.Views.Toolbar.textDirRtl": "Right-to-Left", "SSE.Views.Toolbar.textDivision": "Segno di divisione", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linea", "SSE.Views.ViewTab.textMacros": "Macro", "SSE.Views.ViewTab.textManager": "Visualizza la gestione", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Pannello destro", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostra l'ombra dei riquadri bloccati", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Stile della tabella", "SSE.Views.ViewTab.textUnFreeze": "Sblocca riquadri", "SSE.Views.ViewTab.textZeros": "Mostra zeri", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Blocca riquadri", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema dell'interfaccia", "SSE.Views.ViewTab.tipMacros": "Macro", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Visualizzazione foglio", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Visualizza il tuo documento in Visualizzazione normale", "SSE.Views.ViewTab.tipViewPageBreak": "Guarda dove appariranno le interruzioni di pagina quando il documento verrà stampato", "SSE.Views.ViewTab.txtViewNormal": "Normale", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Inserisci una password per rimuovere la protezione del foglio", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Rimuovi la protezione del foglio", "SSE.Views.WBProtection.txtWBUnlockDescription": "Inserisci una password per rimuovere la protezione del libro di lavoro", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Rimuovi la protezione del libro di lavoro", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Rimuovi la protezione del libro di lavoro" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 67596ae5ea..85265c7165 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
続行してもよろしいですか?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "CSV形式は複数シートファイルおよびテキスト以外のすべての要素の保存をサポートしていません。
選択したシートのみをCSVに保存するには、OKを押してください。
スプレッドシート全体とすべての機能を保存するには、キャンセルをクリックして別の形式を選", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV形式は複数シートファイルの保存をサポートしていません。
選択した形式を維持し、現在のシートだけを保存するには、Saveを押します。
現在のスプレッドシートを保存するには、Cancelをクリックして、別の形式で保存してください。", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "このアクションは {0} セル時計を追加します。
このまま続けますか?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "このアクションは、メモリ保存の理由によって {0} セルウォッチのみを追加します。
このまま続けますか?", "SSE.Controllers.Main.confirmMaxChangesSize": "アクションのサイズがサーバーに設定された制限を超えています。
「元に戻す」ボタンを押して最後のアクションをキャンセルするか、「続ける」を押してローカルにアクションを維持してください(何も失われないことを確認するために、ファイルをダウンロードするか、その内容をコピーする必要があります)。", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "ライセンスの有効期限が切れています。
ライセンスを更新してページを再読み込みしてください。", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
ドキュメント編集機能にアクセスできません。
管理者にご連絡ください。", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
ドキュメント編集機能へのアクセスが制限されています。
フルアクセスを取得するには、管理者にご連絡ください", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", "SSE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。", "SSE.Controllers.Main.warnOpenCsv": "CSV形式は複数シートファイルやテキスト以外の要素の保存をサポートしていません。
アクティブなシートのみが保存されます。", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "線", "SSE.Views.ViewTab.textMacros": "マクロ", "SSE.Views.ViewTab.textManager": "表示マネージャー", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "右パネル", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "固定されたウィンドウ枠の影を表示する", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "タブのスタイル", "SSE.Views.ViewTab.textUnFreeze": "ウインドウ枠固定の解除", "SSE.Views.ViewTab.textZeros": "0を表示する", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "ウィンドウ枠の固定", "SSE.Views.ViewTab.tipInterfaceTheme": "インターフェースのテーマ", "SSE.Views.ViewTab.tipMacros": "マクロ", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "シートの表示", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "通常表示で原稿を見る", "SSE.Views.ViewTab.tipViewPageBreak": "原稿を印刷したときに、改ページがどこに表示されるかを確認する", "SSE.Views.ViewTab.txtViewNormal": "標準", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "シートを保護解除するようにパスワードを入力してください", "SSE.Views.WBProtection.txtSheetUnlockTitle": "シートを保護を解除する", "SSE.Views.WBProtection.txtWBUnlockDescription": "ブックを保護解除するようにパスワードを入力してください", - "SSE.Views.WBProtection.txtWBUnlockTitle": "ブックを保護を解除する", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "ブックを保護を解除する" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ko.json b/apps/spreadsheeteditor/main/locale/ko.json index 6a7163cd33..14af0694b0 100644 --- a/apps/spreadsheeteditor/main/locale/ko.json +++ b/apps/spreadsheeteditor/main/locale/ko.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "CSV 형식은 여러 시트 파일과 텍스트 외의 모든 요소를 저장할 수 없습니다.
선택한 시트만 CSV로 저장하려면 확인을 누르세요.
전체 스프레드시트와 모든 기능을 저장하려면 취소를 클릭하고 다른 형식을 선택하세요.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV 형식은 다중 시트 파일을 저장하지 않습니다.
선택한 형식을 유지하고 현재 시트만 저장하려면 저장을 누르세요.
현재 스프레드시트를 저장하려면 취소를 누르고 다른 형식으로 저장하세요.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "이 작업으로 {0}개의 셀 모니터링이 추가됩니다.
계속하시겠습니까?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "이 작업은 메모리 저장 이유로 {0}개의 셀 모니터링만 추가합니다.
계속하시겠습니까?", "SSE.Controllers.Main.confirmMaxChangesSize": "작업의 크기가 서버에 설정된 제한을 초과합니다.
마지막 작업을 취소하려면 '실행 취소'를 누르고 작업을 로컬로 유지하려면 '계속'을 누르세요 (파일을 다운로드하거나 내용을 복사하여 데이터 손실이 없도록 하십시오).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "귀하의 라이선스가 만료되었습니다.
라이선스를 갱신하고 페이지를 새로고침하세요.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "라이선스가 만료되었습니다.
더 이상 파일을 수정할 수 있는 권한이 없습니다.
관리자에게 문의하세요.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "라이선스를 갱신해야합니다.
문서 편집 기능에 대한 액세스가 제한되어 있습니다.
전체 액세스 권한을 얻으려면 관리자에게 문의하십시오", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", "SSE.Controllers.Main.warnNoLicenseUsers": "이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", "SSE.Controllers.Main.warnOpenCsv": "CSV 형식은 다중 시트 파일 또는 텍스트 이외의 요소를 저장할 수 없습니다.
활성 시트만 저장됩니다.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "선", "SSE.Views.ViewTab.textMacros": "매크로", "SSE.Views.ViewTab.textManager": "보기 관리자", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "오른쪽 패널", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "틀 고정 음영 표시", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "탭 스타일", "SSE.Views.ViewTab.textUnFreeze": "창 고정 취소", "SSE.Views.ViewTab.textZeros": "0표시", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "창 고정", "SSE.Views.ViewTab.tipInterfaceTheme": "인터페이스 테마", "SSE.Views.ViewTab.tipMacros": "매크로", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "시트보기", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "문서를 일반 보기로 표시하세요.", "SSE.Views.ViewTab.tipViewPageBreak": "문서가 인쇄될 때 페이지 나누기가 적용되는 곳을 확인하세요.", "SSE.Views.ViewTab.txtViewNormal": "표준", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "양식 보호를 해제하려면 비밀번호를 입력하세요.", "SSE.Views.WBProtection.txtSheetUnlockTitle": "시트 보호해제", "SSE.Views.WBProtection.txtWBUnlockDescription": "통합 문서 보호를 해제하려면 비밀번호를 입력하세요.", - "SSE.Views.WBProtection.txtWBUnlockTitle": "통합 문서 보호 잠금 해제", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "통합 문서 보호 잠금 해제" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index 3c298c3d89..c4198302cf 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "ໃບທະບຽນອະນຸຍາດຂອງທ່ານໝົດອາຍຸແລ້ວ.
ກະລຸນາຕໍ່ໃບອະນຸຍາດຂອງທ່ານ ແລະ ໂຫລດໜ້າຈໍໃໝ່.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "ໃບທະບຽນອະນຸຍາດໝົດອາຍຸ.
ທ່ານບໍ່ສາມາດເຂົ້າເຖິງການແກ້ໄຂເອກະສານ.
ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "ໃບອະນຸຍາດຈຳເປັນຕ້ອງມີການຕໍ່ອາຍຸ
ທ່ານມີຂໍ້ຈຳກັດໃນການເຂົ້າເຖິງການແກ້ໄຂເອກະສານ, ກະລຸນາຕິດຕໍ່ຫາຜູ້ເບິ່ງລະບົບ", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": " ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
ຕິດຕໍ່ ທີມຂາຍ% 1 ສຳ ລັບຂໍ້ ກຳນົດການຍົກລະດັບເງື່ອນໄຂ", "SSE.Controllers.Main.warnNoLicenseUsers": " ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ທີມຂາຍ % 1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບເງື່ອນໄຂ", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "ການຈັດການມຸມມອງ", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "ສະແດງເງົາຂອງແຖບແຂງ", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "ຍົກເລີກໝາຍຕາຕະລາງ", "SSE.Views.ViewTab.textZeros": "ບໍ່ມີເນື້ອຫາ", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "ຕິກໃສ່ບໍລິເວນທີ່ຕ້ອງການໃຫ້ເຫັນແຈ້ງ", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "ມູມມອງແຜ່ນງານ", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "ໃສ່ລະຫັດຜ່ານເພື່ອຍົກເລີກການປ້ອງກັນແຜ່ນ", "SSE.Views.WBProtection.txtSheetUnlockTitle": "ບໍ່ປ້ອງກັນແຜ່ນຊີດ", "SSE.Views.WBProtection.txtWBUnlockDescription": "ປ້ອນລະຫັດຜ່ານເພື່ອບໍ່ປົກປ້ອງປື້ມບັນທືກ", - "SSE.Views.WBProtection.txtWBUnlockTitle": "ບໍ່ປ້ອງ ປື້ມບັນທືກ", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "ບໍ່ປ້ອງ ປື້ມບັນທືກ" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/lv.json b/apps/spreadsheeteditor/main/locale/lv.json index e098d92aa9..6d411332fc 100644 --- a/apps/spreadsheeteditor/main/locale/lv.json +++ b/apps/spreadsheeteditor/main/locale/lv.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.
Vai tiešām vēlaties turpināt?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Šī darbība pievienos {0} šūnu pulksteni (-ņus).
Vai vēlaties turpināt?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Šī darbība pēc atmiņas taupīšanas iemesla pievienos tikai {0} šūnu pulksteni (-ņus).
Vai vēlaties turpināt?", "SSE.Controllers.Main.confirmMaxChangesSize": "Darbību lielums pārsniedz jūsu serverim iestatīto ierobežojumu.
Nospiediet \"Atsaukt\" lai atceltu pēdējo darbību, vai nospiediet \"Turpināt\", lai darbību turpinātu lokāli (jums ir jālejupielādē failu vai jākopē tā saturu, lai pārliecinātos, ka nekas nav zaudēts).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Jūsu licencei ir beidzies termiņš.
Lūdzu, atjauniniet savu licenci un pārlādējiet lapu.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licences derīguma termiņš beidzies.
Jums nav piekļuves dokumentu rediģēšanas funkcionalitātei.
Sazinieties ar savu administratoru.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licence ir jāatjauno.
Jums ir ierobežota piekļuve dokumentu rediģēšanas funkcionalitātei.
Sazinieties ar savu administratoru, lai iegūtu pilnu piekļuvi", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Jūs sasniedzāt vienlaicīgu savienojumu ierobežojumu ar %1 redaktoriem. Šis dokuments tiks atvērts tikai apskatei.
Sazinieties ar %1 pārdošanas komandu, lai uzzinātu personīgos jaunināšanas noteikumus.", "SSE.Controllers.Main.warnNoLicenseUsers": "Jūs sasniedzāt %1 redaktoru lietotāju ierobežojumu. Sazinieties ar %1 pārdošanas komandu, lai uzzinātu personīgos jaunināšanas noteikumus.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Skatīt pārvaldnieku", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Labais panelis", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Rādīt iesaldētu rūšu ēnu", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Atsaldēt rūtis", "SSE.Views.ViewTab.textZeros": "Rādīt nulles", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Sasaldēt rūtis", "SSE.Views.ViewTab.tipInterfaceTheme": "Interfeisa tēma", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Lapas skats", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normāls", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Ievadiet paroli, lai noņemtu lapas aizsardzību", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Noņemt aizsargāto lapu", "SSE.Views.WBProtection.txtWBUnlockDescription": "Ievadiet paroli, lai noņemtu darbgrāmatas aizsardzību", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Noņemt darbgrāmatas aizsardzību", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Noņemt darbgrāmatas aizsardzību" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json index 6f385bc4e7..2e6ba76e62 100644 --- a/apps/spreadsheeteditor/main/locale/ms.json +++ b/apps/spreadsheeteditor/main/locale/ms.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.
Adakah anda pasti mahu teruskan?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Lesen anda telah tamat tempoh.
Sila kemas kini lesen anda dan segarkan halaman.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lesen tamat tempoh.
Anda tidak mempunyai akses terhadap fungsi pengeditan dokumen.
Sila hubungi pentadbir anda.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lesen perlu untuk diperbaharui.
Anda mempunyai akses terhad kepada fungi pengeditan dokumen.
Sila hubungi pentadbir anda untuk mendapatkan akses penuh", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Anda telah mencapai had pengguna untuk sambungan serentak kepada editor %1. Dokumen ini akan dibuka untuk dilihat sahaja.
Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", "SSE.Controllers.Main.warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Lihat pengurus", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Tunjuk Anak Tetingkap Bayang Dibekukan", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Bebaskan Anak Tetingkap", "SSE.Views.ViewTab.textZeros": "Tunjukkan sifar", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Bekukan Anak Tetingkap", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema antara muka", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Lihat Helaian", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Masukkan kata laluan untuk melindungi helaian", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Helaian Nyahlindung", "SSE.Views.WBProtection.txtWBUnlockDescription": "Masukkan kata laluan untuk melindungi buku kerja", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Buku Kerja Nyahlindung", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Buku Kerja Nyahlindung" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index 038a85f845..7c70f75d52 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
Wilt u doorgaan?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
Werk uw licentie bij en vernieuw de pagina.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licentie verlopen.
U heeft geen toegang tot documentbewerkingsfunctionaliteit.
Neem contact op met uw beheerder.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licentie moet worden verlengd.
U heeft beperkte toegang tot documentbewerkingsfunctionaliteit.
Neem contact op met uw beheerder voor volledige toegang", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "U heeft de limiet bereikt voor gelijktijdige verbindingen met %1 editors. Dit document wordt geopend als alleen-lezen.
Neem contact op met het %1 verkoopteam voor persoonlijke upgradevoorwaarden.", "SSE.Controllers.Main.warnNoLicenseUsers": "U heeft de limiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de %1 verkoopafdeling voor persoonlijke upgradevoorwaarden.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Lijn", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Weergave beheren", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Blokkering deelvensters opheffen", "SSE.Views.ViewTab.textZeros": "Nullen weergeven", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Deelvensters blokkeren", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Bladweergave", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Voer een wachtwoord in om de beveiliging voor het blad op te heffen", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Beveiliging van blad opheffen", "SSE.Views.WBProtection.txtWBUnlockDescription": "Voer een wachtwoord in om de beveiliging voor het werkboek op te heffen", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Beveiliging van werkboek opheffen", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Beveiliging van werkboek opheffen" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index bb59438935..0a9d439de0 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
Czy na pewno chcesz kontynuować?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencja wygasła.
Nie masz dostępu do edycji dokumentu.
Proszę skontaktować się ze swoim administratorem.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licencja musi zostać odnowiona.
Masz ograniczony dostęp do edycji dokumentu.
Skontaktuj się ze swoim administratorem, aby uzyskać pełny dostęp.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Osiągnięto limit jednoczesnych połączeń z %1 edytorami. Ten dokument zostanie otwarty tylko do odczytu.
Skontaktuj się z %1 zespołem sprzedaży w celu omówienia indywidualnych warunków licencji.", "SSE.Controllers.Main.warnNoLicenseUsers": "Osiągnąłeś limit dla użytkownika. Skontaktuj się z zespołem sprzedaży %1 w celu uzyskania osobistych warunków aktualizacji.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Menadżer prezentacji", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Pokaż cień dla zadokowanych obszarów", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Odblokuj panele", "SSE.Views.ViewTab.textZeros": "Wyświetl zera", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Zablokuj panele", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Prezentacja arkusza", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Wprowadź hasło, aby odblokować arkusz", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Usuń ochronę arkusza", "SSE.Views.WBProtection.txtWBUnlockDescription": "Wprowadź hasło, aby wyłączyć ochronę skoroszytu", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Usuń ochronę skoroszytu", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Usuń ochronę skoroszytu" } \ 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 21d049ef07..5123ca35cc 100644 --- a/apps/spreadsheeteditor/main/locale/pt-pt.json +++ b/apps/spreadsheeteditor/main/locale/pt-pt.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se guardar o documento neste formato, perderá todos os atributos com exceção do texto.
Quer continuar?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Esta ação adicionará {0} células de observação.
Quer continuar?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Esta ação apenas adiciona {0} células de observação para poupar memória.
Continuar?", "SSE.Controllers.Main.confirmMaxChangesSize": "O tamanho das ações excede o limite definido para o seu servidor.
Clique em \"Desfazer\" para cancelar a sua última ação ou em \"Continuar\" para manter a ação localmente (tem que descarregar o ficheiro ou copiar o seu conteúdo para garantir que nada seja perdido).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "A sua licença caducou.
Deve atualizar a licença e recarregar a página.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licença caducada.
Não pode editar o documento.
Por favor contacte o seu administrador.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Tem que renovar a sua licença.
A edição de documentos está limitada.
Contacte o administrador de sistemas para obter acesso completo.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Atingiu o limite de ligações simultâneas a %1 editores. Este documento será aberto no modo de leitura.
Contacte a equipa comercial %1 para saber mais sobre os termos de licenciamento.", "SSE.Controllers.Main.warnNoLicenseUsers": "Atingiu o limite de %1 editores. Contacte a equipa comercial %1 para obter mais informações.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Gestor de vistas", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Painel direito", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar sombra dos painéis fixados", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Libertar painéis", "SSE.Views.ViewTab.textZeros": "Mostrar zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Fixar painéis", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema da interface", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Vista de folha", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Ver o documento em Vista normal", "SSE.Views.ViewTab.tipViewPageBreak": "Veja onde aparecerão as quebras de página quando o documento for impresso", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Introduza uma palavra-passe para desbloquear a folha", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger folha", "SSE.Views.WBProtection.txtWBUnlockDescription": "Introduza uma palavra-passe para desbloquear o livro", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger Livro", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger Livro" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index 2b513f042a..065d85d4cc 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
Você tem certeza que quer continuar?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "O formato CSV não suporta salvar um arquivo de várias planilhas e todos os elementos, exceto texto.
Para salvar apenas a planilha selecionada em CSV, pressione OK.
Para salvar a planilha inteira e todos os recursos, clique em Cancelar e selecione outro formato.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "O formato CSV não permite salvar um arquivo com várias folhas.
Para manter o formato selecionado e salvar apenas a folha atual, pressione Salvar.
Para salvar a planilha atual, clique em Cancelar e salve-a em um formato diferente.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Esta ação adicionará {0} células de observação.
Quer continuar?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Esta ação adicionará apenas {0} células de observação por motivo de poupança da memória.
Quer continuar?", "SSE.Controllers.Main.confirmMaxChangesSize": "O tamanho das ações excede a limitação definida para seu servidor.
Pressione \"Desfazer\" para cancelar sua última ação ou pressione \"Continue\" para manter a ação localmente (você precisa baixar o arquivo ou copiar seu conteúdo para garantir que nada seja perdido).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
Atualize sua licença e atualize a página.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "A licença expirou.
Você não tem acesso à funcionalidade de edição de documentos.
Por favor, contate seu administrador.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "A licença precisa ser renovada.
Você tem acesso limitado à funcionalidade de edição de documentos.
Entre em contato com o administrador para obter acesso total.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", "SSE.Controllers.Main.warnOpenCsv": "O formato CSV não suporta o salvamento de um arquivo de várias planilhas ou de quaisquer elementos, exceto texto.
Somente a planilha ativa será salva.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linha", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Gerenciamento de visualização", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Painel direito", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Mostrar sombra dos painéis congelados", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Estilo da guia", "SSE.Views.ViewTab.textUnFreeze": "Descongelar painéis", "SSE.Views.ViewTab.textZeros": "Mostrar zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Congelar painéis", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema de interface", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Visualização de folha", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Veja seu documento no modo de exibição Normal", "SSE.Views.ViewTab.tipViewPageBreak": "Veja onde as quebras de página aparecerão quando o documento for impresso", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Digite uma senha para desproteger a folha", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Desproteger a folha", "SSE.Views.WBProtection.txtWBUnlockDescription": "Digite uma senha para desproteger a pasta de trabalho", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger pasta de trabalho", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Desproteger pasta de trabalho" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index da980ad3d9..c1f01ddbd8 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.
Licența urmează să fie reînnoită iar pagina reîmprospătată.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
Nu aveți acces la funcții de editare a documentului.
Contactați administratorul dvs. de rețeea.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
Funcțiile de editare sunt cu acces limitat.
Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "SSE.Controllers.Main.warnModifyFilter": "Sunteți în modul de afișare filtre numai pentru dumneavoastră și aceste filtre nu sunt salvate. Nu puteți adăuga sau șterge filtre.
Pentru a salva foaia în modul de vizualizare curent, folosiți opțiunea Vizualizare de foaie pe fila Afișare.", "SSE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", "SSE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori pentru editoare %1. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", "SSE.Controllers.Main.warnOpenCsv": "Formatul CSV nu acceptă salvarea unui fișier cu mai multe foi de calcul sau a altor elemente în afară de text.
Numai foaia de calcul activă va fi salvată.", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linie", "SSE.Views.ViewTab.textMacros": "Macrocomandă", "SSE.Views.ViewTab.textManager": "Manager vizualizări", + "SSE.Views.ViewTab.textPauseMacro": "Înregistrare în pauză", + "SSE.Views.ViewTab.textRecMacro": "Înregistrare macrocomandă", + "SSE.Views.ViewTab.textResumeMacro": "Reluare înregistrare", "SSE.Views.ViewTab.textRightMenu": "Panou dreapta", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Afișare umbră pentru panouri înghețate", + "SSE.Views.ViewTab.textStopMacro": "Oprire înregistrare", "SSE.Views.ViewTab.textTabStyle": "Stil filă", "SSE.Views.ViewTab.textUnFreeze": "Dezghețare panouri", "SSE.Views.ViewTab.textZeros": "Afișare un zero", @@ -5098,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Înghețare panouri", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema interfeței", "SSE.Views.ViewTab.tipMacros": "Macrocomandă", + "SSE.Views.ViewTab.tipPauseMacro": "Înregistrare în pauză", + "SSE.Views.ViewTab.tipRecMacro": "Înregistrare macrocomandă", + "SSE.Views.ViewTab.tipResumeMacro": "Reluare înregistrare", "SSE.Views.ViewTab.tipSheetView": "Vizualizare de foaie", + "SSE.Views.ViewTab.tipStopMacro": "Oprire înregistrare", "SSE.Views.ViewTab.tipViewNormal": "Vizualizați documentul în vizualizarea Normal", "SSE.Views.ViewTab.tipViewPageBreak": "Vedeți unde vor apărea sfârșiturile de pagină, când documentul este imprimat.", "SSE.Views.ViewTab.txtViewNormal": "Normal", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index c7b9bcae73..8d76a93716 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Истек срок действия лицензии.
Обновите лицензию, а затем обновите страницу.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Истек срок действия лицензии.
Нет доступа к функциональности редактирования документов.
Пожалуйста, обратитесь к администратору.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Необходимо обновить лицензию.
У вас ограниченный доступ к функциональности редактирования документов.
Пожалуйста, обратитесь к администратору, чтобы получить полный доступ", + "SSE.Controllers.Main.warnModifyFilter": "Вы находитесь в режиме, в котором фильтры видны только вам и не сохраняются. Вы не можете добавлять или удалять фильтры.
Чтобы сохранить текущий вид, используйте Представление листа на вкладке Вид.", "SSE.Controllers.Main.warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "SSE.Controllers.Main.warnNoLicenseUsers": "Вы достигли лимита на одновременные подключения к редакторам %1.
Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия лицензирования.", "SSE.Controllers.Main.warnOpenCsv": "Формат CSV не поддерживает сохранение многолистового файла и всех элементов, кроме текста.
Будет сохранен только активный лист.", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Линия", "SSE.Views.ViewTab.textMacros": "Макросы", "SSE.Views.ViewTab.textManager": "Диспетчер представлений", + "SSE.Views.ViewTab.textPauseMacro": "Приостановить запись", + "SSE.Views.ViewTab.textRecMacro": "Записать макрос", + "SSE.Views.ViewTab.textResumeMacro": "Возобновить запись", "SSE.Views.ViewTab.textRightMenu": "Правая панель", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Показывать тень для закрепленных областей", + "SSE.Views.ViewTab.textStopMacro": "Остановить запись", "SSE.Views.ViewTab.textTabStyle": "Стиль вкладки", "SSE.Views.ViewTab.textUnFreeze": "Снять закрепление областей", "SSE.Views.ViewTab.textZeros": "Отображать нули", @@ -5098,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Закрепить области", "SSE.Views.ViewTab.tipInterfaceTheme": "Тема интерфейса", "SSE.Views.ViewTab.tipMacros": "Макросы", + "SSE.Views.ViewTab.tipPauseMacro": "Приостановить запись", + "SSE.Views.ViewTab.tipRecMacro": "Записать макрос", + "SSE.Views.ViewTab.tipResumeMacro": "Возобновить запись", "SSE.Views.ViewTab.tipSheetView": "Представление листа", + "SSE.Views.ViewTab.tipStopMacro": "Остановить запись", "SSE.Views.ViewTab.tipViewNormal": "Просмотр документа в обычном режиме", "SSE.Views.ViewTab.tipViewPageBreak": "Предварительный просмотр разрывов страниц перед печатью документа", "SSE.Views.ViewTab.txtViewNormal": "Обычный", diff --git a/apps/spreadsheeteditor/main/locale/si.json b/apps/spreadsheeteditor/main/locale/si.json index e613ad835a..3881aa8c95 100644 --- a/apps/spreadsheeteditor/main/locale/si.json +++ b/apps/spreadsheeteditor/main/locale/si.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "ඔබ දිගටම මෙම ආකෘතියෙන් සුරැකුවහොත් පෙළ හැර අනෙකුත් සියළුම විශේෂාංග අහිමි වනු ඇත.
ඔබට ඉදිරියට යාමට වුවමනා ද?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "බහු පත්‍ර ගොනුවක් සුරැකීමට CSV ආකෘතිය සහාය නොදක්වයි.
තෝරාගත් ආකෘතිය තබාගෙන වත්මන් පත්‍රය පමණක් සුරැකීමට, සුරකින්න ඔබන්න.
වත්මන් පැතුරුම්පත සුරැකීමට, අවලංගු කරන්න එබීමෙන් පසු එය වෙනත් ආකෘතියකින් සුරකින්න.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "මෙම ක්‍රියාමාර්ගය කෝෂ නැරඹුම් {0} ක් එක් කරයි.
ඔබට ඉදිරියට යාමට අවශ්‍යද? (*)", "SSE.Controllers.Main.confirmAddCellWatchesMax": "මෙම ක්‍රියාමාර්ගය මතකය සුරැකීම හේතුකොට අනුව කෝෂ නැරඹුම් {0} ක් පමණක් එක් කරයි.
ඔබට ඉදිරියට යාමට අවශ්‍යද?", "SSE.Controllers.Main.confirmMaxChangesSize": "ක්‍රියාමාර්ග ප්‍රමාණය ඔබගේ සේවාදායකය සඳහා සකසා තිබෙන සීමාව ඉක්මවයි.
ඔබගේ අන්තිම ක්‍රියාමාර්ගය අවලංගු කිරීමට \"පෙරසේ\" ඔබන්න හෝ ක්‍රියාමාර්ගය ස්ථානීයව තබා ගැනීමට \"ඉදිරියට\" යන්න ඔබන්න (කිසිවක් අහිමි වී නැතැයි තහවුරු කර ගැනීමට ගොනුව බාගන්න හෝ එහි අන්තර්ගතයෙහි පිටපතක් ලබා ගන්න).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "ඔබගේ බලපත්‍රය කල් ඉකුත්ව ඇත.
බලපත්‍රය යාවත්කාල කර පිටුව නැවුම් කරන්න.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "බලපත්‍රය කල් ඉකුත් වී ඇත.
ඔබට ලේඛන සංස්කරණයට ප්‍රවේශයක් නැත.
ඔබගේ පරිපාලක අමතන්න.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "බලපත්‍රය අළුත් කළ යුතුය.
ඔබට ලේඛන සංස්කරණය සඳහා සීමිත ප්‍රවේශයක් තිබේ.
පූර්ණ ප්‍රවේශය ලබා ගැනීමට කරුණාකර ඔබගේ පරිපාලක අමතන්න", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "%1 සංස්කරක සමකාල සම්බන්ධතා සීමාවට ළඟා වී ඇත. මෙම ලේඛනය දැකීමට පමණක් විවෘත වේ.
පුද්ගලික උත්ශ්‍රේණි නියම සඳහා %1 අලෙවි කණ්ඩායම අමතන්න.", "SSE.Controllers.Main.warnNoLicenseUsers": "ඔබ %1 සංස්කරක වල පරිශ්‍රීලක සීමාවට ළඟා වී ඇත. පුද්ගලික උත්ශ්‍රේණි නියම සඳහා %1 අලෙවි කණ්ඩායම අමතන්න.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "රේඛාව", "SSE.Views.ViewTab.textMacros": "සාර්ව", "SSE.Views.ViewTab.textManager": "කළමනාකරණය දකින්න", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "දකුණු මඬල", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "අත්හිටවූ මිටිවල සෙවණැල්ල පෙන්වන්න", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "පටිති ශෛලිය", "SSE.Views.ViewTab.textUnFreeze": "මිටිය මුදා හරින්න", "SSE.Views.ViewTab.textZeros": "බිංදු පෙන්වන්න", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "මිටිය අත්හිටුවන්න", "SSE.Views.ViewTab.tipInterfaceTheme": "අතුරුමුහුණතේ තේමාව", "SSE.Views.ViewTab.tipMacros": "සාර්ව", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "පත්‍රයේ දැක්ම", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "ඔබගේ ලේඛනය සාමාන්‍ය දැක්මෙන් බලන්න", "SSE.Views.ViewTab.tipViewPageBreak": "ඔබේ ලේඛනය මුද්‍රණය කළ විට පිටු කඩන දිස්වන්නේ කොතැනදැයි බලන්න", "SSE.Views.ViewTab.txtViewNormal": "සාමාන්‍ය", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "පත්‍රය අනාරක්‍ෂණයට මුරපදයක් යොදන්න", "SSE.Views.WBProtection.txtSheetUnlockTitle": "කොළය අනාරක්‍ෂණය", "SSE.Views.WBProtection.txtWBUnlockDescription": "වැඩපොත අනාරක්‍ෂණයට මුරපදයක් ඇතුල් කරන්න", - "SSE.Views.WBProtection.txtWBUnlockTitle": "වැඩපොත අනාරක්‍ෂණය", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "වැඩපොත අනාරක්‍ෂණය" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 65dc6e824d..57a55ddd3c 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia vypršala.
K funkcii úprav dokumentu už nemáte prístup.
Kontaktujte svojho administrátora, prosím.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
K funkciám úprav dokumentov máte obmedzený prístup.
Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Dosiahli ste limit súběžných pripojení %1 editora. Dokument bude otvorený len na prezeranie.
Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "SSE.Controllers.Main.warnNoLicenseUsers": "Dosiahli ste limit %1 editora. Pre rozšírenie funkcií kontaktujte %1 obchodné oddelenie.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Správca zobrazení", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Zobraziť tieň ukotvených priečok", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Zrušiť ukotvenie priečky", "SSE.Views.ViewTab.textZeros": "Zobraziť nuly", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Ukotviť priečky", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Zobrazenie zošitu ", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Zadajte heslo pre deaktiváciu zabezpečenia listu", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Zrušte ochranu listu", "SSE.Views.WBProtection.txtWBUnlockDescription": "Vložte heslo pre vstup k zošitu", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušte ochranu zošita", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Zrušte ochranu zošita" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index 120cffc56c..bcd3af2450 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem dormatu bodo vse funkcije razen besedila izgubljene.
Ste prepričani, da želite nadaljevati?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Unfreeze panes", "SSE.Views.ViewTab.textZeros": "Show Zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sq.json b/apps/spreadsheeteditor/main/locale/sq.json index 652be95d96..37f9419975 100644 --- a/apps/spreadsheeteditor/main/locale/sq.json +++ b/apps/spreadsheeteditor/main/locale/sq.json @@ -1982,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Lisensa juaj ka skaduar.
Ju lutem, përditësoni lisensën dhe rifreskoni faqen.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisensa ka skaduar.
Ju nuk keni më akses në funksionalitetin e redaktimit të dokumenteve.Ju lutem, kontaktoni administratorin tuaj.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lisensa duhet të rinovohet.
Ju keni një akses të kufizuar në funksionalitetin e redaktimit të dokumenteve.
Ju lutem, kontaktoni administratorin tuaj për të marrë akses të plotë", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Keni arritur kufirin për lidhje të njëkohshme me redaktuesit %1. Ky dokument do të hapet vetëm për shikim.
Kontakto %1 ekipin e shitjeve për kushtet e përmirësimit personal.", "SSE.Controllers.Main.warnNoLicenseUsers": "Keni arritur kufirin e përdoruesit për redaktuesit %1. Kontakto ekipin e shitjeve %1 për kushtet e përmirësimit personal.", "SSE.Controllers.Main.warnOpenCsv": "Formati CSV nuk mbështet ruajtjen e një skedari me shumë fletë ose të ndonjë elementi përveç tekstit..
Vetëm fleta aktive do të ruhen.", @@ -5087,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linjia", "SSE.Views.ViewTab.textMacros": "Makrot", "SSE.Views.ViewTab.textManager": "Menaxheri i pamjes", + "SSE.Views.ViewTab.textPauseMacro": "Ndërprit regjistrimin", + "SSE.Views.ViewTab.textRecMacro": "Regjistro makronë", + "SSE.Views.ViewTab.textResumeMacro": "Rifillo regjistrimin", "SSE.Views.ViewTab.textRightMenu": "Paneli i djathtë", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Shfaqni hijen e kornizës së ngrirë", + "SSE.Views.ViewTab.textStopMacro": "Ndalo regjistrimin", "SSE.Views.ViewTab.textTabStyle": "Stili i skedës", "SSE.Views.ViewTab.textUnFreeze": "Çngrih panelet", "SSE.Views.ViewTab.textZeros": "Trego zerot", @@ -5098,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Korniza të ngrira ", "SSE.Views.ViewTab.tipInterfaceTheme": "Temë e ndërfaqes", "SSE.Views.ViewTab.tipMacros": "Makrot", + "SSE.Views.ViewTab.tipPauseMacro": "Ndërprit regjistrimin", + "SSE.Views.ViewTab.tipRecMacro": "Regjistro makronë", + "SSE.Views.ViewTab.tipResumeMacro": "Rifillo regjistrimin", "SSE.Views.ViewTab.tipSheetView": "Pamja e fletës", + "SSE.Views.ViewTab.tipStopMacro": "Ndalo regjistrimin", "SSE.Views.ViewTab.tipViewNormal": "Shikoni dokumentin tuaj në pamjen normale", "SSE.Views.ViewTab.tipViewPageBreak": "Shikoni se ku do të shfaqet faqja e thyerjes kur të printohet dokumenti juaj", "SSE.Views.ViewTab.txtViewNormal": "Normal", diff --git a/apps/spreadsheeteditor/main/locale/sr-cyrl.json b/apps/spreadsheeteditor/main/locale/sr-cyrl.json index fef09ce519..dc5aed8339 100644 --- a/apps/spreadsheeteditor/main/locale/sr-cyrl.json +++ b/apps/spreadsheeteditor/main/locale/sr-cyrl.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ако наставите да чувате у овом формату све карактеристике осим текста ће бити изгубљене.
Да ли сте сигурни да желите да наставите?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV формат не подржава чување датотеке са више листова.
Да бисте задржали одабрани формат и сачували само тренутни лист, притисните Сачувај.
Да бисте сачували тренутни радни лист, кликните Откажи и сачувајте га у другом формату.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "Ова радња ће додати {0} посматрача ћелија.
Да ли желите да наставите?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Ова радња ће додати само {0} посматраче ћелија из разлога чувања у меморији.
Желите ли да наставите?", "SSE.Controllers.Main.confirmMaxChangesSize": "Величина акција превазилази ограничења постављена за ваш сервер.
Притисните \"Поништи\" да откажете вашу последњу акцију или притисните\"Настави\" да задржите акцију локално (морате да преузмете фајл или копирате његов садржај да се уверите да ништа није изгубљено).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Ваша лиценца је истекла.
Молимо ажурирајте вашу лиценцу и освежите страницу.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Лиценца истекла.
Немате приступ функционалности уређивања документа.
Молимо контактирајте вашег администратора.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Лиценца треба да буде обновљена.
Имате ограничен приступ функционалности уређивања документа.
Молимо контактирајте вашег администратора да добијете потпуни приступ", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Достигли сте лимит за истовремене конекције за %1 уреднике. Овај документ ће бити отворен само за приказ.
Контактирајте %1 тим за продају за личне услове надоградње.", "SSE.Controllers.Main.warnNoLicenseUsers": "Достигли сте кориснички лимит за %1 уреднике. Контактирајте %1 тим за продају за личне услове надоградње.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Линија", "SSE.Views.ViewTab.textMacros": "Макрои", "SSE.Views.ViewTab.textManager": "Менаџер прегледа", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Десни панел", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Прикажи сенку замрзнутих прозора", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Стил картице", "SSE.Views.ViewTab.textUnFreeze": "Одмрзни оквире", "SSE.Views.ViewTab.textZeros": "Прикажи нуле", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Замрзни оквире", "SSE.Views.ViewTab.tipInterfaceTheme": "Тема интерфејса", "SSE.Views.ViewTab.tipMacros": "Макрои", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Лист приказ", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Види свој документ у Нормалном приказу", "SSE.Views.ViewTab.tipViewPageBreak": "Погледајте где ће се приказати прелом стране када се документ одштампа", "SSE.Views.ViewTab.txtViewNormal": "Нормалан", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Унесите лозинку да незаштитите лист", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Незаштити лист", "SSE.Views.WBProtection.txtWBUnlockDescription": "Унесите лозинку да незаштитите радну књигу", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Незаштити радну књигу", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Незаштити радну књигу" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sr.json b/apps/spreadsheeteditor/main/locale/sr.json index 04cc803e7e..40eaf91466 100644 --- a/apps/spreadsheeteditor/main/locale/sr.json +++ b/apps/spreadsheeteditor/main/locale/sr.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Ako nastavite da čuvate u ovom formatu sve karakteristike osim teksta će biti izgubljene.
Da li ste sigurni da želite da nastavite?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "CSV format ne podržava čuvanje datoteka sa više listova niti sve elemente osim teksta.
Da biste sačuvali samo izabrani list u CSV formatu, kliknite na U redu.
Da biste sačuvali celu tabelu sa svim funkcijama, kliknite na Otkaži i izaberite neki drugi format", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV format ne podržava čuvanje datoteke sa više listova.
Da biste zadržali odabrani format i sačuvali samo trenutni list, pritisnite Sačuvaj.
Da biste sačuvali trenutni radni list, kliknite Otkaži i sačuvajte ga u drugom formatu.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Čuvanje ove datoteke može dovesti do gubitka nekih formula, formatiranja ćelija ili ugrađenih objekata zbog ograničene podrške za format.
Da li ste sigurni da želite da nastavite?", "SSE.Controllers.Main.confirmAddCellWatches": "Ova radnja će dodati {0} posmatrača ćelija.
Da li želite da nastavite?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "Ova radnja će dodati samo {0} posmatrače ćelija iz razloga čuvanja u memoriji.
Želite li da nastavite?", "SSE.Controllers.Main.confirmMaxChangesSize": "Veličina akcija prevazilazi ograničenja postavljena za vaš server.
Pritisnite \"Undo\" da otkažete vašu poslednju akciju ili pritisnite \"Continue\" da zadržite akciju lokalno (morate da preuzmete fajl ili kopirate njegov sadržaj da se uverite da ništa nije izgubljeno).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Vaša licenca je istekla.
Molim vas ažurirajte vašu licencu i osvežite stranicu.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licenca istekla.
Nemate pristup funkcionalnosti uređivanja dokumenta.
Molim vas kontaktirajte vašeg administratora.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licenca treba da bude obnovljena.
Imate ograničen pristup funkcionalnosti uređivanja dokumenta.
Molim vas kontaktirajte vašeg administratora da dobijete potpuni pristup ", + "SSE.Controllers.Main.warnModifyFilter": "Nalazite se u režimu u kojem su filteri vidljivi samo vama i nisu sačuvani. Ne možete dodavati niti uklanjati filtere.
Da biste sačuvali trenutni prikaz, koristite Prikaz lista (Sheet View) na kartici Prikaz (View).", "SSE.Controllers.Main.warnNoLicense": "Dostigli ste limit za istovremene konekcije za %1 urednike. Ovaj dokument će biti otvoren samo za prikaz.
Kontaktirajte %1 tim za prodaju za lične uslove nadogradnje.", "SSE.Controllers.Main.warnNoLicenseUsers": "Dostigli ste korisnički limit za %1 urednike. Kontaktirajte %1 tim za prodaju za lične uslove nadogradnje.", "SSE.Controllers.Main.warnOpenCsv": "CSV format ne podržava čuvanje fajla sa više listova niti bilo kojih elemenata osim teksta.\nBiće sačuvan samo aktivni list.", @@ -4591,7 +4593,7 @@ "SSE.Views.TableOptionsDialog.txtFormat": "Kreiraj tabelu", "SSE.Views.TableOptionsDialog.txtInvalidRange": "GREŠKA! Nevažeći opseg ćelija", "SSE.Views.TableOptionsDialog.txtNote": "Zaglavlja moraju ostati u istom redu, i rezultirajući opseg tabele mora da se preklapa sa originalnim opsegom tabele.", - "SSE.Views.TableOptionsDialog.txtTitle": "Naslov", + "SSE.Views.TableOptionsDialog.txtTitle": "Moja tabela ima zaglavlja", "SSE.Views.TableSettings.deleteColumnText": "Izbriši kolonu", "SSE.Views.TableSettings.deleteRowText": "Izbriši red", "SSE.Views.TableSettings.deleteTableText": "Izbriši tabelu", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Linija", "SSE.Views.ViewTab.textMacros": "Makroi", "SSE.Views.ViewTab.textManager": "Menadžer pregleda", + "SSE.Views.ViewTab.textPauseMacro": "Pauzirajte snimanje", + "SSE.Views.ViewTab.textRecMacro": "Snimite makro", + "SSE.Views.ViewTab.textResumeMacro": "Nastavite snimanje", "SSE.Views.ViewTab.textRightMenu": "Desni Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Prikaži senku zamrznutih prozora", + "SSE.Views.ViewTab.textStopMacro": "Prekinite snimanje", "SSE.Views.ViewTab.textTabStyle": "Stil kartice", "SSE.Views.ViewTab.textUnFreeze": "Odmrzni okvire", "SSE.Views.ViewTab.textZeros": "Prikaži nule", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Zamrzni odeljke", "SSE.Views.ViewTab.tipInterfaceTheme": "Tema interfejsa", "SSE.Views.ViewTab.tipMacros": "Makroi", + "SSE.Views.ViewTab.tipPauseMacro": "Pauzirajte snimanje", + "SSE.Views.ViewTab.tipRecMacro": "Snimite makro", + "SSE.Views.ViewTab.tipResumeMacro": "Nastavite snimanje", "SSE.Views.ViewTab.tipSheetView": "List prikaz", + "SSE.Views.ViewTab.tipStopMacro": "Prekinite snimanje", "SSE.Views.ViewTab.tipViewNormal": "Vidi svoj dokument u Normalnom prikazu", "SSE.Views.ViewTab.tipViewPageBreak": "Pogledajte gde će se prikazati prelom strane kada se dokument odštampa", "SSE.Views.ViewTab.txtViewNormal": "Normalno", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Unesite lozinku da nezaštitite list", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Nezaštiti list", "SSE.Views.WBProtection.txtWBUnlockDescription": "Unesite lozinku da nezaštitite radnu knjigu", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Nezaštiti radnu knjigu", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Nezaštiti radnu knjigu" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index 3b66e961b1..e8ce8d2020 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Om du fortsätter att spara i det här formatet kommer alla funktioner utom texten att gå förlorade.
Är du säker på att du vill fortsätta?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
Förnya din licens och uppdatera sidan.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
Ingen access till redigeringsfunktioner.
Kontakta din administratör.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
Endast begränsad funktionalitet.
Kontakta din administratör för full funktionalitet.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Gränsen är nådd för antalet %1 samtidiga anslutna redigerare. Dokumentet öppnas som skrivskyddat.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", "SSE.Controllers.Main.warnNoLicenseUsers": "Gränsen är nådd för antalet %1 redigerare.
Kontakta %1 försäljningsteamet för personliga uppgraderings villkor.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Vyhanterare", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Höger panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Visa skugga för frysta rutor", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Lås upp paneler", "SSE.Views.ViewTab.textZeros": "Visa nollor", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Lås paneler", "SSE.Views.ViewTab.tipInterfaceTheme": "Gränssnittstema", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Arkvy", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Ange ett lösenord för att låsa upp kalkylarkets skydd", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Lås upp kalkylbladet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Ange ett lösenord för att låsa upp arbetsbokens skydd", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Lås upp arbetsboken", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Lås upp arbetsboken" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 2e9f5cdde2..b4b5c08989 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.
Devam etmek istediğinizden emin misiniz?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Lisansın süresi doldu.
Belge düzenleme işlevine erişiminiz yok.
Lütfen yöneticinizle iletişime geçin.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Lisansın yenilenmesi gerekiyor.
Belge düzenleme işlevine sınırlı erişiminiz var.
Tam erişim için lütfen yöneticinizle iletişime geçin.", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Düzenleyiciler %1 eşzamanlı bağlantı sınırına ulaştı. Bu belge yalnızca görüntüleme için açılacaktır.
Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "SSE.Controllers.Main.warnNoLicenseUsers": "%1 düzenleyici için kullanıcı sınırına ulaştınız. Kişisel yükseltme koşulları için %1 satış ekibiyle iletişime geçin.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "Yöneticiyi görüntüle", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Bölmeleri Çöz", "SSE.Views.ViewTab.textZeros": "Sıfırları göster", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Parçaları Dondur", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Sayfa Görünümü", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Sayfanın korumasını kaldırmak için bir şifre girin", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Korumasız Sayfa", "SSE.Views.WBProtection.txtWBUnlockDescription": "Çalışma kitabının korumasını kaldırmak için bir parola girin", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Korumasız Çalışma Sayfası", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Korumasız Çalışma Sayfası" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index 919419c5d0..83b8f18e1d 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
Ви впевнені, що хочете продовжити?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "Формат CSV не підтримує збереження кількох аркушів у одному файлі.
Щоби зберегти дані у файлі CSV тільки з поточного аркушу, натисніть \"Зберегти\".
Щоби зберегти всю електронну таблицю, натисніть \"Скасувати\" та збережіть в іншому форматі.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "В результаті цієї дії буде додано {0} переглядів комірок.
Продовжити?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "В результаті ціє дії буде додано лише {0} переглядів комірок через обмеження пам'яті.
Продовжити?", "SSE.Controllers.Main.confirmMaxChangesSize": "Кількість дій перевищує обмеження, які було налаштовано на вашому сервері.
Натисніть \"Повернути\", щоб скасувати останню дію або \"Продовжити\", щоб зберегти дію локально. Після цього звантажте файл або копію його вмісту, щоби пересвідчитися, що нічого не втрачено.", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
Будь ласка, оновіть свою ліцензію та оновіть сторінку.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
Немає доступ до функцій редагування документів.
Будь ласка, зверніться до адміністратора.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
У вас обмежений доступ до функцій редагування документів.
Будь ласка, зверніться до свого адміністратора, щоб отримати повний доступ", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Ви досягли ліміту на одночасне підключення до редакторів %1. Цей документ буде відкрито для перегляду.
Напишіть у відділ продажу %1, щоб обговорити індивідуальні умови ліцензування.", "SSE.Controllers.Main.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Макроси", "SSE.Views.ViewTab.textManager": "Диспетчер представлень", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Права панель", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Показувати тінь для закріплених областей", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Зняти закріплення областей", "SSE.Views.ViewTab.textZeros": "Показувати нулі", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Закріпити області", "SSE.Views.ViewTab.tipInterfaceTheme": "Оформлення", "SSE.Views.ViewTab.tipMacros": "Макроси", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Вигляд аркуша", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "Перегляд документу в нормальному поданні", "SSE.Views.ViewTab.tipViewPageBreak": "Перегляд розриву сторінок під час друку документу", "SSE.Views.ViewTab.txtViewNormal": "Звичайний", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Введіть пароль для вимкнення захисту аркуша", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Зняти захист аркуша", "SSE.Views.WBProtection.txtWBUnlockDescription": "Введіть пароль для вимкнення захисту книги", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняти захист книги", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Зняти захист книги" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ur.json b/apps/spreadsheeteditor/main/locale/ur.json index c86570dc54..9773082cf0 100644 --- a/apps/spreadsheeteditor/main/locale/ur.json +++ b/apps/spreadsheeteditor/main/locale/ur.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "اگر آپ اس شکل میں محفوظ کرنا جاری رکھیں گے تو اس کے علاوہ تمام خصوصیات ختم ہوجائیں گی۔ کیا آپ واقعی میں جاری رکھنا چاہتے ہیں؟", "SSE.Controllers.LeftMenu.warnDownloadCsv": "CSV فارمیٹ ایک ملٹی شیٹ فائل اور تمام عناصر کو محفوظ کرنے کی حمایت نہیں کرتا، سوائے متن کے۔ صرف منتخب کردہ شیٹ کو CSV میں محفوظ کرنے کے لیے، ٹھیک ہے دبائیں۔ پوری اسپریڈشیٹ اور تمام خصوصیات کو محفوظ کرنے کے لیے، منسوخ کریں پر کلک کریں اور دوسرا فارمیٹ منتخب کریں۔", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV فارمیٹ ملٹی شیٹ فائل کو محفوظ کرنے کی حمایت نہیں کرتا ہے۔ منتخب کردہ فارمیٹ کو برقرار رکھنے اور صرف موجودہ شیٹ کو محفوظ کرنے کے لیے، دبائیں محفوظ کریں۔ موجودہ اسپریڈشیٹ کو محفوظ کرنے کے لیے، منسوخ کریں پر کلک کریں اور اسے مختلف فارمیٹ میں محفوظ کریں۔", + "SSE.Controllers.LeftMenu.warnDownloadOds": "اس فائل کو محفوظ کرنے کے نتیجے میں محدود فارمیٹ سپورٹ کی وجہ سے کچھ فارمولے، سیل فارمیٹنگ، یا ایمبیڈڈ اشیاء ضائع ہو سکتی ہیں۔ کیا آپ واقعی جاری رکھنا چاہتے ہیں؟", "SSE.Controllers.Main.confirmAddCellWatches": "اس کارروائی سے {0} سیل گھڑیاں شامل ہو جائیں گی۔
کیا آپ جاری رکھنا چاہتے ہیں؟", "SSE.Controllers.Main.confirmAddCellWatchesMax": "اس کارروائی سے میموری بچانے کی وجہ سے صرف {0} سیل گھڑیاں شامل ہوں گی۔
کیا آپ جاری رکھنا چاہتے ہیں؟", "SSE.Controllers.Main.confirmMaxChangesSize": "اعمال کا سائز آپ کے سرور کے لیے مقرر کردہ حد سے زیادہ ہے۔ اپنی آخری کارروائی کو منسوخ کرنے کے لیے \"Undo\" دبائیں یا مقامی طور پر کارروائی جاری رکھنے کے لیے \"جاری رکھیں\" کو دبائیں (آپ کو فائل ڈاؤن لوڈ کرنے یا اس کے مواد کو کاپی کرنے کی ضرورت ہے تاکہ یہ یقینی بنایا جا سکے کہ کچھ بھی ضائع نہیں ہوا ہے)۔", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "آپ کے لائسنس کی میعاد ختم ہوگئی ہے۔ براہ کرم اپنا لائسنس اپ ڈیٹ کریں اور صفحہ ریفریش کریں۔", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "لائسنس کی میعاد ختم ہوگئی۔ آپ کو دستاویز میں ترمیم کرنے کی فعالیت تک رسائی نہیں ہے۔ براہ کرم اپنے منتظم سے رابطہ کریں۔", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "لائسنس کی تجدید کی ضرورت ہے۔ آپ کو دستاویز میں ترمیم کرنے کی فعالیت تک محدود رسائی حاصل ہے۔ براہ کرم مکمل رسائی حاصل کرنے کے لئے اپنے منتظم سے رابطہ کریں", + "SSE.Controllers.Main.warnModifyFilter": "آپ ایک ایسے موڈ میں ہیں جہاں فلٹرز صرف آپ کو نظر آتے ہیں اور محفوظ نہیں ہوتے ہیں۔ آپ فلٹرز کو شامل یا ہٹا نہیں سکتے۔ اپنے موجودہ منظر کو محفوظ کرنے کے لیے، ویو ٹیب پر شیٹ ویو کا استعمال کریں۔", "SSE.Controllers.Main.warnNoLicense": "آپ٪ 1 ایڈیٹرز کے ساتھ بیک وقت رابطوں کی حد کو پہنچ چکے ہیں۔ یہ دستاویز صرف دیکھنے کیلئے کھولی جائے گی۔ ذاتی اپ گریڈ کی شرائط کے لئے٪ 1 سیلز ٹیم سے رابطہ کریں۔", "SSE.Controllers.Main.warnNoLicenseUsers": "آپ٪ 1 ایڈیٹرز کے لئے صارف کی حد کو پہنچ چکے ہیں۔ ذاتی اپ گریڈ کی شرائط کیلئے٪ 1 فروخت ٹیم سے رابطہ کریں۔", "SSE.Controllers.Main.warnOpenCsv": "CSV فارمیٹ کثیر شیٹ فائل یا متن کے علاوہ کسی بھی عناصر کو محفوظ کرنے کی حمایت نہیں کرتا ہے۔ صرف ایکٹو شیٹ کو محفوظ کیا جائے گا۔", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "لائن", "SSE.Views.ViewTab.textMacros": "میکروس", "SSE.Views.ViewTab.textManager": "مینیجر کو دیکھیں", + "SSE.Views.ViewTab.textPauseMacro": "ریکارڈنگ روک دیں۔", + "SSE.Views.ViewTab.textRecMacro": "میکرو ریکارڈ کریں۔", + "SSE.Views.ViewTab.textResumeMacro": "ریکارڈنگ دوبارہ شروع کریں۔", "SSE.Views.ViewTab.textRightMenu": "دائیں پینل", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "منجمد پینز کا سایہ دکھائیں۔", + "SSE.Views.ViewTab.textStopMacro": "ریکارڈنگ بند کرو", "SSE.Views.ViewTab.textTabStyle": "ٹیب اسٹائل", "SSE.Views.ViewTab.textUnFreeze": "پینوں کوانفریز کریں", "SSE.Views.ViewTab.textZeros": "زیرو دکھائیں۔", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": " پین منجمد کریں", "SSE.Views.ViewTab.tipInterfaceTheme": "انٹرفیس تھیم", "SSE.Views.ViewTab.tipMacros": "میکروس", + "SSE.Views.ViewTab.tipPauseMacro": "ریکارڈنگ روک دیں۔", + "SSE.Views.ViewTab.tipRecMacro": "میکرو ریکارڈ کریں۔", + "SSE.Views.ViewTab.tipResumeMacro": "ریکارڈنگ دوبارہ شروع کریں۔", "SSE.Views.ViewTab.tipSheetView": "شیٹ کا نظارہ", + "SSE.Views.ViewTab.tipStopMacro": "ریکارڈنگ بند کرو", "SSE.Views.ViewTab.tipViewNormal": "اپنی دستاویز کو نارمل منظر میں دیکھیں", "SSE.Views.ViewTab.tipViewPageBreak": "دیکھیں کہ جب آپ کی دستاویز پرنٹ کی جائے گی تو صفحہ کے وقفے کہاں ظاہر ہوں گے۔", "SSE.Views.ViewTab.txtViewNormal": "عام", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "شیٹ کو غیر محفوظ کرنے کے لیے پاس ورڈ درج کریں۔", "SSE.Views.WBProtection.txtSheetUnlockTitle": "غیر محفوظ شدہ شیٹ", "SSE.Views.WBProtection.txtWBUnlockDescription": "ورک بک کو غیر محفوظ کرنے کے لیے پاس ورڈ درج کریں۔", - "SSE.Views.WBProtection.txtWBUnlockTitle": "ورک بک کو غیر محفوظ کریں۔", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "ورک بک کو غیر محفوظ کریں۔" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/vi.json b/apps/spreadsheeteditor/main/locale/vi.json index df6ba2df0e..d6f4edbc7a 100644 --- a/apps/spreadsheeteditor/main/locale/vi.json +++ b/apps/spreadsheeteditor/main/locale/vi.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Nếu bạn tiếp tục lưu ở định dạng này tất cả các tính năng trừ văn bản sẽ bị mất.
Bạn có chắc là muốn tiếp tục?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "The CSV format does not support saving a multi-sheet file.
To keep the selected format and save only the current sheet, press Save.
To save the current spreadsheet, click Cancel and save it in a different format.", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "This action will add {0} cell watches.
Do you want to continue?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "This action will add only {0} cell watches by memory save reason.
Do you want to continue?", "SSE.Controllers.Main.confirmMaxChangesSize": "The size of actions exceeds the limitation set for your server.
Press \"Undo\" to cancel your last action or press \"Continue\" to keep action locally (you need to download the file or copy its content to make sure nothing is lost).", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "Giấy phép của bạn đã hết hạn.
Vui lòng cập nhật giấy phép và làm mới trang.", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "Bạn đang sử dụng phiên bản nguồn mở của %1. Phiên bản có giới hạn các kết nối đồng thời với server tài liệu (20 kết nối cùng một lúc).
Nếu bạn cần thêm, hãy cân nhắc mua giấy phép thương mại.", "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "Line", "SSE.Views.ViewTab.textMacros": "Macros", "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "Right Panel", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Show frozen panes shadow", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "Tab style", "SSE.Views.ViewTab.textUnFreeze": "Unfreeze panes", "SSE.Views.ViewTab.textZeros": "Show Zeros", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.ViewTab.tipMacros": "Macros", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "See your document in Normal view", "SSE.Views.ViewTab.tipViewPageBreak": "See where the page breaks will appear when your document is printed", "SSE.Views.ViewTab.txtViewNormal": "Normal", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet", "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect sheet", "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", - "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect workbook" } \ 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 49ac9cc08a..9cb80863aa 100644 --- a/apps/spreadsheeteditor/main/locale/zh-tw.json +++ b/apps/spreadsheeteditor/main/locale/zh-tw.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "如果您繼續以此格式保存,除文字外的所有功能將會丟失。確定要繼續嗎?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "The CSV format does not support saving a multi-sheet file and all elements, except text.
To save only the active sheet to CSV, press OK.
To save the whole spreadsheet and all features, click Cancel and select another format.", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV格式不支持保存多工作表文件。<br>要保留所選格式並僅保存當前工作表,請按“保存”。<br>要保存當前電子表格,請單擊“取消”並以不同的格式保存。", + "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?", "SSE.Controllers.Main.confirmAddCellWatches": "此操作將新增 {0} 個儲存格監視。您是否要繼續?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "出於記憶體節省的原因,此操作僅會新增 {0} 個儲存格監視。您是否要繼續?", "SSE.Controllers.Main.confirmMaxChangesSize": "操作的大小超過了您的服務器設置的限制。
按一下「復原」取消上一個動作,或按「繼續」在本地保留動作(您需要下載文件或複製其內容以確保內容不會遺失)。", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "您的授權證已過期.
請更新您的授權證並重新整理頁面。", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "許可證已過期。您無法訪問文件編輯功能。請聯繫您的管理員。", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "許可證需要更新。您只能有限制的訪問文件編輯功能。請聯繫您的管理員以獲得完全訪問權限。", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "您已達到同時連接 %1 編輯器的限制。此文件將僅以檢視模式開啟。<br>請聯繫 %1 的銷售團隊了解個人升級條款。", "SSE.Controllers.Main.warnNoLicenseUsers": "您已達到 %1 編輯器的使用者限制。請聯繫 %1 的銷售團隊了解個人升級條款。", "SSE.Controllers.Main.warnOpenCsv": "The CSV format does not support saving a multi-sheet file or any elements except text.
Only the active sheet will be saved.", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "折線圖", "SSE.Views.ViewTab.textMacros": "巨集", "SSE.Views.ViewTab.textManager": "檢視管理員", + "SSE.Views.ViewTab.textPauseMacro": "Pause recording", + "SSE.Views.ViewTab.textRecMacro": "Record macro", + "SSE.Views.ViewTab.textResumeMacro": "Resume recording", "SSE.Views.ViewTab.textRightMenu": "右側面板", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "顯示固定窗格陰影", + "SSE.Views.ViewTab.textStopMacro": "Stop recording", "SSE.Views.ViewTab.textTabStyle": "索引標籤樣式", "SSE.Views.ViewTab.textUnFreeze": "取消凍結窗格", "SSE.Views.ViewTab.textZeros": "顯示零值", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "凍結窗格", "SSE.Views.ViewTab.tipInterfaceTheme": "介面主題", "SSE.Views.ViewTab.tipMacros": "巨集", + "SSE.Views.ViewTab.tipPauseMacro": "Pause recording", + "SSE.Views.ViewTab.tipRecMacro": "Record macro", + "SSE.Views.ViewTab.tipResumeMacro": "Resume recording", "SSE.Views.ViewTab.tipSheetView": "工作表檢視", + "SSE.Views.ViewTab.tipStopMacro": "Stop recording", "SSE.Views.ViewTab.tipViewNormal": "在普通視圖中查看文件", "SSE.Views.ViewTab.tipViewPageBreak": "查看列印時文件的分頁位置", "SSE.Views.ViewTab.txtViewNormal": "一般", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "輸入密碼以解除工作表的保護", "SSE.Views.WBProtection.txtSheetUnlockTitle": "解除工作表保護", "SSE.Views.WBProtection.txtWBUnlockDescription": "輸入密碼以解除工作簿的保護", - "SSE.Views.WBProtection.txtWBUnlockTitle": "解除工作簿保護", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "解除工作簿保護" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 2e436c79b0..852dd19004 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -1483,6 +1483,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", "SSE.Controllers.LeftMenu.warnDownloadCsv": "CSV格式不支持保存有多个工作表的文件和除文本之外的所有元素。
若只要将选择的工作表保存为CSV,请点击“确定”。
要保存整个电子表格和所有功能,请单击“取消”并选择其他格式。", "SSE.Controllers.LeftMenu.warnDownloadCsvSheets": "CSV格式不支持保存多页文件
要保留所选格式并仅保存当前工作表,请按save
若要保存当前电子表格,请单击“取消”并以其他格式保存。", + "SSE.Controllers.LeftMenu.warnDownloadOds": "由于格式支持有限,保存此文件可能会导致部分公式、单元格格式或嵌入对象丢失。
您确定要继续吗?", "SSE.Controllers.Main.confirmAddCellWatches": "此操作将添加 {0} 个单元格监视。
您想要继续吗?", "SSE.Controllers.Main.confirmAddCellWatchesMax": "此操作将仅添加 {0} 个单元格监视以节约内存消耗。
您想要继续吗?", "SSE.Controllers.Main.confirmMaxChangesSize": "您执行的操作超过了为服务器设置的大小限制
按“撤消”取消上次操作,或按“继续”在本地机器继续操作(您需要下载文件或复制其内容以确保不会丢失任何内容)。", @@ -1981,6 +1982,7 @@ "SSE.Controllers.Main.warnLicenseExp": "您的许可证已过期。
请更新您的许可证并刷新页面。", "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "许可证已过期。
您现在不能使用文档编辑功能。
请联系您的管理员。", "SSE.Controllers.Main.warnLicenseLimitedRenewed": "许可证需要续订
您只有部分的文档编辑功能的访问权限
请与管理员联系以获得完全访问权限", + "SSE.Controllers.Main.warnModifyFilter": "You’re in a mode where filters are visible only to you and aren’t saved. You can’t add or remove filters.
To save your current view, use Sheet View on the View tab.", "SSE.Controllers.Main.warnNoLicense": "您已达到同时连接到%1编辑器的限制。此文档将仅打开以供查看
有关个人升级条款,请与%1销售团队联系。", "SSE.Controllers.Main.warnNoLicenseUsers": "您已达到%1编辑器的用户限制。有关个人升级条款,请与%1销售团队联系。", "SSE.Controllers.Main.warnOpenCsv": "CSV格式不支持保存有多个工作表的文件,以及除文本之外的任何元素。
只有活动工作表会被保存。", @@ -4591,7 +4593,7 @@ "SSE.Views.TableOptionsDialog.txtFormat": "建立表格", "SSE.Views.TableOptionsDialog.txtInvalidRange": "错误!无效的单元格范围", "SSE.Views.TableOptionsDialog.txtNote": "标题必须保留在同一行中,并且生成的表范围必须与原始表范围重叠。", - "SSE.Views.TableOptionsDialog.txtTitle": "标题", + "SSE.Views.TableOptionsDialog.txtTitle": "我的表格有表头", "SSE.Views.TableSettings.deleteColumnText": "删除列", "SSE.Views.TableSettings.deleteRowText": "删除行", "SSE.Views.TableSettings.deleteTableText": "删除表格", @@ -5086,8 +5088,12 @@ "SSE.Views.ViewTab.textLine": "线", "SSE.Views.ViewTab.textMacros": "宏", "SSE.Views.ViewTab.textManager": "视图管理器", + "SSE.Views.ViewTab.textPauseMacro": "暂停录制", + "SSE.Views.ViewTab.textRecMacro": "录制宏", + "SSE.Views.ViewTab.textResumeMacro": "恢复录制", "SSE.Views.ViewTab.textRightMenu": "右侧面板", "SSE.Views.ViewTab.textShowFrozenPanesShadow": "显示冻结窗格的阴影", + "SSE.Views.ViewTab.textStopMacro": "停止录制", "SSE.Views.ViewTab.textTabStyle": "选项卡样式", "SSE.Views.ViewTab.textUnFreeze": "取消冻结窗格", "SSE.Views.ViewTab.textZeros": "显示零", @@ -5097,7 +5103,11 @@ "SSE.Views.ViewTab.tipFreeze": "冻结窗格", "SSE.Views.ViewTab.tipInterfaceTheme": "界面主题", "SSE.Views.ViewTab.tipMacros": "宏", + "SSE.Views.ViewTab.tipPauseMacro": "暂停录制", + "SSE.Views.ViewTab.tipRecMacro": "录制宏", + "SSE.Views.ViewTab.tipResumeMacro": "恢复录制", "SSE.Views.ViewTab.tipSheetView": "工作表视图", + "SSE.Views.ViewTab.tipStopMacro": "停止录制", "SSE.Views.ViewTab.tipViewNormal": "在普通视图中查看文档", "SSE.Views.ViewTab.tipViewPageBreak": "查看打印文档时分页符的显示位置", "SSE.Views.ViewTab.txtViewNormal": "正常", @@ -5128,6 +5138,5 @@ "SSE.Views.WBProtection.txtSheetUnlockDescription": "输入密码以取消工作表保护", "SSE.Views.WBProtection.txtSheetUnlockTitle": "撤消工作表保护", "SSE.Views.WBProtection.txtWBUnlockDescription": "输入密码以取消工作簿保护", - "SSE.Views.WBProtection.txtWBUnlockTitle": "撤消工作簿保护", - "SSE.Controllers.LeftMenu.warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "SSE.Views.WBProtection.txtWBUnlockTitle": "撤消工作簿保护" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index a4ac2238fd..ff47596c26 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -891,7 +891,7 @@ "txtZhtw": "Κινεζικά (παραδοσιακά)", "warnDownloadAs": "Αν προχωρήσετε με την αποθήκευση σε αυτή τη μορφή, όλα τα χαρακτηριστικά πλην του κειμένου θα χαθούν.
Θέλετε σίγουρα να συνεχίσετε;", "warnDownloadCsv": "Η μορφή CSV δεν υποστηρίζει την αποθήκευση ενός αρχείου με πολλές σελίδες και όλα τα στοιχεία, εκτός από το κείμενο.
Για να αποθηκεύσετε μόνο την επιλεγμένη σελίδα σε μορφή CSV, πατήστε OK.
Για να αποθηκεύσετε ολόκληρο το φύλλο εργασίας και όλα τα χαρακτηριστικά, κάντε κλικ στην Ακύρωση και επιλέξτε μια άλλη μορφή.", - "warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "warnDownloadOds": "Η αποθήκευση αυτού του αρχείου ενδέχεται να προκαλέσει την απώλεια ορισμένων τύπων, μορφοποίησης κελιών ή ενσωματωμένων αντικειμένων λόγω περιορισμένης υποστήριξης μορφής.
Είστε σίγουροι ότι θέλετε να συνεχίσετε;" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index a7bbd80286..1e298852fd 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -627,7 +627,7 @@ "textHyperlink": "Lien hypertexte", "textImage": "Image", "textImageURL": "URL d'image", - "textIn": "Dans", + "textIn": "À l’intérieur", "textInnerBottom": "À l'intérieur en bas", "textInnerTop": "À l'intérieur en haut", "textInsideBorders": "Bordures intérieures", diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 8e47421cbe..7c0ecbbf45 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -891,7 +891,7 @@ "txtZhtw": "Cinese (tradizionale)", "warnDownloadAs": "Se continui a salvare in questo formato, tutte le funzioni tranne il testo saranno perse.
Sei sicuro di voler continuare?", "warnDownloadCsv": "Il formato CSV non supporta il salvataggio di file con più fogli e di tutti gli elementi, ad eccezione del testo.
Per salvare solo il foglio attivo in CSV, premi OK.
Per salvare l'intero foglio di calcolo e tutte le funzionalità, fai clicca su Annulla e seleziona un altro formato.", - "warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "warnDownloadOds": "Il salvataggio di questo file potrebbe causare la perdita di alcune formule, formattazioni delle celle o oggetti incorporati a causa del supporto limitato del formato.
Sei sicuro di voler continuare?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sr.json b/apps/spreadsheeteditor/mobile/locale/sr.json index 506b486e08..743921718d 100644 --- a/apps/spreadsheeteditor/mobile/locale/sr.json +++ b/apps/spreadsheeteditor/mobile/locale/sr.json @@ -891,7 +891,7 @@ "txtZhtw": "Kineski (tradicionalni)", "warnDownloadAs": "Ako nastavite da čuvate u ovom formatu sve karakteristike osim teksta će biti izgubljene.
Da li ste sigurni da želite da nastavite?", "warnDownloadCsv": "CSV format ne podržava čuvanje datoteka sa više listova niti sve elemente osim teksta.
Da biste sačuvali samo izabrani list u CSV formatu, kliknite na U redu.
Da biste sačuvali celu tabelu sa svim funkcijama, kliknite na Otkaži i izaberite neki drugi format", - "warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "warnDownloadOds": "Čuvanje ove datoteke može dovesti do gubitka nekih formula, formatiranja ćelija ili ugrađenih objekata zbog ograničene podrške za format.
Da li ste sigurni da želite da nastavite?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ur.json b/apps/spreadsheeteditor/mobile/locale/ur.json index adf78ce0f8..c9e97e4ecc 100644 --- a/apps/spreadsheeteditor/mobile/locale/ur.json +++ b/apps/spreadsheeteditor/mobile/locale/ur.json @@ -891,7 +891,7 @@ "txtZhtw": "چینی (روایتی)", "warnDownloadAs": "اگر آپ اس شکل میں محفوظ کرنا جاری رکھیں گے تو اس کے علاوہ تمام خصوصیات ختم ہوجائیں گی۔ کیا آپ واقعی میں جاری رکھنا چاہتے ہیں؟", "warnDownloadCsv": "CSV فارمیٹ ایک ملٹی شیٹ فائل اور تمام عناصر کو محفوظ کرنے کی حمایت نہیں کرتا، سوائے متن کے۔ صرف منتخب کردہ شیٹ کو CSV میں محفوظ کرنے کے لیے، ٹھیک ہے دبائیں۔ پوری اسپریڈشیٹ اور تمام خصوصیات کو محفوظ کرنے کے لیے، منسوخ کریں پر کلک کریں اور دوسرا فارمیٹ منتخب کریں۔", - "warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "warnDownloadOds": "اس فائل کو محفوظ کرنے کے نتیجے میں محدود فارمیٹ سپورٹ کی وجہ سے کچھ فارمولے، سیل فارمیٹنگ، یا ایمبیڈڈ اشیاء ضائع ہو سکتی ہیں۔ کیا آپ واقعی جاری رکھنا چاہتے ہیں؟" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index d5a907ee7c..6088fb77cc 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -891,7 +891,7 @@ "txtZhtw": "中文(繁体)", "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", "warnDownloadCsv": "CSV格式不支持保存有多个工作表的文件和除文本之外的所有元素。
若只要将选择的工作表保存为CSV,请点击“确定”。
要保存整个电子表格和所有功能,请单击“取消”并选择其他格式。", - "warnDownloadOds": "Saving this file may result in the loss of some formulas, cell formatting, or embedded objects due to limited format support.
Are you sure you want to continue?" + "warnDownloadOds": "由于格式支持有限,保存此文件可能会导致部分公式、单元格格式或嵌入对象丢失。
您确定要继续吗?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/Settings.jsx index 1c4bfcb32f..dc28c8c03b 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/Settings.jsx @@ -55,8 +55,8 @@ const SettingsController = inject('storeAppOptions', 'storeSpreadsheetInfo')(obs let config = appOptions.config; closeModal(); - if(config && !!config.feedback && !!config.feedback.url) { - window.open(config.feedback.url, "_blank"); + if(!!config?.customization?.feedback?.url) { + window.open(config.customization.feedback.url, "_blank"); } else window.open(__SUPPORT_URL__, "_blank"); }; diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx index 56c9b40a3c..3079919ad6 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SettingsPage.jsx @@ -68,7 +68,10 @@ const SettingsPage = inject('storeAppOptions', 'storeSpreadsheetInfo')(observer( if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; - _canFeedback = appOptions.customization.feedback !== false; + _canFeedback = ( + appOptions.customization.feedback !== false && + appOptions.customization.feedback.visible !== false + ); _canDisplayInfo = appOptions.customization.mobile?.info !== false; } } diff --git a/apps/visioeditor/main/app/controller/Main.js b/apps/visioeditor/main/app/controller/Main.js index 237c024314..5a46a2ffc6 100644 --- a/apps/visioeditor/main/app/controller/Main.js +++ b/apps/visioeditor/main/app/controller/Main.js @@ -486,7 +486,7 @@ define([ this.api.asc_coAuthoringDisconnect(); Common.NotificationCenter.trigger('collaboration:sharingdeny'); Common.NotificationCenter.trigger('api:disconnect'); - !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : data.message, + !old_rights && Common.UI.TooltipManager.showTip({ step: 'changeRights', text: _.isEmpty(data.message) ? this.warnProcessRightsChange : Common.Utils.String.htmlEncode(data.message), target: '#toolbar', maxwidth: 600, showButton: false, automove: true, noHighlight: true, noArrow: true, multiple: true, callback: function() { me._state.lostEditingRights = false; diff --git a/apps/visioeditor/mobile/src/controller/settings/Settings.jsx b/apps/visioeditor/mobile/src/controller/settings/Settings.jsx index f099f6f8ea..a59e437c6d 100644 --- a/apps/visioeditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/visioeditor/mobile/src/controller/settings/Settings.jsx @@ -54,8 +54,8 @@ const SettingsController = props => { let config = props.storeAppOptions.config; closeModal(); - if(config && !!config.feedback && !!config.feedback.url) { - window.open(config.feedback.url, "_blank"); + if(!!config?.customization?.feedback?.url) { + window.open(config.customization.feedback.url, "_blank"); } else window.open(__SUPPORT_URL__, "_blank"); }; diff --git a/apps/visioeditor/mobile/src/view/settings/SettingsPage.jsx b/apps/visioeditor/mobile/src/view/settings/SettingsPage.jsx index 0d02c91db4..17b5c101db 100644 --- a/apps/visioeditor/mobile/src/view/settings/SettingsPage.jsx +++ b/apps/visioeditor/mobile/src/view/settings/SettingsPage.jsx @@ -58,7 +58,10 @@ const SettingsPage = inject('storeAppOptions', 'storeVisioInfo')(observer(props if (appOptions.customization) { _canHelp = appOptions.customization.help !== false; - _canFeedback = appOptions.customization.feedback !== false; + _canFeedback = ( + appOptions.customization.feedback !== false && + appOptions.customization.feedback.visible !== false + ); _canDisplayInfo = appOptions.customization.mobile?.info !== false; } } diff --git a/vendor/monaco/MonacoEditorCode.js b/vendor/monaco/MonacoEditorCode.js index 5eba5a1f23..b0d8a7ac18 100644 --- a/vendor/monaco/MonacoEditorCode.js +++ b/vendor/monaco/MonacoEditorCode.js @@ -150,4 +150,19 @@ var _postMessage = function(msg) { } else { window.addEventListener('message', fn, false); } + + var _onResize = function() { + var styleTag = document.getElementById('dynamic-styles'); + if (!styleTag) { + styleTag = document.createElement('style'); + styleTag.id = 'dynamic-styles'; + document.head.appendChild(styleTag); + } + //Calculate tooltip height(20px - height text row) + var maxHeight = Math.min((window.innerHeight - 20) / 2, 250); + styleTag.textContent = `.monaco-hover { max-height: ${maxHeight}px !important; }`; + }; + + _onResize(); + window.addEventListener('resize', _onResize); })(window, undefined); \ No newline at end of file