From 0c543de506139603a4aa2e9c02dd1db44e1acd7e Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 9 Jun 2022 23:39:37 +0300 Subject: [PATCH 001/112] [DE PE SSE] Add data-hint-desktop attr --- apps/common/main/lib/component/Mixtbar.js | 2 +- .../common/main/lib/controller/HintManager.js | 42 ++++++++++++++----- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index 9b452c354..bedd1c898 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -107,7 +107,7 @@ define([ '<% } %>' + '<% } %>' + '' + - '' + + '' + ''; this.$layout = $(options.template({ diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 548d6e048..adcb807a8 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -44,6 +44,8 @@ * * * + * data-hint-desktop // true/false + * * Example usage with components: * * new Common.UI.Button({ @@ -231,15 +233,19 @@ Common.UI.HintManager = new(function() { _currentControls = []; _usedTitles = []; var arr = [], - arrItemsWithTitle = []; + arrItemsWithTitle = [], + arrItemsDesktop = []; + if (_.isArray(_currentSection)) { _currentSection.forEach(function (section) { arr = arr.concat($(section).find('[data-hint=' + (_currentLevel) + ']').toArray()); arrItemsWithTitle = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray()); + arrItemsDesktop = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray()); }); } else { arr = $(_currentSection).find('[data-hint=' + (_currentLevel) + ']').toArray(); arrItemsWithTitle = $(_currentSection).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray(); + arrItemsDesktop = $(_currentSection).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray(); } var visibleItems = arr.filter(function (item) { return $(item).is(':visible'); @@ -268,21 +274,34 @@ Common.UI.HintManager = new(function() { }); return; } - var _arrLetters = []; + var getLetterInUILanguage = function (letter) { + var l = letter; + if (_arrAlphabet.indexOf(l) === -1) { + var ind = _arrEnAlphabet.indexOf(l); + l = _arrAlphabet[ind]; + } + return l; + }; + var _arrLetters = [], + _usedLetters = []; + if (arrItemsDesktop.length > 0) { + arrItemsDesktop.forEach(function (item) { + var t = $(item).data('hint-title').toLowerCase(); + t = getLetterInUILanguage(t); + _usedTitles.push(t); + _usedLetters.push(_arrAlphabet.indexOf(t)); + }); + } if (visibleItems.length > _arrAlphabet.length) { visibleItemsWithTitle.forEach(function (item) { var t = $(item).data('hint-title').toLowerCase(); - if (_arrAlphabet.indexOf(t) === -1) { - var ind = _arrEnAlphabet.indexOf(t); - t = _arrAlphabet[ind]; - } + t = getLetterInUILanguage(t); _usedTitles.push(t); }); - _arrLetters = _getLetters(visibleItems.length); + _arrLetters = _getLetters(visibleItems.length + arrItemsDesktop.length); } else { _arrLetters = _arrAlphabet.slice(); } - var usedLetters = []; if (arrItemsWithTitle.length > 0) { visibleItems.forEach(function (item) { var el = $(item); @@ -290,9 +309,9 @@ Common.UI.HintManager = new(function() { if (title) { var ind = _arrEnAlphabet.indexOf(title.toLowerCase()); if (ind === -1) { // we have already changed - usedLetters.push(_arrAlphabet.indexOf(title.toLowerCase())); + _usedLetters.push(_arrAlphabet.indexOf(title.toLowerCase())); } else { - usedLetters.push(ind); + _usedLetters.push(ind); if (_lang !== 'en') { el.attr('data-hint-title', _arrLetters[ind].toUpperCase()); } @@ -300,10 +319,11 @@ Common.UI.HintManager = new(function() { } }); } + Common.NotificationCenter.trigger('hints:used-titles', _currentLevel, arrItemsDesktop.concat(visibleItemsWithTitle), _usedLetters, _arrLetters); var index = 0; visibleItems.forEach(function (item) { var el = $(item); - while (usedLetters.indexOf(index) !== -1) { + while (_usedLetters.indexOf(index) !== -1) { index++; } var title = el.attr('data-hint-title'); From fe0ab8706bf5b369181c0b4dd934f48b9efa7370 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Mon, 20 Jun 2022 18:40:26 +0300 Subject: [PATCH 002/112] [DE PE SSE] Add getStaticHint method instead of data-hint-desktop attr --- apps/common/main/lib/component/Mixtbar.js | 2 +- .../common/main/lib/controller/HintManager.js | 61 +++++++++++-------- 2 files changed, 37 insertions(+), 26 deletions(-) diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index bedd1c898..9b452c354 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -107,7 +107,7 @@ define([ '<% } %>' + '<% } %>' + '' + - '' + + '' + ''; this.$layout = $(options.template({ diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index adcb807a8..fffee7e21 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -44,7 +44,6 @@ * * * - * data-hint-desktop // true/false * * Example usage with components: * @@ -120,7 +119,10 @@ Common.UI.HintManager = new(function() { _isDocReady = false, _isEditDiagram = false, _usedTitles = [], - _appPrefix; + _appPrefix, + _staticHints = { // for desktop buttons + "btnhome": 'K' + }; var _api; @@ -225,6 +227,15 @@ Common.UI.HintManager = new(function() { return arr; }; + var _getLetterInUILanguage = function (letter) { + var l = letter; + if (_arrAlphabet.indexOf(l) === -1) { + var ind = _arrEnAlphabet.indexOf(l); + l = _arrAlphabet[ind]; + } + return l; + }; + var _isItemDisabled = function (item) { return (item.hasClass('disabled') || item.parent().hasClass('disabled') || item.attr('disabled')); }; @@ -233,19 +244,15 @@ Common.UI.HintManager = new(function() { _currentControls = []; _usedTitles = []; var arr = [], - arrItemsWithTitle = [], - arrItemsDesktop = []; - + arrItemsWithTitle = []; if (_.isArray(_currentSection)) { _currentSection.forEach(function (section) { arr = arr.concat($(section).find('[data-hint=' + (_currentLevel) + ']').toArray()); arrItemsWithTitle = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray()); - arrItemsDesktop = arrItemsWithTitle.concat($(section).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray()); }); } else { arr = $(_currentSection).find('[data-hint=' + (_currentLevel) + ']').toArray(); arrItemsWithTitle = $(_currentSection).find('[data-hint-title][data-hint=' + (_currentLevel) + ']').toArray(); - arrItemsDesktop = $(_currentSection).find('[data-hint-title][data-hint-desktop="true"][data-hint=' + (_currentLevel) + ']').toArray(); } var visibleItems = arr.filter(function (item) { return $(item).is(':visible'); @@ -274,31 +281,22 @@ Common.UI.HintManager = new(function() { }); return; } - var getLetterInUILanguage = function (letter) { - var l = letter; - if (_arrAlphabet.indexOf(l) === -1) { - var ind = _arrEnAlphabet.indexOf(l); - l = _arrAlphabet[ind]; - } - return l; - }; var _arrLetters = [], _usedLetters = []; - if (arrItemsDesktop.length > 0) { - arrItemsDesktop.forEach(function (item) { - var t = $(item).data('hint-title').toLowerCase(); - t = getLetterInUILanguage(t); + if (_currentLevel === 0) { + for (var key in _staticHints) { + var t = _staticHints[key].toLowerCase(); _usedTitles.push(t); _usedLetters.push(_arrAlphabet.indexOf(t)); - }); + } } if (visibleItems.length > _arrAlphabet.length) { visibleItemsWithTitle.forEach(function (item) { var t = $(item).data('hint-title').toLowerCase(); - t = getLetterInUILanguage(t); + t = _getLetterInUILanguage(t); _usedTitles.push(t); }); - _arrLetters = _getLetters(visibleItems.length + arrItemsDesktop.length); + _arrLetters = _getLetters(visibleItems.length + (_currentLevel === 0 ? _.size(_staticHints) : 0)); } else { _arrLetters = _arrAlphabet.slice(); } @@ -319,7 +317,6 @@ Common.UI.HintManager = new(function() { } }); } - Common.NotificationCenter.trigger('hints:used-titles', _currentLevel, arrItemsDesktop.concat(visibleItemsWithTitle), _usedLetters, _arrLetters); var index = 0; visibleItems.forEach(function (item) { var el = $(item); @@ -638,7 +635,16 @@ Common.UI.HintManager = new(function() { _arrAlphabet = langsJson[lang]; return _arrAlphabet; }; - return !_setAlphabet(lng) ? (!_setAlphabet(lng.split(/[\-_]/)[0]) ? _setAlphabet('en') : true) : true; + var loaded = !_setAlphabet(lng) ? (!_setAlphabet(lng.split(/[\-_]/)[0]) ? _setAlphabet('en') : true) : true; + if (loaded && _lang !== 'en') { + for (var key in _staticHints) { + var hint = _getLetterInUILanguage(_staticHints[key].toLowerCase()); + if (hint) { + _staticHints[key] = hint.toUpperCase(); + } + } + } + return loaded; }); Common.Utils.loadConfig('../../common/main/resources/alphabetletters/qwertyletters.json', function (langsJson) { _arrQwerty = langsJson[_lang]; @@ -679,11 +685,16 @@ Common.UI.HintManager = new(function() { _isEditDiagram = mode.isEditDiagram || mode.isEditMailMerge || mode.isEditOle; }; + var _getStaticHint = function (key) { + return _staticHints[key]; + }; + return { init: _init, setMode: _setMode, clearHints: _clearHints, needCloseFileMenu: _needCloseFileMenu, - isHintVisible: _isHintVisible + isHintVisible: _isHintVisible, + getStaticHint: _getStaticHint } })(); \ No newline at end of file From b45ad86ace461b0be258188ba7fad66f6bddb3e0 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Tue, 9 Aug 2022 18:19:31 +0300 Subject: [PATCH 003/112] [DE PE SSE] Fix bug 58291 --- apps/documenteditor/main/app/controller/Search.js | 4 +--- apps/presentationeditor/main/app/controller/Search.js | 4 +--- apps/spreadsheeteditor/main/app/controller/Search.js | 1 + 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/apps/documenteditor/main/app/controller/Search.js b/apps/documenteditor/main/app/controller/Search.js index 31d3f63e0..579106502 100644 --- a/apps/documenteditor/main/app/controller/Search.js +++ b/apps/documenteditor/main/app/controller/Search.js @@ -407,9 +407,7 @@ define([ this.view.$resultsContainer.show(); this.resultItems.forEach(function (item) { me.view.$resultsContainer.append(item.el); - if (item.selected) { - $(item.el).addClass('selected'); - } + $(item.el)[item.selected ? 'addClass' : 'removeClass']('selected'); $(item.el).on('click', function (el) { me.api.asc_SelectSearchElement(item.id); $('#search-results').find('.item').removeClass('selected'); diff --git a/apps/presentationeditor/main/app/controller/Search.js b/apps/presentationeditor/main/app/controller/Search.js index 0dbf56eea..7c242c2ab 100644 --- a/apps/presentationeditor/main/app/controller/Search.js +++ b/apps/presentationeditor/main/app/controller/Search.js @@ -366,9 +366,7 @@ define([ this.view.$resultsContainer.show(); this.resultItems.forEach(function (item) { me.view.$resultsContainer.append(item.el); - if (item.selected) { - $(item.el).addClass('selected'); - } + $(item.el)[item.selected ? 'addClass' : 'removeClass']('selected'); $(item.el).on('click', function (el) { me.api.asc_SelectSearchElement(item.id); $('#search-results').find('.item').removeClass('selected'); diff --git a/apps/spreadsheeteditor/main/app/controller/Search.js b/apps/spreadsheeteditor/main/app/controller/Search.js index 1eb8e841e..cd4854748 100644 --- a/apps/spreadsheeteditor/main/app/controller/Search.js +++ b/apps/spreadsheeteditor/main/app/controller/Search.js @@ -522,6 +522,7 @@ define([ this.view.$resultsContainer.show(); this.resultItems.forEach(function (item) { var $item = $(item.el).appendTo($tableBody); + item.$el = $item; if (item.selected) { $item.addClass('selected'); } From e61d9657c0e1d425f4f0656eee74b259219bf642 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Wed, 10 Aug 2022 17:59:30 +0300 Subject: [PATCH 004/112] [DE mobile] Add reader mode and change toolbar --- .../mobile/src/controller/Main.jsx | 3 ++- .../mobile/src/controller/Toolbar.jsx | 17 +++++++++++++++++ .../mobile/src/less/icons-ios.less | 7 +++++++ .../mobile/src/less/icons-material.less | 9 +++++++-- apps/documenteditor/mobile/src/page/main.jsx | 7 ++++++- .../mobile/src/store/appOptions.js | 10 +++++++++- .../documenteditor/mobile/src/view/Toolbar.jsx | 18 +++++++++++------- 7 files changed, 59 insertions(+), 12 deletions(-) diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index 2c08c6224..74fd40e3e 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -124,7 +124,7 @@ class MainController extends Component { docInfo = new Asc.asc_CDocInfo(); docInfo.put_Id(data.doc.key); docInfo.put_Url(data.doc.url); - docInfo.put_DirectUrl(data.doc.directUrl); + // docInfo.put_DirectUrl(data.doc.directUrl); docInfo.put_Title(data.doc.title); docInfo.put_Format(data.doc.fileType); docInfo.put_VKey(data.doc.vkey); @@ -214,6 +214,7 @@ class MainController extends Component { this.applyMode(storeAppOptions); + this.api.asc_addRestriction(Asc.c_oAscRestrictionType.View); this.api.asc_LoadDocument(); this.api.Resize(); }; diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 136f040ca..4cd2fb327 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -3,11 +3,13 @@ import { inject, observer } from 'mobx-react'; import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; +import {storeAppOptions} from "../store/appOptions"; const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'storeFocusObjects', 'storeToolbarSettings','storeDocumentInfo')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); const appOptions = props.storeAppOptions; + const isViewer = appOptions.isViewer; const isDisconnected = props.users.isDisconnected; const displayMode = props.storeReview.displayMode; const stateDisplayMode = displayMode == "final" || displayMode == "original" ? true : false; @@ -124,6 +126,18 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'sto Common.Gateway.requestEditRights(); }; + const turnOffViewerMode = () => { + const api = Common.EditorApi.get(); + appOptions.changeViewerMode(); + api.asc_addRestriction(Asc.c_oAscRestrictionType.None); + } + + const turnOnViewerMode = () => { + const api = Common.EditorApi.get(); + appOptions.changeViewerMode(); + api.asc_addRestriction(Asc.c_oAscRestrictionType.View); + } + return ( ) })); diff --git a/apps/documenteditor/mobile/src/less/icons-ios.less b/apps/documenteditor/mobile/src/less/icons-ios.less index aac468c50..cbac03fd8 100644 --- a/apps/documenteditor/mobile/src/less/icons-ios.less +++ b/apps/documenteditor/mobile/src/less/icons-ios.less @@ -445,6 +445,13 @@ .encoded-svg-mask(''); } + // Icon edit mode + &.icon-edit-mode { + width: 24px; + height: 24px; + .encoded-svg-mask(''); + } + // Comments &.icon-menu-comment { width: 30px; diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index 88b85795d..dda869d85 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -63,10 +63,15 @@ .encoded-svg-mask('', @toolbar-tab-normal); } &.icon-search { - width: 22px; - height: 22px; + width: 24px; + height: 24px; .encoded-svg-mask(''); } + &.icon-edit-mode { + width: 24px; + height: 24px; + .encoded-svg-mask('', @toolbar-icons); + } } } i.icon { diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index f8867cd70..bbfe24ac2 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -92,6 +92,8 @@ class MainPage extends Component { render() { const appOptions = this.props.storeAppOptions; + // const isViewer = appOptions.isViewer; + // console.log(isViewer); const config = appOptions.config; let showLogo = !(appOptions.canBrandingExt && (config.customization && (config.customization.loaderName || config.customization.loaderLogo))); @@ -112,10 +114,13 @@ class MainPage extends Component { window.open(`${__PUBLISHER_URL__}`, "_blank"); }}>} - + + + {/* Page content */} diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index 2c6e25271..b31c533bd 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -23,11 +23,19 @@ export class storeAppOptions { canBranding: observable, isDocReady: observable, - changeDocReady: action + changeDocReady: action, + + isViewer: observable, + changeViewerMode: action }); } isEdit = false; + isViewer = true; + + changeViewerMode() { + this.isViewer = !this.isViewer; + } canViewComments = false; changeCanViewComments(value) { diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx index 513b5418c..7d32c0107 100644 --- a/apps/documenteditor/mobile/src/view/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx @@ -6,34 +6,38 @@ import EditorUIController from '../lib/patch' const ToolbarView = props => { const isDisconnected = props.isDisconnected; const disableEditBtn = props.isObjectLocked || props.stateDisplayMode || props.disabledEditControls || isDisconnected; + const isViewer = props.isViewer; + return ( - {props.isShowBack && } - {Device.ios && props.isEdit && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ + {!isViewer && props.turnOnViewerMode()}>} + {(props.isShowBack && isViewer) && } + {(Device.ios && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ disabledUndo: !props.isCanUndo || isDisconnected, disabledRedo: !props.isCanRedo || isDisconnected, onUndoClick: props.onUndo, onRedoClick: props.onRedo })} - {!Device.phone && {props.docTitle}} + {(!Device.phone || isViewer) && {props.docTitle}} - {Device.android && props.isEdit && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ + {(Device.android && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ disabledUndo: !props.isCanUndo, disabledRedo: !props.isCanRedo, onUndoClick: props.onUndo, onRedoClick: props.onRedo })} - {props.showEditDocument && + {(props.showEditDocument && !isViewer) && } - {props.isEdit && EditorUIController.getToolbarOptions && EditorUIController.getToolbarOptions({ + {props.isEdit && !isViewer && EditorUIController.getToolbarOptions && EditorUIController.getToolbarOptions({ disabled: disableEditBtn || props.disabledControls, onEditClick: e => props.openOptions('edit'), onAddClick: e => props.openOptions('add') })} - { Device.phone ? null : } + {isViewer && props.turnOffViewerMode()}>} + {Device.phone ? null : } {props.displayCollaboration && window.matchMedia("(min-width: 360px)").matches ? props.openOptions('coauth')}> : null} props.openOptions('settings')}> From dc284b212d45dcdc74b9243816ba0910b29df201 Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Wed, 10 Aug 2022 20:19:26 +0300 Subject: [PATCH 005/112] [DE PE SSE] Fix bug 58434 --- apps/documenteditor/main/app/view/ViewTab.js | 16 +++++++++++++++- apps/documenteditor/main/locale/en.json | 5 +++++ apps/presentationeditor/main/app/view/ViewTab.js | 13 ++++++++++++- apps/presentationeditor/main/locale/en.json | 5 ++++- apps/spreadsheeteditor/main/app/view/ViewTab.js | 5 ++++- apps/spreadsheeteditor/main/locale/en.json | 1 + 6 files changed, 41 insertions(+), 4 deletions(-) diff --git a/apps/documenteditor/main/app/view/ViewTab.js b/apps/documenteditor/main/app/view/ViewTab.js index 407388c79..fb300ead9 100644 --- a/apps/documenteditor/main/app/view/ViewTab.js +++ b/apps/documenteditor/main/app/view/ViewTab.js @@ -248,6 +248,7 @@ define([ this.lockedControls.push(this.chRulers); Common.Utils.lockControls(_set.disableOnStart, true, {array: this.lockedControls}); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, render: function (el) { @@ -273,6 +274,14 @@ define([ return this.$el; }, + onAppReady: function () { + this.btnNavigation.updateHint(this.tipHeadings); + this.btnFitToPage.updateHint(this.tipFitToPage); + this.btnFitToWidth.updateHint(this.tipFitToWidth); + this.btnInterfaceTheme.updateHint(this.tipInterfaceTheme); + this.btnDarkDocument.updateHint(this.tipDarkDocument); + }, + show: function () { Common.UI.BaseView.prototype.show.call(this); this.fireEvent('show', this); @@ -313,7 +322,12 @@ define([ textStatusBar: 'Status Bar', textAlwaysShowToolbar: 'Always show toolbar', textRulers: 'Rulers', - textDarkDocument: 'Dark document' + textDarkDocument: 'Dark document', + tipHeadings: 'Headings', + tipFitToPage: 'Fit to page', + tipFitToWidth: 'Fit to width', + tipInterfaceTheme: 'Interface theme', + tipDarkDocument: 'Dark document' } }()), DE.Views.ViewTab || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/locale/en.json b/apps/documenteditor/main/locale/en.json index ed3c3f820..c977040e3 100644 --- a/apps/documenteditor/main/locale/en.json +++ b/apps/documenteditor/main/locale/en.json @@ -2918,6 +2918,11 @@ "DE.Views.ViewTab.textRulers": "Rulers", "DE.Views.ViewTab.textStatusBar": "Status Bar", "DE.Views.ViewTab.textZoom": "Zoom", + "DE.Views.ViewTab.tipHeadings": "Headings", + "DE.Views.ViewTab.tipFitToPage": "Fit to page", + "DE.Views.ViewTab.tipFitToWidth": "Fit to width", + "DE.Views.ViewTab.tipInterfaceTheme": "Interface theme", + "DE.Views.ViewTab.tipDarkDocument": "Dark document", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Bold", "DE.Views.WatermarkSettingsDialog.textColor": "Text color", diff --git a/apps/presentationeditor/main/app/view/ViewTab.js b/apps/presentationeditor/main/app/view/ViewTab.js index 45ea8deae..5fad142cf 100644 --- a/apps/presentationeditor/main/app/view/ViewTab.js +++ b/apps/presentationeditor/main/app/view/ViewTab.js @@ -225,6 +225,8 @@ define([ dataHintOffset: 'small' }); this.lockedControls.push(this.chNotes); + + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); }, render: function (el) { @@ -249,6 +251,12 @@ define([ return this.$el; }, + onAppReady: function () { + this.btnFitToSlide.updateHint(this.tipFitToSlide); + this.btnFitToWidth.updateHint(this.tipFitToWidth); + this.btnInterfaceTheme.updateHint(this.tipInterfaceTheme); + }, + show: function () { Common.UI.BaseView.prototype.show.call(this); this.fireEvent('show', this); @@ -283,7 +291,10 @@ define([ textStatusBar: 'Status Bar', textAlwaysShowToolbar: 'Always show toolbar', textRulers: 'Rulers', - textNotes: 'Notes' + textNotes: 'Notes', + tipFitToSlide: 'Fit to slide', + tipFitToWidth: 'Fit to width', + tipInterfaceTheme: 'Interface theme' } }()), PE.Views.ViewTab || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index a2534b18b..bdf17a15a 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -2368,5 +2368,8 @@ "PE.Views.ViewTab.textNotes": "Notes", "PE.Views.ViewTab.textRulers": "Rulers", "PE.Views.ViewTab.textStatusBar": "Status Bar", - "PE.Views.ViewTab.textZoom": "Zoom" + "PE.Views.ViewTab.textZoom": "Zoom", + "PE.Views.ViewTab.tipFitToSlide": "Fit to slide", + "PE.Views.ViewTab.tipFitToWidth": "Fit to width", + "PE.Views.ViewTab.tipInterfaceTheme": "Interface theme" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/ViewTab.js b/apps/spreadsheeteditor/main/app/view/ViewTab.js index f0ea6aa11..8516fd2e5 100644 --- a/apps/spreadsheeteditor/main/app/view/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/view/ViewTab.js @@ -353,6 +353,8 @@ define([ me.btnCloseView.updateHint(me.tipClose); } + me.btnInterfaceTheme.updateHint(me.tipInterfaceTheme); + if (config.isEdit) { me.btnFreezePanes.setMenu(new Common.UI.Menu({ items: [ @@ -528,7 +530,8 @@ define([ textCombineSheetAndStatusBars: 'Combine sheet and status bars', textAlwaysShowToolbar: 'Always show toolbar', textInterfaceTheme: 'Interface theme', - textShowFrozenPanesShadow: 'Show frozen panes shadow' + textShowFrozenPanesShadow: 'Show frozen panes shadow', + tipInterfaceTheme: 'Interface theme' } }()), SSE.Views.ViewTab || {})); }); diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 025ffaace..e08453090 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -3679,6 +3679,7 @@ "SSE.Views.ViewTab.tipCreate": "Create sheet view", "SSE.Views.ViewTab.tipFreeze": "Freeze panes", "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.ViewTab.tipInterfaceTheme": "Interface theme", "SSE.Views.WBProtection.hintAllowRanges": "Allow edit ranges", "SSE.Views.WBProtection.hintProtectSheet": "Protect sheet", "SSE.Views.WBProtection.hintProtectWB": "Protect workbook", From d20b16190966a1d1f8ae812e4427c3809161427a Mon Sep 17 00:00:00 2001 From: JuliaSvinareva Date: Thu, 11 Aug 2022 10:44:16 +0300 Subject: [PATCH 006/112] Fix position of alt hints for desktop app --- apps/common/main/lib/view/Header.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 7f7fcc26a..f1753db57 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -494,7 +494,7 @@ define([ disabled: disabled === true, dataHint:'0', dataHintDirection: hintDirection ? hintDirection : (config.isDesktopApp ? 'right' : 'left'), - dataHintOffset: hintOffset ? hintOffset : (config.isDesktopApp ? '10, -10' : '10, 10'), + dataHintOffset: hintOffset ? hintOffset : (config.isDesktopApp ? '10, -18' : '10, 10'), dataHintTitle: hintTitle })).render(slot); } From 6ca40588d8a02937ff5ab299990f857ecbf2153c Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Thu, 11 Aug 2022 18:39:56 +0300 Subject: [PATCH 007/112] [DE mobile] Restriction of settings in reader mode and add mobile view --- .../lib/view/collaboration/Collaboration.jsx | 4 +- .../lib/view/collaboration/Comments.jsx | 6 +-- apps/documenteditor/mobile/locale/en.json | 6 ++- .../mobile/src/controller/Search.jsx | 3 +- .../mobile/src/controller/Toolbar.jsx | 13 ++++++ .../src/controller/settings/Settings.jsx | 39 ++++++++++------ .../mobile/src/less/app-ios.less | 5 +++ .../mobile/src/less/icons-ios.less | 12 ++++- .../mobile/src/less/icons-material.less | 25 ++++++++++- .../mobile/src/store/appOptions.js | 13 +++++- .../mobile/src/view/Toolbar.jsx | 6 ++- .../mobile/src/view/settings/Settings.jsx | 45 ++++++++++++------- 12 files changed, 136 insertions(+), 41 deletions(-) diff --git a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx index b2cc1b013..713b19e08 100644 --- a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx +++ b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx @@ -89,6 +89,8 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => { const { t } = useTranslation(); const _t = t('Common.Collaboration', {returnObjects: true}); const appOptions = props.storeAppOptions; + const isViewer = appOptions.isViewer; + return ( @@ -112,7 +114,7 @@ const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => { } - {window.editorType === 'de' && (appOptions.canReview || appOptions.canViewReview) && + {(window.editorType === 'de' && (appOptions.canReview || appOptions.canViewReview) && !isViewer) && diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index d8927fca7..b6a51a636 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -636,7 +636,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o const _t = t('Common.Collaboration', {returnObjects: true}); const isAndroid = Device.android; const displayMode = storeReview.displayMode; - + const isViewer = storeAppOptions.isViewer; const viewMode = !storeAppOptions.canComments; const comments = storeComments.groupCollectionFilter || storeComments.collectionComments; const isEdit = storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit; @@ -678,7 +678,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o {isEdit && !viewMode &&
{(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{onResolveComment(comment);}}>
} - {(displayMode === 'markup' && !wsProps?.Objects) && + {(displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
{setComment(comment); openActionComment(true);}}> @@ -708,7 +708,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
{reply.date}
- {isEdit && !viewMode && reply.editable && + {isEdit && !viewMode && reply.editable && !isViewer &&
{setComment(comment); setReply(reply); openActionReply(true);}} diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index d96bf81fb..c88d8d898 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -669,12 +669,14 @@ "txtScheme6": "Concourse", "txtScheme7": "Equity", "txtScheme8": "Flow", - "txtScheme9": "Foundry" + "txtScheme9": "Foundry", + "textMobileView": "Mobile View" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "dlgLeaveTitleText": "You leave the application", "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this page" + "stayButtonText": "Stay on this page", + "textOk": "OK" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/controller/Search.jsx b/apps/documenteditor/mobile/src/controller/Search.jsx index e47467400..a337ac6a4 100644 --- a/apps/documenteditor/mobile/src/controller/Search.jsx +++ b/apps/documenteditor/mobile/src/controller/Search.jsx @@ -25,6 +25,7 @@ class SearchSettings extends SearchSettingsView { const _t = t("Settings", {returnObjects: true}); const storeAppOptions = this.props.storeAppOptions; const isEdit = storeAppOptions.isEdit; + const isViewer = storeAppOptions.isViewer; const storeReview = this.props.storeReview; const displayMode = storeReview.displayMode; @@ -39,7 +40,7 @@ class SearchSettings extends SearchSettingsView { this.onFindReplaceClick('find')} /> - {isEdit && displayMode === 'markup' ? [ + {isEdit && displayMode === 'markup' && !isViewer ? [ this.onFindReplaceClick('replace')} />, { const api = Common.EditorApi.get(); + appOptions.changeViewerMode(); + api.asc_removeRestriction(Asc.c_oAscRestrictionType.View) api.asc_addRestriction(Asc.c_oAscRestrictionType.None); } const turnOnViewerMode = () => { const api = Common.EditorApi.get(); + appOptions.changeViewerMode(); api.asc_addRestriction(Asc.c_oAscRestrictionType.View); } + const changeMobileView = () => { + const api = Common.EditorApi.get(); + + appOptions.changeMobileView(); + api.ChangeReaderMode(); + } + return ( ) })); diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index c55c73d67..6ba5bb7a6 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -27,18 +27,18 @@ const Settings = props => { } }; - const onReaderMode = () => { - const appOptions = props.storeAppOptions; - appOptions.changeReaderMode(); - - Common.EditorApi.get().ChangeReaderMode(); - - if (Device.phone) { - setTimeout(() => { - closeModal(); - }, 1); - } - }; + // const onReaderMode = () => { + // const appOptions = props.storeAppOptions; + // appOptions.changeReaderMode(); + // + // Common.EditorApi.get().ChangeReaderMode(); + // + // if (Device.phone) { + // setTimeout(() => { + // closeModal(); + // }, 1); + // } + // }; const onPrint = () => { const api = Common.EditorApi.get(); @@ -94,15 +94,28 @@ const Settings = props => { }, 0); }; + const onChangeMobileView = () => { + const api = Common.EditorApi.get() + const appOptions = props.storeAppOptions; + + appOptions.changeMobileView(); + api.ChangeReaderMode(); + + if (Device.phone) { + closeModal(); + } + } + return }; diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less index edff70bc3..3b394e462 100644 --- a/apps/documenteditor/mobile/src/less/app-ios.less +++ b/apps/documenteditor/mobile/src/less/app-ios.less @@ -53,5 +53,10 @@ } } } + + // Reader mode + .back-reader-mode { + margin-left: 10px; + } } diff --git a/apps/documenteditor/mobile/src/less/icons-ios.less b/apps/documenteditor/mobile/src/less/icons-ios.less index cbac03fd8..b54e9eba1 100644 --- a/apps/documenteditor/mobile/src/less/icons-ios.less +++ b/apps/documenteditor/mobile/src/less/icons-ios.less @@ -445,12 +445,22 @@ .encoded-svg-mask(''); } - // Icon edit mode + // Reader mode &.icon-edit-mode { width: 24px; height: 24px; .encoded-svg-mask(''); } + &.icon-mobile-view { + width: 24px; + height: 24px; + .encoded-svg-mask('') + } + &.icon-standard-view { + width: 24px; + height: 24px; + .encoded-svg-mask(''); + } // Comments &.icon-menu-comment { diff --git a/apps/documenteditor/mobile/src/less/icons-material.less b/apps/documenteditor/mobile/src/less/icons-material.less index dda869d85..c06e90443 100644 --- a/apps/documenteditor/mobile/src/less/icons-material.less +++ b/apps/documenteditor/mobile/src/less/icons-material.less @@ -67,11 +67,28 @@ height: 24px; .encoded-svg-mask(''); } + + // Reader mode &.icon-edit-mode { width: 24px; height: 24px; .encoded-svg-mask('', @toolbar-icons); } + &.icon-mobile-view { + width: 24px; + height: 24px; + .encoded-svg-mask('', @toolbar-icons); + } + &.icon-standard-view { + width: 24px; + height: 24px; + .encoded-svg-mask('', @toolbar-icons); + } + &.icon-back-reader-mode { + width: 24px; + height: 24px; + .encoded-svg-mask('', @toolbar-icons); + } } } i.icon { @@ -157,8 +174,14 @@ .encoded-svg-mask(''); } + // Mobile View + &.icon-mobile-view { + width: 24px; + height: 24px; + .encoded-svg-mask('', @brandColor); + } + // Edit - &.icon-text-align-left { width: 22px; height: 22px; diff --git a/apps/documenteditor/mobile/src/store/appOptions.js b/apps/documenteditor/mobile/src/store/appOptions.js index b31c533bd..096c60834 100644 --- a/apps/documenteditor/mobile/src/store/appOptions.js +++ b/apps/documenteditor/mobile/src/store/appOptions.js @@ -26,13 +26,22 @@ export class storeAppOptions { changeDocReady: action, isViewer: observable, - changeViewerMode: action + changeViewerMode: action, + + isMobileView: observable, + changeMobileView: action }); } isEdit = false; - isViewer = true; + isMobileView = false; + changeMobileView() { + this.isMobileView = !this.isMobileView; + } + + + isViewer = true; changeViewerMode() { this.isViewer = !this.isViewer; } diff --git a/apps/documenteditor/mobile/src/view/Toolbar.jsx b/apps/documenteditor/mobile/src/view/Toolbar.jsx index 7d32c0107..25026add1 100644 --- a/apps/documenteditor/mobile/src/view/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/view/Toolbar.jsx @@ -1,17 +1,20 @@ import React, {Fragment} from 'react'; +import { useTranslation } from 'react-i18next'; import {NavLeft, NavRight, NavTitle, Link, Icon} from 'framework7-react'; import { Device } from '../../../../common/mobile/utils/device'; import EditorUIController from '../lib/patch' const ToolbarView = props => { + const { t } = useTranslation(); const isDisconnected = props.isDisconnected; const disableEditBtn = props.isObjectLocked || props.stateDisplayMode || props.disabledEditControls || isDisconnected; const isViewer = props.isViewer; + const isMobileView = props.isMobileView; return ( - {!isViewer && props.turnOnViewerMode()}>} + {!isViewer && props.turnOnViewerMode()}>} {(props.isShowBack && isViewer) && } {(Device.ios && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ disabledUndo: !props.isCanUndo || isDisconnected, @@ -28,6 +31,7 @@ const ToolbarView = props => { onUndoClick: props.onUndo, onRedoClick: props.onRedo })} + {isViewer && props.changeMobileView()}>} {(props.showEditDocument && !isViewer) && } diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 2a6ece70f..2a0d911fd 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -75,6 +75,7 @@ const routes = [ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => { const { t } = useTranslation(); const _t = t('Settings', {returnObjects: true}); + const appOptions = props.storeAppOptions; const storeReview = props.storeReview; const displayMode = storeReview.displayMode; const navbar = @@ -105,11 +106,13 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => } // set mode - const appOptions = props.storeAppOptions; + const isViewer = appOptions.isViewer; + const isMobileView = appOptions.isMobileView; + let _isEdit = false, _canDownload = false, _canDownloadOrigin = false, - _canReader = false, + // _canReader = false, _canAbout = true, _canHelp = true, _canPrint = false; @@ -119,7 +122,7 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => _canPrint = _canDownload = _canDownloadOrigin = false; } else { _isEdit = appOptions.isEdit; - _canReader = !appOptions.isEdit && !appOptions.isRestrictedEdit && appOptions.canReader; + // _canReader = !appOptions.isEdit && !appOptions.isRestrictedEdit && appOptions.canReader; _canDownload = appOptions.canDownload; _canDownloadOrigin = appOptions.canDownloadOrigin; _canPrint = appOptions.canPrint; @@ -136,8 +139,9 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => {navbar} + {/*disabled={appOptions.readerMode ? true : false}*/} {!props.inPopover && - + } @@ -154,26 +158,35 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => : null} - {_canReader && - {/*ToDo*/} - - {props.onReaderMode()}}/> - - } + {/*{_canReader &&*/} + {/* /!*ToDo*!/*/} + {/* */} + {/* {props.onReaderMode()}}/>*/} + {/* */} + {/*}*/} {Device.sailfish && _isEdit && {props.onOrthographyCheck()}} className='no-indicator' link="#"> } - {_isEdit && + {!isViewer && + + + props.onChangeMobileView()} /> + + } + {(_isEdit && !isViewer) && } - - - + {!isViewer && + + + + } {_canDownload && @@ -227,10 +240,10 @@ class SettingsView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } From 8f88e5b12d7b5abdccb0dbf1c4f9e0f7d6e32958 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 11 Aug 2022 18:54:02 +0300 Subject: [PATCH 008/112] [PE] Add custom path animation --- apps/common/main/lib/util/define.js | 7 ++++--- apps/presentationeditor/main/app/controller/Animation.js | 4 +++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/apps/common/main/lib/util/define.js b/apps/common/main/lib/util/define.js index b0dae8936..bb826a37f 100644 --- a/apps/common/main/lib/util/define.js +++ b/apps/common/main/lib/util/define.js @@ -849,8 +849,8 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', value: AscFormat.MOTION_ARC_DOWN, iconCls: 'animation-motion-paths-arcs', displayValue: this.textArcs, familyEffect: 'patharcs'}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_TURN_DOWN, iconCls: 'animation-motion-paths-turns', displayValue: this.textTurns, familyEffect: 'pathturns'}, {group: 'menu-effect-group-path', value: AscFormat.MOTION_CIRCLE, iconCls: 'animation-motion-paths-shapes', displayValue: this.textShapes, familyEffect: 'pathshapes'}, - {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion-paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}//, - //{group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion-paths-custom-path', displayValue: this.textCustomPath} + {group: 'menu-effect-group-path', value: AscFormat.MOTION_HORIZONTAL_FIGURE_8_FOUR, iconCls: 'animation-motion-paths-loops', displayValue: this.textLoops, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', value: AscFormat.MOTION_CUSTOM_PATH, iconCls: 'animation-motion-paths-custom-path', displayValue: this.textCustomPath} ]; }, @@ -1038,7 +1038,8 @@ define(function(){ 'use strict'; {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_PEANUT, displayValue: this.textPeanut}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_POINTY_STAR, displayValue: this.textPointStar}, {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_SWOOSH, displayValue: this.textSwoosh}, - {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'} + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_VERTICAL_FIGURE_8, displayValue: this.textVerticalFigure, familyEffect: 'pathloops'}, + {group: 'menu-effect-group-path', level: 'menu-effect-level-special', value: AscFormat.MOTION_CUSTOM_PATH, displayValue: this.textCustomPath, notsupported: true} ]; }, diff --git a/apps/presentationeditor/main/app/controller/Animation.js b/apps/presentationeditor/main/app/controller/Animation.js index eda06eca8..eaa4576bf 100644 --- a/apps/presentationeditor/main/app/controller/Animation.js +++ b/apps/presentationeditor/main/app/controller/Animation.js @@ -326,7 +326,9 @@ define([ var group = _.findWhere(this.EffectGroups, {id: record.get('group')}); group = group ? group.value : undefined; - this.addNewEffect(type, group, record.get('group'),this._state.Effect != AscFormat.ANIM_PRESET_NONE); + var prevEffect = this._state.Effect; + this._state.Effect = undefined; + this.addNewEffect(type, group, record.get('group'),prevEffect != AscFormat.ANIM_PRESET_NONE); } }, From 16f0e09949d3069e947c2d98483f65d8b182c08f Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 12 Aug 2022 14:55:09 +0300 Subject: [PATCH 009/112] [mobile] for bug 57560 --- apps/common/mobile/resources/css/skeleton.css | 4 ++++ apps/common/mobile/utils/htmlutils.js | 22 +++++++++---------- 2 files changed, 15 insertions(+), 11 deletions(-) diff --git a/apps/common/mobile/resources/css/skeleton.css b/apps/common/mobile/resources/css/skeleton.css index fd4da6d28..0ac99096e 100644 --- a/apps/common/mobile/resources/css/skeleton.css +++ b/apps/common/mobile/resources/css/skeleton.css @@ -92,6 +92,10 @@ body.theme-type-dark { animation: flickerAnimation 2s infinite ease-in-out; } +.framework7-initializing .page-content { + display: none; +} + @keyframes flickerAnimation { 0% { opacity:0.1; } 50% { opacity:1; } diff --git a/apps/common/mobile/utils/htmlutils.js b/apps/common/mobile/utils/htmlutils.js index af2eaaca4..1ecf09e46 100644 --- a/apps/common/mobile/utils/htmlutils.js +++ b/apps/common/mobile/utils/htmlutils.js @@ -1,25 +1,25 @@ -let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme")); -if ( !obj ) { - obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? - {id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'}; - localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj)); -} - -document.body.classList.add(`theme-type-${obj.type}`); - const load_stylesheet = reflink => { let link = document.createElement( "link" ); link.href = reflink; - link.type = "text/css"; + // link.type = "text/css"; link.rel = "stylesheet"; document.getElementsByTagName("head")[0].appendChild(link); }; if ( !localStorage && localStorage.getItem('mode-direction') === 'rtl' ) { - document.body.classList.add('rtl'); load_stylesheet('./css/framework7-rtl.css') + document.body.classList.add('rtl'); } else { load_stylesheet('./css/framework7.css') } + +let obj = !localStorage ? {id: 'theme-light', type: 'light'} : JSON.parse(localStorage.getItem("ui-theme")); +if ( !obj ) { + obj = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ? + {id: 'theme-dark', type: 'dark'} : {id: 'theme-light', type: 'light'}; + localStorage && localStorage.setItem("ui-theme", JSON.stringify(obj)); +} + +document.body.classList.add(`theme-type-${obj.type}`); From 6cd8c1a3180f09757ab3f82367d32368474cf6d0 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 12 Aug 2022 17:19:59 +0300 Subject: [PATCH 010/112] Update translation --- apps/documenteditor/embed/locale/ca.json | 2 +- apps/documenteditor/embed/locale/hy.json | 1 + apps/documenteditor/embed/locale/ms.json | 1 + apps/documenteditor/forms/locale/ca.json | 2 +- apps/documenteditor/forms/locale/ms.json | 5 + apps/documenteditor/forms/locale/pt-pt.json | 2 +- apps/documenteditor/forms/locale/ru.json | 4 +- apps/documenteditor/forms/locale/zh-tw.json | 2 +- apps/documenteditor/main/locale/hy.json | 22 + apps/documenteditor/main/locale/ja.json | 10 +- apps/documenteditor/main/locale/ms.json | 78 ++++ apps/documenteditor/main/locale/pl.json | 14 + apps/presentationeditor/embed/locale/ca.json | 2 +- apps/presentationeditor/main/locale/hy.json | 6 + apps/presentationeditor/main/locale/ja.json | 4 +- apps/presentationeditor/main/locale/ms.json | 48 ++ apps/presentationeditor/main/locale/pl.json | 422 +++++++++++++++++- .../presentationeditor/main/locale/zh-tw.json | 11 +- apps/spreadsheeteditor/embed/locale/ca.json | 2 +- apps/spreadsheeteditor/main/locale/ca.json | 34 +- apps/spreadsheeteditor/main/locale/hy.json | 11 + apps/spreadsheeteditor/main/locale/ja.json | 2 +- apps/spreadsheeteditor/main/locale/ms.json | 65 +++ apps/spreadsheeteditor/main/locale/pl.json | 31 ++ apps/spreadsheeteditor/main/locale/pt-pt.json | 1 + apps/spreadsheeteditor/main/locale/zh-tw.json | 19 + 26 files changed, 764 insertions(+), 37 deletions(-) diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index bce136aa0..b7de2c578 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -16,7 +16,7 @@ "DE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.
Contacteu amb l'administrador del servidor de documents per a obtenir més informació.", "DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "DE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.
Contacteu amb l'administrador del servidor de documents.", + "DE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.
Contacteu amb l'administrador del Servidor de Documents.", "DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.", "DE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.", diff --git a/apps/documenteditor/embed/locale/hy.json b/apps/documenteditor/embed/locale/hy.json index c6e1fdd2d..450a6d147 100644 --- a/apps/documenteditor/embed/locale/hy.json +++ b/apps/documenteditor/embed/locale/hy.json @@ -26,6 +26,7 @@ "DE.ApplicationController.scriptLoadError": "Կապը խիստ թույլ է, բաղադրիչների մի մասը չբեռնվեց։ Խնդրում ենք էջը թարմացնել։", "DE.ApplicationController.textAnonymous": "Անանուն", "DE.ApplicationController.textClear": "Մաքրել բոլոր դաշտերը", + "DE.ApplicationController.textCtrl": "Ctrl ստեղն", "DE.ApplicationController.textGotIt": "Հասկանալի է", "DE.ApplicationController.textGuest": "Հյուր", "DE.ApplicationController.textLoadingDocument": "Փաստաթղթի բեռնում", diff --git a/apps/documenteditor/embed/locale/ms.json b/apps/documenteditor/embed/locale/ms.json index 6d8351bdd..a8a16ec64 100644 --- a/apps/documenteditor/embed/locale/ms.json +++ b/apps/documenteditor/embed/locale/ms.json @@ -26,6 +26,7 @@ "DE.ApplicationController.scriptLoadError": "Sambungan terlalu perlahan, beberapa komponen tidak dapat dimuatkan. Sila muat semula halaman.", "DE.ApplicationController.textAnonymous": "Tanpa Nama", "DE.ApplicationController.textClear": "Kosongkan Semua Medan", + "DE.ApplicationController.textCtrl": "Ctrl", "DE.ApplicationController.textGotIt": "Faham", "DE.ApplicationController.textGuest": "Tetamu", "DE.ApplicationController.textLoadingDocument": "Dokumen dimuatkan", diff --git a/apps/documenteditor/forms/locale/ca.json b/apps/documenteditor/forms/locale/ca.json index 890fece20..c23df5321 100644 --- a/apps/documenteditor/forms/locale/ca.json +++ b/apps/documenteditor/forms/locale/ca.json @@ -94,7 +94,7 @@ "DE.Controllers.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "DE.Controllers.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel servidor. Contacteu amb l'administrador del servidor de documents per obtenir més informació.", "DE.Controllers.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "DE.Controllers.ApplicationController.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", + "DE.Controllers.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.
Contacteu amb l'administrador del Servidor de Documents.", "DE.Controllers.ApplicationController.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "DE.Controllers.ApplicationController.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", "DE.Controllers.ApplicationController.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.", diff --git a/apps/documenteditor/forms/locale/ms.json b/apps/documenteditor/forms/locale/ms.json index 13cf56d1e..b519f91e3 100644 --- a/apps/documenteditor/forms/locale/ms.json +++ b/apps/documenteditor/forms/locale/ms.json @@ -33,6 +33,9 @@ "Common.UI.Calendar.textShortWednesday": "Kami", "Common.UI.Calendar.textYears": "Tahun", "Common.UI.SearchBar.textFind": "Cari", + "Common.UI.SearchBar.tipCloseSearch": "Tutup carian", + "Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya", + "Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum", "Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah", "Common.UI.Themes.txtThemeDark": "Gelap", "Common.UI.Themes.txtThemeLight": "Ringan", @@ -56,6 +59,7 @@ "Common.Views.EmbedDialog.textTitle": "Dibenamkan", "Common.Views.EmbedDialog.textWidth": "Lebar", "Common.Views.EmbedDialog.txtCopy": "Salin ke papan klip", + "Common.Views.EmbedDialog.warnCopy": "Ralat Pelayar! Guna pintasan papan kekunci [Ctrl] + [C]", "Common.Views.ImageFromUrlDialog.textUrl": "Tampal URL imej:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Medan ini diperlukan", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Medan ini perlu sebagai URL dalam format \"http://www.example.com\"", @@ -74,6 +78,7 @@ "Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data", "Common.Views.ShareDialog.textTitle": "Kongsi Pautan", "Common.Views.ShareDialog.txtCopy": "Salin ke papan klip", + "Common.Views.ShareDialog.warnCopy": "Ralat Pelayar! Guna pintasan papan kekunci [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Penukaran telah gagal.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Melebihi masa tamat penukaran.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Ralat", diff --git a/apps/documenteditor/forms/locale/pt-pt.json b/apps/documenteditor/forms/locale/pt-pt.json index 26478e185..30bf841bb 100644 --- a/apps/documenteditor/forms/locale/pt-pt.json +++ b/apps/documenteditor/forms/locale/pt-pt.json @@ -173,4 +173,4 @@ "DE.Views.ApplicationView.txtSearch": "Pesquisar", "DE.Views.ApplicationView.txtShare": "Partilhar", "DE.Views.ApplicationView.txtTheme": "Tema da interface" -} +} \ No newline at end of file diff --git a/apps/documenteditor/forms/locale/ru.json b/apps/documenteditor/forms/locale/ru.json index b87b1e2ec..af82330c2 100644 --- a/apps/documenteditor/forms/locale/ru.json +++ b/apps/documenteditor/forms/locale/ru.json @@ -59,7 +59,7 @@ "Common.Views.EmbedDialog.textTitle": "Встроить", "Common.Views.EmbedDialog.textWidth": "Ширина", "Common.Views.EmbedDialog.txtCopy": "Скопировать в буфер", - "Common.Views.EmbedDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]", + "Common.Views.EmbedDialog.warnCopy": "Ошибка браузера! Воспользуйтесь комбинацией клавиш [Ctrl] + [C]", "Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", @@ -78,7 +78,7 @@ "Common.Views.SelectFileDlg.textTitle": "Выбрать источник данных", "Common.Views.ShareDialog.textTitle": "Поделиться ссылкой", "Common.Views.ShareDialog.txtCopy": "Скопировать в буфер", - "Common.Views.ShareDialog.warnCopy": "Browser's error! Use keyboard shortcut [Ctrl] + [C]", + "Common.Views.ShareDialog.warnCopy": "Ошибка браузера! Воспользуйтесь комбинацией клавиш [Ctrl] + [C]", "DE.Controllers.ApplicationController.convertationErrorText": "Конвертация не удалась.", "DE.Controllers.ApplicationController.convertationTimeoutText": "Превышено время ожидания конвертации.", "DE.Controllers.ApplicationController.criticalErrorTitle": "Ошибка", diff --git a/apps/documenteditor/forms/locale/zh-tw.json b/apps/documenteditor/forms/locale/zh-tw.json index d99abb545..f637cd1fe 100644 --- a/apps/documenteditor/forms/locale/zh-tw.json +++ b/apps/documenteditor/forms/locale/zh-tw.json @@ -173,4 +173,4 @@ "DE.Views.ApplicationView.txtSearch": "搜索", "DE.Views.ApplicationView.txtShare": "分享", "DE.Views.ApplicationView.txtTheme": "介面主題" -} +} \ No newline at end of file diff --git a/apps/documenteditor/main/locale/hy.json b/apps/documenteditor/main/locale/hy.json index 523b4dede..74c09592a 100644 --- a/apps/documenteditor/main/locale/hy.json +++ b/apps/documenteditor/main/locale/hy.json @@ -196,6 +196,7 @@ "Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ", "Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ", "Common.UI.Themes.txtThemeClassicLight": "Դասական լույս", + "Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն", "Common.UI.Themes.txtThemeDark": "Մուգ", "Common.UI.Themes.txtThemeLight": "Լույս", "Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը", @@ -211,6 +212,9 @@ "Common.UI.Window.yesButtonText": "Այո", "Common.Utils.Metric.txtCm": "սմ", "Common.Utils.Metric.txtPt": "կտ", + "Common.Utils.String.textAlt": "Alt ստեղն", + "Common.Utils.String.textCtrl": "Ctrl ստեղն", + "Common.Utils.String.textShift": "Shift ստեղն", "Common.Views.About.txtAddress": "հասցե՝", "Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ", "Common.Views.About.txtLicensor": "Լիցենզատու ", @@ -475,6 +479,7 @@ "Common.Views.SearchPanel.textReplace": "Փոխարինել", "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", + "Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է", "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան", "Common.Views.SearchPanel.textWholeWords": "Միայն ամբողջական բառերը", @@ -1779,6 +1784,7 @@ "DE.Views.FileMenuPanels.Settings.strPasteButton": "Ցուցադրել «Կպցնել ընտրանքներ» կոճակները`բովանդակությունը կպցնելիս", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Իրական ժամանակով գործակցության փոփոխություններ", "DE.Views.FileMenuPanels.Settings.strShowComments": "Ցույց տալ մեկնաբանությունները տեքստում", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Ցուցադրել այլ օգտատերերի կատարած փոփոխությունները", "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Ցույց տալ լուծված մեկնաբանությունները", "DE.Views.FileMenuPanels.Settings.strStrict": "Խիստ", "DE.Views.FileMenuPanels.Settings.strTheme": "Ինտերֆեյսի թեմա", @@ -2308,23 +2314,39 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Ներքև", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Կենտրոնացված", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Միջնիշային տարածք", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Համատեքստային", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Համատեքստային և կամայական", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Հմատեքստային, պատմական և կամայական", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Համատեքստային և պատմական", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Սկզբնադիր սյունատ", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Կամայական", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Էֆեկտներ", "DE.Views.ParagraphSettingsAdvanced.textExact": "Ճշգրիտ", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Առաջին տող", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Ելուստ", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Պատմական", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Պատմական և կամայական", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Լայնությամբ", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Առաջնորդ", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Ձախ", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Մակարդակ ", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Կապեր", "DE.Views.ParagraphSettingsAdvanced.textNone": "Ոչ մեկը", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(ոչ մեկը)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "OpenType-ի առանձնահատկությունները", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Դիրք", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Ջնջել", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Ջնջել բոլորը", "DE.Views.ParagraphSettingsAdvanced.textRight": "Աջ", "DE.Views.ParagraphSettingsAdvanced.textSet": "Հատկորոշել", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Միջատարածք", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Միայն ստանդարտ", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Ստանդարտ և համատեքստային", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Ստանդարտ, Համատեքստային և Կամայական", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Ստանդարտ, Համատեքստային և Պատմական", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Ստանդարտ և կամայական", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Ստանդարտ, պատմական և կամայական", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Ստանդարտ և պատմական", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Կենտրոնով", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Ձախ", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Ներդիրի դիրքը", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 392adc429..cb06a1261 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -1297,7 +1297,7 @@ "DE.Views.BookmarksDialog.textCopy": "コピー", "DE.Views.BookmarksDialog.textDelete": "削除する", "DE.Views.BookmarksDialog.textGetLink": "リンクを取得する", - "DE.Views.BookmarksDialog.textGoto": "に移動する", + "DE.Views.BookmarksDialog.textGoto": "移動する", "DE.Views.BookmarksDialog.textHidden": "隠しブックマーク", "DE.Views.BookmarksDialog.textLocation": "位置", "DE.Views.BookmarksDialog.textName": "名前", @@ -1720,12 +1720,12 @@ "DE.Views.FileMenu.btnPrintCaption": "印刷", "DE.Views.FileMenu.btnProtectCaption": "保護する", "DE.Views.FileMenu.btnRecentFilesCaption": "最近開いた...", - "DE.Views.FileMenu.btnRenameCaption": "名前の変更...", + "DE.Views.FileMenu.btnRenameCaption": "名前を変更する", "DE.Views.FileMenu.btnReturnCaption": "文書に戻る", "DE.Views.FileMenu.btnRightsCaption": "アクセス許可...", "DE.Views.FileMenu.btnSaveAsCaption": "名前を付けて保存", "DE.Views.FileMenu.btnSaveCaption": "保存", - "DE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存...", + "DE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存する", "DE.Views.FileMenu.btnSettingsCaption": "詳細設定...", "DE.Views.FileMenu.btnToEditCaption": "ドキュメントを編集", "DE.Views.FileMenu.textDownload": "ダウンロード", @@ -2141,12 +2141,12 @@ "DE.Views.MailMergeEmailDlg.textAttachPdf": "PDFとして添付する", "DE.Views.MailMergeEmailDlg.textFileName": "ファイル名", "DE.Views.MailMergeEmailDlg.textFormat": "メール形式", - "DE.Views.MailMergeEmailDlg.textFrom": "から", + "DE.Views.MailMergeEmailDlg.textFrom": "差出人", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "メッセージ", "DE.Views.MailMergeEmailDlg.textSubject": "件名", "DE.Views.MailMergeEmailDlg.textTitle": "メールに送信する", - "DE.Views.MailMergeEmailDlg.textTo": "へ", + "DE.Views.MailMergeEmailDlg.textTo": "宛先", "DE.Views.MailMergeEmailDlg.textWarning": "警告!", "DE.Views.MailMergeEmailDlg.textWarningMsg": "「送信」ボタンをクリックするとメール送信を中止することはできません。", "DE.Views.MailMergeSettings.downloadMergeTitle": "結合中", diff --git a/apps/documenteditor/main/locale/ms.json b/apps/documenteditor/main/locale/ms.json index dfcd870f9..4d12ecc93 100644 --- a/apps/documenteditor/main/locale/ms.json +++ b/apps/documenteditor/main/locale/ms.json @@ -176,6 +176,10 @@ "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan", "Common.UI.SearchBar.textFind": "Cari", + "Common.UI.SearchBar.tipCloseSearch": "Tutup carian", + "Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka tetapan lanjutan", + "Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum", "Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting", "Common.UI.SearchDialog.textMatchCase": "Sensitif huruf", "Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian", @@ -188,9 +192,11 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Gantikan Semua", "Common.UI.SynchronizeTip.textDontShow": "Jangan tunjukkan mesej ini semula", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah ditukar dengan pengguna yang lain.
Sila klik untuk simpan perubahan anda dan muat semula kemas kini.", + "Common.UI.ThemeColorPalette.textRecentColors": "Warna Terkini", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standard", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah", + "Common.UI.Themes.txtThemeContrastDark": "Kontras Gelap", "Common.UI.Themes.txtThemeDark": "Gelap", "Common.UI.Themes.txtThemeLight": "Ringan", "Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem", @@ -206,6 +212,9 @@ "Common.UI.Window.yesButtonText": "Ya", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textAlt": "Alt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Anjak", "Common.Views.About.txtAddress": "alamat ", "Common.Views.About.txtLicensee": "LESENKAN", "Common.Views.About.txtLicensor": "PEMBERI LESEN", @@ -286,6 +295,7 @@ "Common.Views.ExternalMergeEditor.textTitle": "Cantum Mel Penerima", "Common.Views.ExternalOleEditor.textClose": "Tutup", "Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar", + "Common.Views.ExternalOleEditor.textTitle": "Editor Hamparan", "Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:", "Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran", "Common.Views.Header.textAdvSettings": "Seting lanjutan", @@ -304,6 +314,7 @@ "Common.Views.Header.tipSave": "Simpan", "Common.Views.Header.tipSearch": "Carian", "Common.Views.Header.tipUndo": "Buat semula", + "Common.Views.Header.tipUsers": "Lihat Pengguna", "Common.Views.Header.tipViewSettings": "Lihat seting", "Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", @@ -344,6 +355,7 @@ "Common.Views.PluginDlg.textLoading": "Memuatkan", "Common.Views.Plugins.groupCaption": "Plug masuk", "Common.Views.Plugins.strPlugins": "Plug masuk", + "Common.Views.Plugins.textClosePanel": "Tutup pasang masuk", "Common.Views.Plugins.textLoading": "Memuatkan", "Common.Views.Plugins.textStart": "Mulakan", "Common.Views.Plugins.textStop": "Henti", @@ -458,11 +470,21 @@ "Common.Views.SaveAsDlg.textLoading": "Memuatkan", "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", "Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf", + "Common.Views.SearchPanel.textCloseSearch": "Tutup carian", "Common.Views.SearchPanel.textFind": "Cari", "Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Sepadan menggunakan ungkapan biasa", + "Common.Views.SearchPanel.textNoMatches": "Tiada padanan", + "Common.Views.SearchPanel.textNoSearchResults": "Tiada carian keputusan", "Common.Views.SearchPanel.textReplace": "Gantikan", "Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua", + "Common.Views.SearchPanel.textReplaceWith": "Gantikan dengan", + "Common.Views.SearchPanel.textSearchHasStopped": "Carian telah dihentikan", + "Common.Views.SearchPanel.textSearchResults": "Keputusan carian: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak keputusan untuk dipaparkan di sini", "Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja", + "Common.Views.SearchPanel.tipNextResult": "Keputusan seterusnya", + "Common.Views.SearchPanel.tipPreviousResult": "Keputusan sebelum", "Common.Views.SelectFileDlg.textLoading": "Memuatkan", "Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data", "Common.Views.SignDialog.textBold": "Tebal", @@ -530,6 +552,7 @@ "DE.Controllers.LeftMenu.txtCompatible": "Dokumen akan disimpan kepada format baharu. Ia akan membenarkan penggunaan semua ciri, tetapi mungkin menjejaskan talaletak dokumen.
Guna pilihan ‘Compatibility’ pada seting lanjutan jika anda mahu menjadikan fail serasi dengan versi MS Word yang lama.", "DE.Controllers.LeftMenu.txtUntitled": "Tanpa Tajuk", "DE.Controllers.LeftMenu.warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.
Adakah anda pasti mahu teruskan?", + "DE.Controllers.LeftMenu.warnDownloadAsPdf": "{0} anda akan ditukar kepada format boleh diedit. Ini mungkin mengambil sedikit masa. Dokumen yang terhasil akan dioptimumkan untuk membolehkan anda mengedit teks, jadi ia mungkin tidak kelihatan sama seperti {0} asal, terutamanya jika fail asal mengandungi banyak grafik.", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Jika anda terus menyimpan dalam format ini beberapa pemformatan mungkin akan hilang.
Adakah anda pasti mahu teruskan?", "DE.Controllers.LeftMenu.warnReplaceString": "{0} adalah karakter yang tidak sah bagi medan gantian.", "DE.Controllers.Main.applyChangesTextText": "Perubahan dimuatkan…", @@ -556,6 +579,7 @@ "DE.Controllers.Main.errorEditingDownloadas": "Terdapat ralat yang berlaku semasa bekerja dengan dokumen.
Gunakan pilihan 'Download as...' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda.", "DE.Controllers.Main.errorEditingSaveas": "Terdapat ralat yang berlaku semasa bekerja dengan dokumen.
Gunakan pilihan 'Save as...' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda.", "DE.Controllers.Main.errorEmailClient": "Tiada e-mel klien yang dijumpai.", + "DE.Controllers.Main.errorEmptyTOC": "Mula mencipta senarai kandungan dengan menggunakan gaya pengepala daripada galeri Gaya pada teks pilihan.", "DE.Controllers.Main.errorFilePassProtect": "Fail dilindungi kata laluan dan tidak boleh dibuka.", "DE.Controllers.Main.errorFileSizeExceed": "Saiz fail melebihi had ditetapkan untuk pelayan anda.
Sila, hubungi pentadbir Pelayan Dokumen anda untuk butiran.", "DE.Controllers.Main.errorForceSave": "Terdapat ralat yang berlaku semasa menyimpan fail. Sila gunakan pilihan 'Download as' untuk menyimpan salinan fail sandaran ke pemacu keras komputer anda dan cuba semula nanti.", @@ -564,6 +588,7 @@ "DE.Controllers.Main.errorLoadingFont": "Fon tidak dimuatkan.
Sila hubungi pentadbir Pelayan Dokumen anda.", "DE.Controllers.Main.errorMailMergeLoadFile": "Memuatkan dokumen telah gagal. Sila pilih fail yang berbeza.", "DE.Controllers.Main.errorMailMergeSaveFile": "Gagal cantum", + "DE.Controllers.Main.errorNoTOC": "Tiada senarai kandungan untuk dikemas kini, Anda boleh masukkan satu daripada tab Rujukan.", "DE.Controllers.Main.errorProcessSaveResult": "Gagal disimpan.", "DE.Controllers.Main.errorServerVersion": "Versi editor telah dikemas kinikan. Halaman akan dimuat semula untuk menggunakan perubahan.", "DE.Controllers.Main.errorSessionAbsolute": "Sesi pengeditan dokumen telah tamat tempoh. Sila muat semula halaman.", @@ -631,8 +656,10 @@ "DE.Controllers.Main.textPaidFeature": "Ciri Berbayar", "DE.Controllers.Main.textReconnect": "Sambungan dipulihkan", "DE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua fail", + "DE.Controllers.Main.textRememberMacros": "Ingati pilihan saya untuk semua makro", "DE.Controllers.Main.textRenameError": "Nama pengguna tidak boleh kosong.", "DE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan bagi kerjasama", + "DE.Controllers.Main.textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?", "DE.Controllers.Main.textShape": "Bentuk", "DE.Controllers.Main.textStrict": "Mod tegas", "DE.Controllers.Main.textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan bersama.
Klik butang 'Strict mode' untuk menukar kepada mod pengeditan Bersama Tegas untuk mengedit fail tanpa gangguan pengguna lain dan menghantar perubahan anda hanya selepas anda menyimpannya. Anda boleh bertukar di antara mod-mod pengeditan Bersama menngunakan seting Lanjutan editor.", @@ -910,6 +937,8 @@ "DE.Controllers.Search.notcriticalErrorTitle": "Amaran", "DE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.", "DE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.", + "DE.Controllers.Search.textReplaceSuccess": "Carian telah dilakukan. Kejadian {0} telah digantikan", + "DE.Controllers.Search.warnReplaceString": "{0} bukan aksara khas yang sah untuk Gantikan Dengan kotak.", "DE.Controllers.Statusbar.textDisconnect": "Sambungan telah hilang
Sedang cuba untuk menyambung. Sila semak seting sambungan.", "DE.Controllers.Statusbar.textHasChanges": "Perubahan baharu telah dijejaki", "DE.Controllers.Statusbar.textSetTrackChanges": "Anda berada dalam mod Jejak Perubahan", @@ -1181,6 +1210,7 @@ "DE.Controllers.Toolbar.txtSymbol_beth": "Bidaan", "DE.Controllers.Toolbar.txtSymbol_bullet": "Bulet operator", "DE.Controllers.Toolbar.txtSymbol_cap": "Persilangan", + "DE.Controllers.Toolbar.txtSymbol_cbrt": "Punca Kuasa Tiga", "DE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis mendatar pertengahan baris", "DE.Controllers.Toolbar.txtSymbol_celsius": "Darjah Celsius", "DE.Controllers.Toolbar.txtSymbol_chi": "Ci", @@ -1231,6 +1261,7 @@ "DE.Controllers.Toolbar.txtSymbol_phi": "Phi", "DE.Controllers.Toolbar.txtSymbol_pi": "Pi", "DE.Controllers.Toolbar.txtSymbol_plus": "Tambah", + "DE.Controllers.Toolbar.txtSymbol_pm": "Tambah Tolak", "DE.Controllers.Toolbar.txtSymbol_propto": "Berkadaran Dengan", "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", "DE.Controllers.Toolbar.txtSymbol_qdrt": "Punca kuasa empat", @@ -1566,6 +1597,7 @@ "DE.Views.DocumentHolder.txtDistribVert": "Menegak Tersendiri", "DE.Views.DocumentHolder.txtEmpty": "(Kosong)", "DE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear", + "DE.Views.DocumentHolder.txtFractionSkewed": "Tukar kepada pecahan terpencong", "DE.Views.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertindan", "DE.Views.DocumentHolder.txtGroup": "Kumpulan", "DE.Views.DocumentHolder.txtGroupCharOver": "Aksara melebihi teks", @@ -1716,12 +1748,14 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtPageSize": "Saiz Halaman", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Perenggan", + "DE.Views.FileMenuPanels.DocumentInfo.txtPdfProducer": "Penerbit PDF", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfTagged": "PDF Bertag", "DE.Views.FileMenuPanels.DocumentInfo.txtPdfVer": "Versi PDf", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang mempunyai hak", "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Simbol dengan jarak", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistik", + "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subjek", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Simbol", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tajuk", "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Dimuat naik", @@ -1749,6 +1783,9 @@ "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Perubahan Kerjasama Masa-sebenar", + "DE.Views.FileMenuPanels.Settings.strShowComments": "Tunjukkan komen dalam teks", + "DE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Tunjukkan perubahan daripada pengguna lain", + "DE.Views.FileMenuPanels.Settings.strShowResolvedComments": "Tunjukkan komen yang diselesaikan", "DE.Views.FileMenuPanels.Settings.strStrict": "Tegas", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema antara muka", "DE.Views.FileMenuPanels.Settings.strUnit": "Unit Pengukuran", @@ -1772,8 +1809,11 @@ "DE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter", "DE.Views.FileMenuPanels.Settings.txtCollaboration": "Kerjasama", "DE.Views.FileMenuPanels.Settings.txtDarkMode": "Hidupkan mod gelap dokumen", + "DE.Views.FileMenuPanels.Settings.txtEditingSaving": "Pengeditan dan menyimpan", + "DE.Views.FileMenuPanels.Settings.txtFastTip": "Pengeditan bersama masa nyata, Semua perubahan disimpan secara automatik.", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Muat kepada Halaman", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran", + "DE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglif", "DE.Views.FileMenuPanels.Settings.txtInch": "Inci", "DE.Views.FileMenuPanels.Settings.txtLast": "Lihat Terakhir", "DE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", @@ -1783,12 +1823,17 @@ "DE.Views.FileMenuPanels.Settings.txtPt": "Mata", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Mendayakan Semua", "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Mendayakan semua makro tanpa pemberitahuan", + "DE.Views.FileMenuPanels.Settings.txtShowTrackChanges": "Tunjukkan jejak perubahan", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Menyemak Ejaan", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Nyahdayakan Semua", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Nyahdayakan semua makro tanpa pemberitahuan", + "DE.Views.FileMenuPanels.Settings.txtStrictTip": "Guna butang “Simpan” untuk segerakkan perubahan yang anda dan orang lain lakukan", + "DE.Views.FileMenuPanels.Settings.txtUseAltKey": "Guna kunci Alt untuk navigasi pengguna", + "DE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Guna kunci Pilihan untuk navigasi antara muka pengguna menggunakan papan kekunci", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Tunjuk Pemberitahuan", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nyahdayakan semua makro dengan pemberitahuan", "DE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Ruang kerja", "DE.Views.FormSettings.textAlways": "Sentiasa", "DE.Views.FormSettings.textAspect": "Nisbah aspek dikunci", "DE.Views.FormSettings.textAtLeast": "sekurang-kurangnya", @@ -1835,6 +1880,7 @@ "DE.Views.FormSettings.textWidth": "Lebar sell", "DE.Views.FormsTab.capBtnCheckBox": "Kotak semak", "DE.Views.FormsTab.capBtnComboBox": "Kotak kombo", + "DE.Views.FormsTab.capBtnDownloadForm": "Muat turun sebagai oform", "DE.Views.FormsTab.capBtnDropDown": "Juntai bawah", "DE.Views.FormsTab.capBtnImage": "Imej", "DE.Views.FormsTab.capBtnNext": "Medan seterusnya", @@ -1854,6 +1900,7 @@ "DE.Views.FormsTab.textSubmited": "Borang telah berjaya diserahkan", "DE.Views.FormsTab.tipCheckBox": "Sisipkan kotak semak", "DE.Views.FormsTab.tipComboBox": "Sisipkan kotak kombo", + "DE.Views.FormsTab.tipDownloadForm": "Muat turun fail sebagai dokumen OFORM yang boleh diisi", "DE.Views.FormsTab.tipDropDown": "Sisipkan senarai juntai bawah", "DE.Views.FormsTab.tipImageField": "Sisipkan imej", "DE.Views.FormsTab.tipNextForm": "Pergi ke medan seterusnya", @@ -2014,6 +2061,7 @@ "DE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan", "DE.Views.LeftMenu.tipTitles": "Tajuk", "DE.Views.LeftMenu.txtDeveloper": "MOD PEMAJU", + "DE.Views.LeftMenu.txtEditor": "Editor Dokumen", "DE.Views.LeftMenu.txtLimit": "Had Akses", "DE.Views.LeftMenu.txtTrial": "MOD PERCUBAAN", "DE.Views.LeftMenu.txtTrialDev": "Mod Percubaan Pembina", @@ -2056,6 +2104,7 @@ "DE.Views.Links.textSwapNotes": "Tukar Nota kaki dan Nota hujung", "DE.Views.Links.textUpdateAll": "Kemas kini keseluruhan jadual", "DE.Views.Links.textUpdatePages": "Kemas kini nombor halaman sahaja", + "DE.Views.Links.tipAddText": "Termasuk pengepala dalam Senarai Kandungan", "DE.Views.Links.tipBookmarks": "Cipta penanda buku", "DE.Views.Links.tipCaption": "Sisipkan kapsyen", "DE.Views.Links.tipContents": "Sisip senarai kandungan", @@ -2066,6 +2115,7 @@ "DE.Views.Links.tipTableFigures": "Sisip jadual rajah", "DE.Views.Links.tipTableFiguresUpdate": "Kemas Kini Jadual Rajah", "DE.Views.Links.titleUpdateTOF": "Kemas Kini Jadual Rajah", + "DE.Views.Links.txtDontShowTof": "Tidak Ditunjukkan dalam Senarai Kandungan", "DE.Views.Links.txtLevel": "Tahap", "DE.Views.ListSettingsDialog.textAuto": "Automatik", "DE.Views.ListSettingsDialog.textCenter": "Pusat", @@ -2094,6 +2144,7 @@ "DE.Views.MailMergeEmailDlg.textFrom": "Dari", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "Mesej", + "DE.Views.MailMergeEmailDlg.textSubject": "Baris Subjek", "DE.Views.MailMergeEmailDlg.textTitle": "Hantar ke E-mel", "DE.Views.MailMergeEmailDlg.textTo": "Kepada", "DE.Views.MailMergeEmailDlg.textWarning": "Amaran!", @@ -2123,6 +2174,7 @@ "DE.Views.MailMergeSettings.textReadMore": "Baca selanjutnya", "DE.Views.MailMergeSettings.textSendMsg": "Semua mesej mel telah sedia dan akan dihantar keluar dalam sedikit masa.
Kelajuan mel bergantung kepada perkhidmatan mel anda.
Anda boleh terus bekerja dengan dokumen atau menutup ia. Selepas operasi tamat pemberitahuan akan dihantar ke alamat e-mel berdaftar anda.", "DE.Views.MailMergeSettings.textTo": "Kepada", + "DE.Views.MailMergeSettings.txtFirst": "Kepada rekod pertama", "DE.Views.MailMergeSettings.txtFromToError": "Nilai \"Daripada\" mestilah kurang daripada nilai \"Kepada\"", "DE.Views.MailMergeSettings.txtLast": "Ke rekod akhir", "DE.Views.MailMergeSettings.txtNext": "Ke rekod seterusnya", @@ -2130,6 +2182,7 @@ "DE.Views.MailMergeSettings.txtUntitled": "Tanpa Tajuk", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Telah gagal memulakan cantum", "DE.Views.Navigation.strNavigate": "Pengepala", + "DE.Views.Navigation.txtClosePanel": "Tutup pengepala", "DE.Views.Navigation.txtCollapse": "Runtuhkan semua", "DE.Views.Navigation.txtDemote": "Turun aras", "DE.Views.Navigation.txtEmpty": "Tidak ada pengepala di dalam dokumen.
Gunakan gaya pengepala ke teks supaya ia kelihatan di dalam senarai kandungan.", @@ -2140,10 +2193,14 @@ "DE.Views.Navigation.txtFontSize": "Saiz fon", "DE.Views.Navigation.txtHeadingAfter": "Pengepala baharu selepas", "DE.Views.Navigation.txtHeadingBefore": "Pengepala baharu sebelum", + "DE.Views.Navigation.txtLarge": "Besar", "DE.Views.Navigation.txtMedium": "Medium", "DE.Views.Navigation.txtNewHeading": "Subpengepala baharu", "DE.Views.Navigation.txtPromote": "Naikkan aras", "DE.Views.Navigation.txtSelect": "Pilih kandungan", + "DE.Views.Navigation.txtSettings": "Tetapan Pengepala", + "DE.Views.Navigation.txtSmall": "Kecil", + "DE.Views.Navigation.txtWrapHeadings": "Pengepala balut panjang", "DE.Views.NoteSettingsDialog.textApply": "Guna", "DE.Views.NoteSettingsDialog.textApplyTo": "Guna perubahan kepada", "DE.Views.NoteSettingsDialog.textContinue": "Berterusan", @@ -2202,6 +2259,7 @@ "DE.Views.ParagraphSettings.strIndentsRightText": "Kanan", "DE.Views.ParagraphSettings.strIndentsSpecial": "Khas", "DE.Views.ParagraphSettings.strLineHeight": "Jarak Garis", + "DE.Views.ParagraphSettings.strParagraphSpacing": "Jarak Perenggan", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Jangan tambah selang di antara perenggan bagi gaya yang sama", "DE.Views.ParagraphSettings.strSpacingAfter": "Selepas", "DE.Views.ParagraphSettings.strSpacingBefore": "Sebelum", @@ -2256,23 +2314,39 @@ "DE.Views.ParagraphSettingsAdvanced.textBottom": "Bawah", "DE.Views.ParagraphSettingsAdvanced.textCentered": "Berpusat", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Jarak Aksara", + "DE.Views.ParagraphSettingsAdvanced.textContext": "Kontekstual", + "DE.Views.ParagraphSettingsAdvanced.textContextDiscret": "Kontekstual dan Budi Bicara", + "DE.Views.ParagraphSettingsAdvanced.textContextHistDiscret": "Piawaian, Sejarah dan Budi Bicara", + "DE.Views.ParagraphSettingsAdvanced.textContextHistorical": "Kontekstual dan Sejarah", "DE.Views.ParagraphSettingsAdvanced.textDefault": "Tab Lalai", + "DE.Views.ParagraphSettingsAdvanced.textDiscret": "Budi Bicara", "DE.Views.ParagraphSettingsAdvanced.textEffects": "Kesan", "DE.Views.ParagraphSettingsAdvanced.textExact": "Tepat sekali", "DE.Views.ParagraphSettingsAdvanced.textFirstLine": "Garis pertama", "DE.Views.ParagraphSettingsAdvanced.textHanging": "Gantung", + "DE.Views.ParagraphSettingsAdvanced.textHistorical": "Sejarah", + "DE.Views.ParagraphSettingsAdvanced.textHistoricalDiscret": "Sejarah dan Budi Bicara", "DE.Views.ParagraphSettingsAdvanced.textJustified": "Dilaraskan", "DE.Views.ParagraphSettingsAdvanced.textLeader": "Ketua", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Kiri", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Tahap", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatur", "DE.Views.ParagraphSettingsAdvanced.textNone": "Tiada", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(tiada)", + "DE.Views.ParagraphSettingsAdvanced.textOpenType": "Ciri OpenType", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Kedudukan", "DE.Views.ParagraphSettingsAdvanced.textRemove": "Alih keluar", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Alih Keluar Semua", "DE.Views.ParagraphSettingsAdvanced.textRight": "Kanan", "DE.Views.ParagraphSettingsAdvanced.textSet": "Tentukan", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Penjarakan", + "DE.Views.ParagraphSettingsAdvanced.textStandard": "Piawaian sahaja", + "DE.Views.ParagraphSettingsAdvanced.textStandardContext": "Piawaian dan Kontekstual", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextDiscret": "Piawaian, Kontekstual dan Budi Bicara", + "DE.Views.ParagraphSettingsAdvanced.textStandardContextHist": "Piawaian, Kontekstual dan Sejarah", + "DE.Views.ParagraphSettingsAdvanced.textStandardDiscret": "Piawaian dan Budi Bicara", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistDiscret": "Piawaian, Sejarah dan Budi Bicara", + "DE.Views.ParagraphSettingsAdvanced.textStandardHistorical": "Piawaian dan Sejarah", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Pusat", "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Kiri", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Kedudukan Tab", @@ -2296,6 +2370,7 @@ "DE.Views.RightMenu.txtMailMergeSettings": "Seting cantum mel", "DE.Views.RightMenu.txtParagraphSettings": "Seting perenggan", "DE.Views.RightMenu.txtShapeSettings": "Seting bentuk", + "DE.Views.RightMenu.txtSignatureSettings": "Tetapan tandatangan", "DE.Views.RightMenu.txtTableSettings": "Seting Jadual", "DE.Views.RightMenu.txtTextArtSettings": "Seting Lukisan Teks", "DE.Views.ShapeSettings.strBackground": "Warna latar belakang", @@ -2649,7 +2724,10 @@ "DE.Views.Toolbar.mniImageFromFile": "Imej daripada Fail", "DE.Views.Toolbar.mniImageFromStorage": "Imej daripada Simpanan", "DE.Views.Toolbar.mniImageFromUrl": "Imej daripada URL", + "DE.Views.Toolbar.mniInsertSSE": "Masukkan Hamparan", "DE.Views.Toolbar.mniLowerCase": "huruf kecil", + "DE.Views.Toolbar.mniRemoveFooter": "Alih Keluar Pengaki", + "DE.Views.Toolbar.mniRemoveHeader": "Alih Keluar Pengepala", "DE.Views.Toolbar.mniSentenceCase": "Huruf besar pada permulaan ayat.", "DE.Views.Toolbar.mniTextToTable": "Menukar Teks ke Jadual", "DE.Views.Toolbar.mniToggleCase": "hURUF tOGOL", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json index b447ba0f3..7a66bafba 100644 --- a/apps/documenteditor/main/locale/pl.json +++ b/apps/documenteditor/main/locale/pl.json @@ -271,6 +271,7 @@ "Common.Views.Comments.textResolve": "Rozwiąż", "Common.Views.Comments.textResolved": "Rozwiązany", "Common.Views.Comments.textSort": "Sortuj komentarze", + "Common.Views.Comments.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza", "Common.Views.Comments.txtEmpty": "Nie ma komentarzy w tym dokumencie.", "Common.Views.CopyWarningDialog.textDontShow": "Nie pokazuj tej wiadomości ponownie", "Common.Views.CopyWarningDialog.textMsg": "Kopiowanie, wycinanie i wklejanie za pomocą przycisków edytora i działań menu kontekstowego zostanie przeprowadzone tylko w tej karcie edytora.

Aby skopiować lub wkleić do lub z aplikacji poza kartą edytora, użyj następujących kombinacji klawiszy:", @@ -454,12 +455,14 @@ "Common.Views.ReviewPopover.textOpenAgain": "Otwórz ponownie", "Common.Views.ReviewPopover.textReply": "Odpowiedz", "Common.Views.ReviewPopover.textResolve": "Rozwiąż", + "Common.Views.ReviewPopover.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza", "Common.Views.ReviewPopover.txtAccept": "Zaakceptuj", "Common.Views.ReviewPopover.txtDeleteTip": "Usuń", "Common.Views.ReviewPopover.txtEditTip": "Edytuj", "Common.Views.ReviewPopover.txtReject": "Odrzuć", "Common.Views.SaveAsDlg.textLoading": "Ładowanie", "Common.Views.SaveAsDlg.textTitle": "Folder do zapisu", + "Common.Views.SearchPanel.textCaseSensitive": "Rozróżnienie wielkich i małych liter", "Common.Views.SearchPanel.textCloseSearch": "Zamknij wyszukiwanie", "Common.Views.SearchPanel.textFind": "Znajdź", "Common.Views.SearchPanel.textFindAndReplace": "Znajdź i zamień", @@ -915,6 +918,8 @@ "DE.Controllers.Navigation.txtBeginning": "Początek dokumentu", "DE.Controllers.Navigation.txtGotoBeginning": "Przejdź na początek dokumentu", "DE.Controllers.Search.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Controllers.Search.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "DE.Controllers.Search.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.", "DE.Controllers.Statusbar.textHasChanges": "Nowe zmiany zostały wyśledzone", "DE.Controllers.Statusbar.textSetTrackChanges": "Jesteś w trybie śledzenia zmian", "DE.Controllers.Statusbar.textTrackChanges": "Dokument jest otwarty przy włączonym trybie śledzenia zmian", @@ -1799,6 +1804,8 @@ "DE.Views.FileMenuPanels.Settings.txtWorkspace": "Obszar roboczy", "DE.Views.FormSettings.textAlways": "Zawsze", "DE.Views.FormSettings.textAspect": "Zachowaj proporcje", + "DE.Views.FormSettings.textAtLeast": "Co najmniej", + "DE.Views.FormSettings.textAuto": "Automatyczny", "DE.Views.FormSettings.textAutofit": "Autodopasowanie", "DE.Views.FormSettings.textBackgroundColor": "Kolor tła", "DE.Views.FormSettings.textCheckbox": "Pole wyboru", @@ -1809,6 +1816,7 @@ "DE.Views.FormSettings.textDelete": "Usuń", "DE.Views.FormSettings.textDisconnect": "Rozłączyć", "DE.Views.FormSettings.textDropDown": "Lista rozwijana", + "DE.Views.FormSettings.textExact": "Dokładnie", "DE.Views.FormSettings.textField": "Pole tekstowe", "DE.Views.FormSettings.textFixed": "Pole stałego rozmiaru", "DE.Views.FormSettings.textFromFile": "Z pliku", @@ -1906,6 +1914,7 @@ "DE.Views.ImageSettings.textCrop": "Przytnij", "DE.Views.ImageSettings.textCropFill": "Wypełnij", "DE.Views.ImageSettings.textCropFit": "Dopasuj", + "DE.Views.ImageSettings.textCropToShape": "Przytnij do kształtu", "DE.Views.ImageSettings.textEdit": "Edytuj", "DE.Views.ImageSettings.textEditObject": "Edytuj obiekt", "DE.Views.ImageSettings.textFitMargins": "Dopasuj do marginesu", @@ -2012,6 +2021,7 @@ "DE.Views.LeftMenu.tipChat": "Czat", "DE.Views.LeftMenu.tipComments": "Komentarze", "DE.Views.LeftMenu.tipNavigation": "Nawigacja", + "DE.Views.LeftMenu.tipOutline": "Nagłówki", "DE.Views.LeftMenu.tipPlugins": "Wtyczki", "DE.Views.LeftMenu.tipSearch": "Szukaj", "DE.Views.LeftMenu.tipSupport": "Opinie i wsparcie", @@ -2070,6 +2080,7 @@ "DE.Views.Links.tipTableFigures": "Wstaw spis ilustracji", "DE.Views.Links.tipTableFiguresUpdate": "Odśwież listę ilustracji", "DE.Views.Links.titleUpdateTOF": "Odśwież listę ilustracji", + "DE.Views.Links.txtLevel": "Poziom", "DE.Views.ListSettingsDialog.textAuto": "Automatyczne", "DE.Views.ListSettingsDialog.textCenter": "Do Środka", "DE.Views.ListSettingsDialog.textLeft": "Do Lewej", @@ -2272,6 +2283,7 @@ "DE.Views.ParagraphSettingsAdvanced.textLeader": "Typ linii", "DE.Views.ParagraphSettingsAdvanced.textLeft": "Lewy", "DE.Views.ParagraphSettingsAdvanced.textLevel": "Poziom", + "DE.Views.ParagraphSettingsAdvanced.textLigatures": "Ligatury", "DE.Views.ParagraphSettingsAdvanced.textNone": "Brak", "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(brak)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "Położenie", @@ -2755,6 +2767,7 @@ "DE.Views.Toolbar.tipControls": "Wstaw kontrolki treści", "DE.Views.Toolbar.tipCopy": "Kopiuj", "DE.Views.Toolbar.tipCopyStyle": "Kopiuj styl", + "DE.Views.Toolbar.tipCut": "Wytnij", "DE.Views.Toolbar.tipDateTime": "Wstaw aktualną datę i godzinę", "DE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki", "DE.Views.Toolbar.tipDecPrLeft": "Zmniejsz wcięcie", @@ -2795,6 +2808,7 @@ "DE.Views.Toolbar.tipRedo": "Ponów", "DE.Views.Toolbar.tipSave": "Zapisz", "DE.Views.Toolbar.tipSaveCoauth": "Zapisz swoje zmiany, aby inni użytkownicy mogli je zobaczyć.", + "DE.Views.Toolbar.tipSelectAll": "Wybierz wsyzstko", "DE.Views.Toolbar.tipSendBackward": "Przenieś do tyłu", "DE.Views.Toolbar.tipSendForward": "Przenieś do przodu", "DE.Views.Toolbar.tipShowHiddenChars": "Znaki niedrukowane", diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index b00fb4b56..35fa2d730 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -15,7 +15,7 @@ "PE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "PE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.
Contacteu amb l'administrador del servidor de documents per a obtenir més informació.", "PE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per a desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "PE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.
Contacteu amb l'administrador del servidor de documents.", + "PE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.
Contacteu amb l'administrador del Servidor de Documents.", "PE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.", "PE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", diff --git a/apps/presentationeditor/main/locale/hy.json b/apps/presentationeditor/main/locale/hy.json index b39c5d744..6c96dd623 100644 --- a/apps/presentationeditor/main/locale/hy.json +++ b/apps/presentationeditor/main/locale/hy.json @@ -283,6 +283,7 @@ "Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ", "Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ", "Common.UI.Themes.txtThemeClassicLight": "Դասական լույս", + "Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն", "Common.UI.Themes.txtThemeDark": "Մուգ", "Common.UI.Themes.txtThemeLight": "Լույս", "Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը", @@ -298,6 +299,9 @@ "Common.UI.Window.yesButtonText": "Այո", "Common.Utils.Metric.txtCm": "սմ", "Common.Utils.Metric.txtPt": "կտ", + "Common.Utils.String.textAlt": "Alt ստեղն", + "Common.Utils.String.textCtrl": "Ctrl ստեղն", + "Common.Utils.String.textShift": "Shift ստեղն", "Common.Views.About.txtAddress": "հասցե՝", "Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ", "Common.Views.About.txtLicensor": "ԼԻՑԵՆԶԱՏՈՒ", @@ -548,6 +552,7 @@ "Common.Views.SearchPanel.textReplace": "Փոխարինել", "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", + "Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է", "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", "Common.Views.SearchPanel.textTooManyResults": "Այստեղ ցուցադրելու համար չափազանց շատ արդյունքներ կան", "Common.Views.SearchPanel.textWholeWords": "Միայն ամբողջական բառերը", @@ -1647,6 +1652,7 @@ "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Անտեսել թվերով բառերը", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Մակրոների կարգավորումներ", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Ցուցադրել «Կպցնել ընտրանքներ» կոճակները`բովանդակությունը կպցնելիս", + "PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Ցուցադրել այլ օգտատերերի կատարած փոփոխությունները", "PE.Views.FileMenuPanels.Settings.strStrict": "Խիստ", "PE.Views.FileMenuPanels.Settings.strTheme": "Ինտերֆեյսի ոճ", "PE.Views.FileMenuPanels.Settings.strUnit": "Չափման միավոր", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 4f96498e8..4b8fc3c64 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -408,7 +408,7 @@ "Common.Views.Header.tipViewSettings": "表示の設定", "Common.Views.Header.tipViewUsers": "ユーザーの表示とドキュメントのアクセス権の管理", "Common.Views.Header.txtAccessRights": "アクセス許可の変更", - "Common.Views.Header.txtRename": "名前の変更", + "Common.Views.Header.txtRename": "名前を変更する", "Common.Views.History.textCloseHistory": "履歴を閉じる", "Common.Views.History.textHide": "折りたたみ", "Common.Views.History.textHideAll": "変更の詳細を表示しない", @@ -1611,7 +1611,7 @@ "PE.Views.FileMenu.btnRightsCaption": "アクセス許可...", "PE.Views.FileMenu.btnSaveAsCaption": "名前を付けて保存", "PE.Views.FileMenu.btnSaveCaption": "保存する", - "PE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存...", + "PE.Views.FileMenu.btnSaveCopyAsCaption": "コピーを別名で保存する", "PE.Views.FileMenu.btnSettingsCaption": "詳細設定...", "PE.Views.FileMenu.btnToEditCaption": "プレゼンテーションの編集", "PE.Views.FileMenuPanels.CreateNew.txtBlank": "新しいプレゼンテーション", diff --git a/apps/presentationeditor/main/locale/ms.json b/apps/presentationeditor/main/locale/ms.json index 13d6dee57..afdfc8a93 100644 --- a/apps/presentationeditor/main/locale/ms.json +++ b/apps/presentationeditor/main/locale/ms.json @@ -263,6 +263,10 @@ "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan", "Common.UI.SearchBar.textFind": "Cari", + "Common.UI.SearchBar.tipCloseSearch": "Tutup carian", + "Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka tetapan lanjutan", + "Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum", "Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting", "Common.UI.SearchDialog.textMatchCase": "Sensitif huruf", "Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian", @@ -275,9 +279,11 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Gantikan Semua", "Common.UI.SynchronizeTip.textDontShow": "Jangan tunjukkan mesej ini semula", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah ditukar dengan pengguna yang lain.
Sila klik untuk simpan perubahan anda dan muat semula kemas kini.", + "Common.UI.ThemeColorPalette.textRecentColors": "Warna Terkini", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standard", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah", + "Common.UI.Themes.txtThemeContrastDark": "Kontras Gelap", "Common.UI.Themes.txtThemeDark": "Gelap", "Common.UI.Themes.txtThemeLight": "Ringan", "Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem", @@ -293,6 +299,9 @@ "Common.UI.Window.yesButtonText": "Ya", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textAlt": "Alt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Anjak", "Common.Views.About.txtAddress": "alamat", "Common.Views.About.txtLicensee": "LESENKAN", "Common.Views.About.txtLicensor": "PEMBERI LESEN", @@ -370,6 +379,7 @@ "Common.Views.ExternalDiagramEditor.textTitle": "Editor Carta", "Common.Views.ExternalOleEditor.textClose": "Tutup", "Common.Views.ExternalOleEditor.textSave": "Simpan & Keluar", + "Common.Views.ExternalOleEditor.textTitle": "Editor Hamparan", "Common.Views.Header.labelCoUsersDescr": "Pengguna yang mengedit fail:", "Common.Views.Header.textAddFavorite": "Tanda sebagai kegemaran", "Common.Views.Header.textAdvSettings": "Seting lanjutan", @@ -394,6 +404,7 @@ "Common.Views.Header.tipSearch": "Carian", "Common.Views.Header.tipUndo": "Buat semula", "Common.Views.Header.tipUndock": "Keluar dok ke tetingkap berasingan", + "Common.Views.Header.tipUsers": "Lihat Pengguna", "Common.Views.Header.tipViewSettings": "Lihat seting", "Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", @@ -446,6 +457,7 @@ "Common.Views.PluginDlg.textLoading": "Memuatkan", "Common.Views.Plugins.groupCaption": "Plug masuk", "Common.Views.Plugins.strPlugins": "Plug masuk", + "Common.Views.Plugins.textClosePanel": "Tutup pasang masuk", "Common.Views.Plugins.textLoading": "Memuatkan", "Common.Views.Plugins.textStart": "Mulakan", "Common.Views.Plugins.textStop": "Henti", @@ -531,11 +543,21 @@ "Common.Views.SaveAsDlg.textLoading": "Memuatkan", "Common.Views.SaveAsDlg.textTitle": "Folder untuk simpan", "Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf", + "Common.Views.SearchPanel.textCloseSearch": "Tutup carian", "Common.Views.SearchPanel.textFind": "Cari", "Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Sepadan menggunakan ungkapan biasa", + "Common.Views.SearchPanel.textNoMatches": "Tiada padanan", + "Common.Views.SearchPanel.textNoSearchResults": "Tiada carian keputusan", "Common.Views.SearchPanel.textReplace": "Gantikan", "Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua", + "Common.Views.SearchPanel.textReplaceWith": "Gantikan dengan", + "Common.Views.SearchPanel.textSearchHasStopped": "Carian telah dihentikan", + "Common.Views.SearchPanel.textSearchResults": "Keputusan carian: {0}/{1}", + "Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak keputusan untuk dipaparkan di sini", "Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja", + "Common.Views.SearchPanel.tipNextResult": "Keputusan seterusnya", + "Common.Views.SearchPanel.tipPreviousResult": "Keputusan sebelum", "Common.Views.SelectFileDlg.textLoading": "Memuatkan", "Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data", "Common.Views.SignDialog.textBold": "Tebal", @@ -691,8 +713,10 @@ "PE.Controllers.Main.textPaidFeature": "Ciri Berbayar", "PE.Controllers.Main.textReconnect": "Sambungan dipulihkan", "PE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua fail", + "PE.Controllers.Main.textRememberMacros": "Ingati pilihan saya untuk semua makro", "PE.Controllers.Main.textRenameError": "Nama pengguna tidak boleh kosong.", "PE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan bagi kerjasama", + "PE.Controllers.Main.textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?", "PE.Controllers.Main.textShape": "Bentuk", "PE.Controllers.Main.textStrict": "Mod tegas", "PE.Controllers.Main.textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan bersama.
Klik butang ‘Strict mode’ untuk menukar kepada mod pengeditan Bersama Tegas untuk mengedit fail tanpa gangguan pengguna lain dan menghantar perubahan anda hanya selepas anda menyimpannya. Anda boleh bertukar di antara mod-mod pengeditan Bersama menngunakan seting Lanjutan editor.", @@ -974,6 +998,8 @@ "PE.Controllers.Search.notcriticalErrorTitle": "Amaran", "PE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.", "PE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.", + "PE.Controllers.Search.textReplaceSuccess": "Carian telah dilakukan. Kejadian {0} telah digantikan", + "PE.Controllers.Search.warnReplaceString": "{0} bukan aksara khas yang sah untuk Gantikan Dengan kotak.", "PE.Controllers.Statusbar.textDisconnect": "Sambungan telah hilang
Sedang cuba untuk menyambung. Sila semak seting sambungan.", "PE.Controllers.Statusbar.zoomText": "Zum {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Fon yang anda akan simpan tidak tersedia pada peranti semasa.
Gaya teks akan dipaparkan menggunakan satu daripada fon system, fon yang disimpan akan digunakan apabila ia tersedia.
Adakah anda mahu teruskan?", @@ -1233,6 +1259,7 @@ "PE.Controllers.Toolbar.txtSymbol_beth": "Bidaan", "PE.Controllers.Toolbar.txtSymbol_bullet": "Bulet operator", "PE.Controllers.Toolbar.txtSymbol_cap": "Persilangan", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Punca Kuasa Tiga", "PE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis mendatar pertengahan baris", "PE.Controllers.Toolbar.txtSymbol_celsius": "Darjah Celsius", "PE.Controllers.Toolbar.txtSymbol_chi": "Ci", @@ -1283,6 +1310,7 @@ "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", "PE.Controllers.Toolbar.txtSymbol_plus": "Tambah", + "PE.Controllers.Toolbar.txtSymbol_pm": "Tambah Tolak", "PE.Controllers.Toolbar.txtSymbol_propto": "Berkadaran Dengan", "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", "PE.Controllers.Toolbar.txtSymbol_qdrt": "Punca kuasa empat", @@ -1321,6 +1349,7 @@ "PE.Views.Animation.strRewind": "Gulung semula", "PE.Views.Animation.strStart": "Mulakan", "PE.Views.Animation.strTrigger": "Pemangkin", + "PE.Views.Animation.textAutoPreview": "AutoPratonton", "PE.Views.Animation.textMoreEffects": "Tunjuk Kesan Selanjutnya", "PE.Views.Animation.textMoveEarlier": "Alih Lebih Awal", "PE.Views.Animation.textMoveLater": "Alih Kemudian", @@ -1331,6 +1360,7 @@ "PE.Views.Animation.textOnClickSequence": "Pada Klik Jujukan", "PE.Views.Animation.textStartAfterPrevious": "Selepas Sebelumnya", "PE.Views.Animation.textStartOnClick": "Pada Klik", + "PE.Views.Animation.textStartWithPrevious": "Dengan Sebelum", "PE.Views.Animation.textUntilEndOfSlide": "Hingga Ke Akhir Slaid", "PE.Views.Animation.textUntilNextClick": "Hingga Klik Seterusnya", "PE.Views.Animation.txtAddEffect": "Tambah animasi", @@ -1361,6 +1391,7 @@ "PE.Views.ChartSettingsAdvanced.textPosition": "Kedudukan", "PE.Views.ChartSettingsAdvanced.textSize": "Saiz", "PE.Views.ChartSettingsAdvanced.textTitle": "Carta – Seting Lanjutan", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas", "PE.Views.ChartSettingsAdvanced.textVertical": "Menegak", "PE.Views.ChartSettingsAdvanced.textWidth": "Lebar", "PE.Views.DateTimeDialog.confirmDefault": "Tetapkan format lalai bagi {0}: \"{1}\"", @@ -1483,6 +1514,7 @@ "PE.Views.DocumentHolder.txtDistribVert": "Menegak Tersendiri", "PE.Views.DocumentHolder.txtDuplicateSlide": "Slaid Pendua", "PE.Views.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear", + "PE.Views.DocumentHolder.txtFractionSkewed": "Tukar kepada pecahan terpencong", "PE.Views.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertindan", "PE.Views.DocumentHolder.txtGroup": "Kumpulan", "PE.Views.DocumentHolder.txtGroupCharOver": "Aksara melebihi teks", @@ -1597,6 +1629,7 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang mempunyai hak", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subjek", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tajuk", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Dimuat naik", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses", @@ -1619,6 +1652,7 @@ "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Abaikan perkataan dengan nombor", "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Seting Makro", "PE.Views.FileMenuPanels.Settings.strPasteButton": "Tunjukkan butang Pilihan Tampal di mana kandungan ditampalkan", + "PE.Views.FileMenuPanels.Settings.strShowOthersChanges": "Tunjukkan perubahan daripada pengguna lain", "PE.Views.FileMenuPanels.Settings.strStrict": "Tegas", "PE.Views.FileMenuPanels.Settings.strTheme": "Tema antara muka", "PE.Views.FileMenuPanels.Settings.strUnit": "Unit Pengukuran", @@ -1638,8 +1672,11 @@ "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Mod Cache Lalai", "PE.Views.FileMenuPanels.Settings.txtCm": "Sentimeter", "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Kerjasama", + "PE.Views.FileMenuPanels.Settings.txtEditingSaving": "Pengeditan dan menyimpan", + "PE.Views.FileMenuPanels.Settings.txtFastTip": "Pengeditan bersama masa nyata, Semua perubahan disimpan secara automatik.", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Muat kepada Slaid", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Muat kepada Kelebaran", + "PE.Views.FileMenuPanels.Settings.txtHieroglyphs": "Hieroglif", "PE.Views.FileMenuPanels.Settings.txtInch": "Inci", "PE.Views.FileMenuPanels.Settings.txtLast": "Lihat Terakhir", "PE.Views.FileMenuPanels.Settings.txtMac": "sebagai OS X", @@ -1651,9 +1688,13 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Menyemak Ejaan", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Nyahdayakan Semua", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Nyahdayakan semua makro tanpa pemberitahuan", + "PE.Views.FileMenuPanels.Settings.txtStrictTip": "Guna butang “Simpan” untuk segerakkan perubahan yang anda dan orang lain lakukan", + "PE.Views.FileMenuPanels.Settings.txtUseAltKey": "Guna kunci Alt untuk navigasi pengguna", + "PE.Views.FileMenuPanels.Settings.txtUseOptionKey": "Guna kunci Pilihan untuk navigasi antara muka pengguna menggunakan papan kekunci", "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Tunjuk Pemberitahuan", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Nyahdayakan semua makro dengan pemberitahuan", "PE.Views.FileMenuPanels.Settings.txtWin": "sebagai Windows", + "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Ruang kerja", "PE.Views.HeaderFooterDialog.applyAllText": "Guna kepada Semua", "PE.Views.HeaderFooterDialog.applyText": "Guna", "PE.Views.HeaderFooterDialog.diffLanguage": "Anda tidak boleh guna format tarikh dalam Bahasa berbeza dari slaid induk.
Untuk mengubah induk, klik 'Apply to all' berbanding 'Apply'", @@ -1729,6 +1770,7 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "Putaran", "PE.Views.ImageSettingsAdvanced.textSize": "Saiz", "PE.Views.ImageSettingsAdvanced.textTitle": "Imej – Seting Lanjutan", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas", "PE.Views.ImageSettingsAdvanced.textVertical": "Menegak", "PE.Views.ImageSettingsAdvanced.textVertically": "Menegal", "PE.Views.ImageSettingsAdvanced.textWidth": "Lebar", @@ -1741,10 +1783,12 @@ "PE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan", "PE.Views.LeftMenu.tipTitles": "Tajuk", "PE.Views.LeftMenu.txtDeveloper": "MOD PEMAJU", + "PE.Views.LeftMenu.txtEditor": "Editor Persembahan", "PE.Views.LeftMenu.txtLimit": "Had Akses", "PE.Views.LeftMenu.txtTrial": "MOD PERCUBAAN", "PE.Views.LeftMenu.txtTrialDev": "Mod Percubaan Pembina", "PE.Views.ParagraphSettings.strLineHeight": "Jarak Garis", + "PE.Views.ParagraphSettings.strParagraphSpacing": "Jarak Perenggan", "PE.Views.ParagraphSettings.strSpacingAfter": "Selepas", "PE.Views.ParagraphSettings.strSpacingBefore": "Sebelum", "PE.Views.ParagraphSettings.textAdvanced": "Tunjukkan seting lanjutan", @@ -1794,6 +1838,7 @@ "PE.Views.RightMenu.txtImageSettings": "Seting Imej", "PE.Views.RightMenu.txtParagraphSettings": "Seting perenggan", "PE.Views.RightMenu.txtShapeSettings": "Seting bentuk", + "PE.Views.RightMenu.txtSignatureSettings": "Tetapan tandatangan", "PE.Views.RightMenu.txtSlideSettings": "Seting Slaid", "PE.Views.RightMenu.txtTableSettings": "Seting Jadual", "PE.Views.RightMenu.txtTextArtSettings": "Seting Lukisan Teks", @@ -1896,6 +1941,7 @@ "PE.Views.ShapeSettingsAdvanced.textTextBox": "Kotak Teks", "PE.Views.ShapeSettingsAdvanced.textTitle": "Bentuk – Seting Lanjutan", "PE.Views.ShapeSettingsAdvanced.textTop": "Atas", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas", "PE.Views.ShapeSettingsAdvanced.textVertical": "Menegak", "PE.Views.ShapeSettingsAdvanced.textVertically": "Menegal", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Berat & Anak Panah", @@ -2065,6 +2111,7 @@ "PE.Views.TableSettingsAdvanced.textSize": "Saiz", "PE.Views.TableSettingsAdvanced.textTitle": "Jadual – Seting Lanjutan", "PE.Views.TableSettingsAdvanced.textTop": "Atas", + "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "Penjuru Kiri Atas", "PE.Views.TableSettingsAdvanced.textVertical": "Menegak", "PE.Views.TableSettingsAdvanced.textWidth": "Lebar", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Margin", @@ -2138,6 +2185,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Imej daripada Fail", "PE.Views.Toolbar.mniImageFromStorage": "Imej daripada Simpanan", "PE.Views.Toolbar.mniImageFromUrl": "Imej daripada URL", + "PE.Views.Toolbar.mniInsertSSE": "Masukkan Hamparan", "PE.Views.Toolbar.mniLowerCase": "huruf kecil", "PE.Views.Toolbar.mniSentenceCase": "Huruf besar pada permulaan ayat.", "PE.Views.Toolbar.mniSlideAdvanced": "Seting Lanjutan", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json index 413ae8551..7f35375ea 100644 --- a/apps/presentationeditor/main/locale/pl.json +++ b/apps/presentationeditor/main/locale/pl.json @@ -7,24 +7,52 @@ "Common.Controllers.ExternalDiagramEditor.warningTitle": "Ostrzeżenie", "Common.Controllers.ExternalOleEditor.textAnonymous": "Anonimowy", "Common.Controllers.ExternalOleEditor.textClose": "Zamknij", + "Common.Controllers.ExternalOleEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.", "Common.Controllers.ExternalOleEditor.warningTitle": "Ostrzeżenie", "Common.define.chartData.textArea": "Obszar", + "Common.define.chartData.textAreaStacked": "Skumulowany warstwowy", + "Common.define.chartData.textAreaStackedPer": "100% skumulowany warstwowy", "Common.define.chartData.textBar": "Pasek", + "Common.define.chartData.textBarNormal": "Kolumnowy grupowany", + "Common.define.chartData.textBarNormal3d": "Kolumnowy grupowany 3D", "Common.define.chartData.textBarNormal3dPerspective": "Kolumnowy 3D", + "Common.define.chartData.textBarStacked": "Skumulowany kolumnowy", "Common.define.chartData.textBarStacked3d": "Skumulowany kolumnowy 3D", + "Common.define.chartData.textBarStackedPer": "100% skumulowany kolumnowy", "Common.define.chartData.textBarStackedPer3d": "100% skumulowany kolumnowy 3D", "Common.define.chartData.textCharts": "Wykresy", "Common.define.chartData.textColumn": "Kolumna", + "Common.define.chartData.textCombo": "Kombi", + "Common.define.chartData.textComboAreaBar": "Skumulowany warstwowy - kolumnowy grupowany", + "Common.define.chartData.textComboBarLine": "Kolumnowy grupowany - liniowy", + "Common.define.chartData.textComboBarLineSecondary": "Kolumnowy grupowany - liniowy na osi pomocniczej", + "Common.define.chartData.textComboCustom": "Niestandardowy złożony", + "Common.define.chartData.textDoughnut": "Pierścieniowy", + "Common.define.chartData.textHBarNormal": "Słupkowy grupowany", + "Common.define.chartData.textHBarNormal3d": "Słupkowy grupowany 3D", + "Common.define.chartData.textHBarStacked": "Skumulowany słupkowy", "Common.define.chartData.textHBarStacked3d": "Skumulowany słupkowy 3D", + "Common.define.chartData.textHBarStackedPer": "100% skumulowany słupkowy", "Common.define.chartData.textHBarStackedPer3d": "100% skumulowany słupkowy 3D", "Common.define.chartData.textLine": "Liniowy", "Common.define.chartData.textLine3d": "Liniowy 3D", + "Common.define.chartData.textLineMarker": "Liniowy ze znacznikami", + "Common.define.chartData.textLineStacked": "Skumulowany liniowy", + "Common.define.chartData.textLineStackedMarker": "Skumulowany liniowy ze znacznikami", + "Common.define.chartData.textLineStackedPer": "100% skumulowany liniowy", + "Common.define.chartData.textLineStackedPerMarker": "100% skumulowany liniowy ze znacznikami", "Common.define.chartData.textPie": "Kołowe", "Common.define.chartData.textPie3d": "Kołowy 3D", "Common.define.chartData.textPoint": "XY (Punktowy)", + "Common.define.chartData.textScatter": "Punktowy", + "Common.define.chartData.textScatterLine": "Punktowy z prostymi liniami", + "Common.define.chartData.textScatterLineMarker": "Punktowy z prostymi liniami i znacznikami", + "Common.define.chartData.textScatterSmooth": "Punktowy z wygładzonymi liniami", + "Common.define.chartData.textScatterSmoothMarker": "Punktowy z wygładzonymi liniami i znacznikami", "Common.define.chartData.textStock": "Zbiory", "Common.define.chartData.textSurface": "Powierzchnia", "Common.define.effectData.textAcross": "Wzdłóż", + "Common.define.effectData.textBasic": "Podstawowy", "Common.define.effectData.textCircle": "Okrąg", "Common.define.effectData.textCollapse": "Zwiń", "Common.define.effectData.textCompress": "Skompresuj", @@ -32,8 +60,11 @@ "Common.define.effectData.textContrastingColor": "Kontrastujący kolor", "Common.define.effectData.textCustomPath": "Własna ścieżka", "Common.define.effectData.textDarken": "Przyciemnij", + "Common.define.effectData.textDiamond": "Romb", + "Common.define.effectData.textDown": "W dół", "Common.define.effectData.textExciting": "Ekscytujące", "Common.define.effectData.textExpand": "Rozwiń", + "Common.define.effectData.textFade": "Blaknąć", "Common.define.effectData.textFillColor": "Kolor wypełnienia", "Common.define.effectData.textFlip": "Przerzuć", "Common.define.effectData.textFlyIn": "Wleć", @@ -47,13 +78,42 @@ "Common.define.effectData.textHeartbeat": "Bicie serca", "Common.define.effectData.textHexagon": "Sześciokąt", "Common.define.effectData.textHorizontal": "Poziomy", + "Common.define.effectData.textHorizontalIn": "W poziomie do środka", + "Common.define.effectData.textHorizontalOut": "W poziomie na zewnątrz", + "Common.define.effectData.textIn": "w", "Common.define.effectData.textLeft": "Lewy", "Common.define.effectData.textLighten": "Rozjaśnij", + "Common.define.effectData.textLines": "Linie", + "Common.define.effectData.textModerate": "Umiarkowany", "Common.define.effectData.textOctagon": "Ośmiokąt", + "Common.define.effectData.textOut": "Wyjście", + "Common.define.effectData.textParallelogram": "Równoległobok", + "Common.define.effectData.textPentagon": "Pięciokąt", + "Common.define.effectData.textPlus": "Plus", + "Common.define.effectData.textRight": "Do Prawej", + "Common.define.effectData.textRightTriangle": "Trójkąt równoramienny", + "Common.define.effectData.textShape": "Kształt", + "Common.define.effectData.textShapes": "Kształty", + "Common.define.effectData.textSpecial": "Specialny", + "Common.define.effectData.textSplit": "Podziel", + "Common.define.effectData.textSquare": "Kwadratowy", + "Common.define.effectData.textStretch": "Rozciągnij", + "Common.define.effectData.textTeardrop": "Łza", + "Common.define.effectData.textTrapezoid": "Trapez", "Common.define.effectData.textUnderline": "Podkreślenie", + "Common.define.effectData.textUp": "W górę", "Common.define.effectData.textVertical": "Pionowy", + "Common.define.effectData.textVerticalIn": "W pionie", + "Common.define.effectData.textVerticalOut": "W pionie na zewnątrz", + "Common.define.effectData.textWave": "Fala", + "Common.define.effectData.textWedge": "Zaklinuj", "Common.define.effectData.textWheel": "Koło", + "Common.define.effectData.textWipe": "Wytrzyj", + "Common.define.effectData.textZoom": "Powiększenie", + "Common.Translation.textMoreButton": "Więcej", + "Common.Translation.warnFileLocked": "Plik jest edytowany w innej aplikacji. Możesz kontynuować edycję i zapisać go jako kopię.", "Common.Translation.warnFileLockedBtnEdit": "Utwórz kopię", + "Common.Translation.warnFileLockedBtnView": "Otwarte do oglądania", "Common.UI.ButtonColored.textAutoColor": "Automatyczny", "Common.UI.ButtonColored.textNewColor": "Nowy niestandardowy kolor", "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", @@ -66,8 +126,11 @@ "Common.UI.ExtendedColorDialog.textRGBErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość liczbową w zakresie od 0 do 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez koloru", "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Ukryj hasło", + "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Pokaż hasło", "Common.UI.SearchBar.textFind": "Znajdź", + "Common.UI.SearchBar.tipCloseSearch": "Zamknij wyszukiwanie", "Common.UI.SearchBar.tipNextResult": "Następny wynik", + "Common.UI.SearchBar.tipPreviousResult": "Poprzedni wynik", "Common.UI.SearchDialog.textHighlight": "Podświetl wyniki", "Common.UI.SearchDialog.textMatchCase": "Rozróżniana wielkość liter", "Common.UI.SearchDialog.textReplaceDef": "Wprowadź tekst zastępczy", @@ -80,10 +143,12 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Zamień wszystko", "Common.UI.SynchronizeTip.textDontShow": "Nie pokazuj tej wiadomości ponownie", "Common.UI.SynchronizeTip.textSynchronize": "Dokument został zmieniony przez innego użytkownika.
Proszę kliknij, aby zapisać swoje zmiany i ponownie załadować zmiany.", + "Common.UI.ThemeColorPalette.textRecentColors": "Ostatnie kolory", "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", "Common.UI.Themes.txtThemeClassicLight": "Klasyczny Jasny", "Common.UI.Themes.txtThemeDark": "Ciemny", + "Common.UI.Themes.txtThemeLight": "Jasny", "Common.UI.Window.cancelButtonText": "Anulować", "Common.UI.Window.closeButtonText": "Zamknąć", "Common.UI.Window.noButtonText": "Nie", @@ -98,6 +163,7 @@ "Common.Utils.Metric.txtPt": "pt", "Common.Utils.String.textAlt": "Alt", "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Shift", "Common.Views.About.txtAddress": "adres:", "Common.Views.About.txtLicensee": "LICENCJOBIORCA", "Common.Views.About.txtLicensor": "LICENCJODAWCA", @@ -107,20 +173,31 @@ "Common.Views.About.txtVersion": "Wersja", "Common.Views.AutoCorrectDialog.textAdd": "Dodaj", "Common.Views.AutoCorrectDialog.textApplyText": "Zastosuj Podczas Pisania", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorekta tekstu", "Common.Views.AutoCorrectDialog.textAutoFormat": "Formatuj automatycznie podczas pisania", "Common.Views.AutoCorrectDialog.textBulleted": "Listy punktowane automatycznie", "Common.Views.AutoCorrectDialog.textBy": "Na", "Common.Views.AutoCorrectDialog.textDelete": "Usuń", "Common.Views.AutoCorrectDialog.textFLSentence": "Zamień pierwszą literę w zdaniach na wielką", + "Common.Views.AutoCorrectDialog.textHyperlink": "Ścieżki internetowe i sieciowe z hiperłączami", + "Common.Views.AutoCorrectDialog.textHyphens": "Łączniki (--) na pauzy (—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "Autokorekta matematyczna", "Common.Views.AutoCorrectDialog.textNumbered": "Listy numerowane automatycznie", + "Common.Views.AutoCorrectDialog.textQuotes": "Cudzysłowy \"proste\" na \"drukarskie\"", "Common.Views.AutoCorrectDialog.textRecognized": "Rozpoznawane funkcje", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Następujące wyrażenia są rozpoznawanymi wyrażeniami matematycznymi. Nie będą one automatycznie pisane kursywą.", "Common.Views.AutoCorrectDialog.textReplace": "Zamień", + "Common.Views.AutoCorrectDialog.textReplaceText": "Zamień podczas pisania", + "Common.Views.AutoCorrectDialog.textReplaceType": "Zamień tekst podczas pisania", + "Common.Views.AutoCorrectDialog.textReset": "Resetuj", "Common.Views.AutoCorrectDialog.textResetAll": "Przywróć ustawienia domyślne", + "Common.Views.AutoCorrectDialog.textRestore": "Przywrócić", "Common.Views.AutoCorrectDialog.textTitle": "Autokorekta", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Rozpoznawane funkcje muszą zawierać tylko litery od A do Z, wielkie lub małe.", "Common.Views.AutoCorrectDialog.textWarnResetRec": "Każde dodane wyrażenie zostanie usunięte, a te, które były usunięte zostaną przywrócone. Czy chcesz kontynuować?", + "Common.Views.AutoCorrectDialog.warnReplace": "Wpis autokorekty dla %1 już istnieje. Czy chcesz go wymienić?", "Common.Views.AutoCorrectDialog.warnReset": "Wszelkie dodane autokorekty zostaną usunięte, a dla zmienionych zostaną przywrócone oryginalne wartości. Czy chcesz kontynuować?", + "Common.Views.AutoCorrectDialog.warnRestore": "Wpis autokorekty dla %1 zostanie zresetowany do pierwotnej wartości. Czy chcesz kontynuować?", "Common.Views.Chat.textSend": "Wyslać", "Common.Views.Comments.mniAuthorAsc": "Autor od A do Z", "Common.Views.Comments.mniAuthorDesc": "Autor od Z do A", @@ -145,6 +222,9 @@ "Common.Views.Comments.textReply": "Odpowiedzieć", "Common.Views.Comments.textResolve": "Rozwiąż", "Common.Views.Comments.textResolved": "Rozwiązany", + "Common.Views.Comments.textSort": "Sortuj komentarze", + "Common.Views.Comments.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza", + "Common.Views.Comments.txtEmpty": "Nie ma komentarzy w tym dokumencie.", "Common.Views.CopyWarningDialog.textDontShow": "Nie pokazuj tej wiadomości ponownie", "Common.Views.CopyWarningDialog.textMsg": "Kopiowanie, wycinanie i wklejanie za pomocą przycisków edytora i działań menu kontekstowego zostanie przeprowadzone tylko w tej karcie edytora.

Aby skopiować lub wkleić do lub z aplikacji poza kartą edytora, użyj następujących kombinacji klawiszy:", "Common.Views.CopyWarningDialog.textTitle": "Kopiuj, Wytnij i Wklej", @@ -157,32 +237,43 @@ "Common.Views.ExternalDiagramEditor.textSave": "Zapisz i wyjdź", "Common.Views.ExternalDiagramEditor.textTitle": "Edytor wykresu", "Common.Views.ExternalOleEditor.textClose": "Zamknij", + "Common.Views.ExternalOleEditor.textSave": "Zapisz i wyjdź", + "Common.Views.ExternalOleEditor.textTitle": "Edytor arkusza kalkulacyjnego", "Common.Views.Header.labelCoUsersDescr": "Dokument jest obecnie edytowany przez kilku użytkowników.", + "Common.Views.Header.textAddFavorite": "Dodaj do ulubionych", "Common.Views.Header.textAdvSettings": "Ustawienia zaawansowane", "Common.Views.Header.textBack": "Przejdź do Dokumentów", "Common.Views.Header.textCompactView": "Ukryj pasek narzędzi", "Common.Views.Header.textHideLines": "Ukryj linijki", "Common.Views.Header.textHideNotes": "Ukryj notatki", "Common.Views.Header.textHideStatusBar": "Ukryj pasek stanu", + "Common.Views.Header.textRemoveFavorite": "Usuń z ulubionych", "Common.Views.Header.textSaveBegin": "Zapisywanie ...", "Common.Views.Header.textSaveChanged": "Zmodyfikowano", "Common.Views.Header.textSaveEnd": "Wszystkie zmiany zapisane", "Common.Views.Header.textSaveExpander": "Wszystkie zmiany zapisane", + "Common.Views.Header.textShare": "Udostępnij", + "Common.Views.Header.textZoom": "Powiększenie", "Common.Views.Header.tipAccessRights": "Zarządzaj prawami dostępu do dokumentu", "Common.Views.Header.tipDownload": "Pobierz plik", "Common.Views.Header.tipGoEdit": "Edytuj bieżący plik", "Common.Views.Header.tipPrint": "Drukuj plik", "Common.Views.Header.tipRedo": "Wykonaj ponownie", "Common.Views.Header.tipSave": "Zapisz", + "Common.Views.Header.tipSearch": "Szukaj", "Common.Views.Header.tipUndo": "Cofnij", + "Common.Views.Header.tipUndock": "Odepnij w osobnym oknie", "Common.Views.Header.tipUsers": "Zobacz użytkowników", + "Common.Views.Header.tipViewSettings": "Wyświetl ustawienia", "Common.Views.Header.tipViewUsers": "Wyświetl użytkowników i zarządzaj prawami dostępu do dokumentu", "Common.Views.Header.txtAccessRights": "Zmień prawa dostępu", "Common.Views.Header.txtRename": "Zmień nazwę", "Common.Views.History.textCloseHistory": "Zamknij Historię", "Common.Views.History.textHide": "Zwiń", "Common.Views.History.textHideAll": "Ukryj szczegółowe zmiany", + "Common.Views.History.textRestore": "Przywrócić", "Common.Views.History.textShow": "Rozwiń", + "Common.Views.History.textShowAll": "Pokaż szczegółowe zmiany", "Common.Views.History.textVer": "wer.", "Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:", "Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane", @@ -200,19 +291,27 @@ "Common.Views.ListSettingsDialog.tipChange": "Zmień znacznik", "Common.Views.ListSettingsDialog.txtBullet": "Znak punktora", "Common.Views.ListSettingsDialog.txtColor": "Kolor", + "Common.Views.ListSettingsDialog.txtNewBullet": "Nowy znacznik", "Common.Views.ListSettingsDialog.txtNone": "Brak", "Common.Views.ListSettingsDialog.txtOfText": "% tekstu", + "Common.Views.ListSettingsDialog.txtSize": "Rozmiar", + "Common.Views.ListSettingsDialog.txtStart": "Zacznij w", "Common.Views.ListSettingsDialog.txtSymbol": "Symbole", + "Common.Views.ListSettingsDialog.txtTitle": "Ustawienia listy", "Common.Views.ListSettingsDialog.txtType": "Rodzaj", "Common.Views.OpenDialog.closeButtonText": "Zamknij Plik", "Common.Views.OpenDialog.txtEncoding": "Kodowanie", "Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.", "Common.Views.OpenDialog.txtOpenFile": "Wprowadź hasło, aby otworzyć plik", "Common.Views.OpenDialog.txtPassword": "Hasło", + "Common.Views.OpenDialog.txtProtected": "Po wprowadzeniu hasła i otwarciu pliku bieżące hasło do pliku zostanie zresetowane", "Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji", "Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony", + "Common.Views.PasswordDialog.txtDescription": "Ustaw hasło aby zabezpieczyć ten dokument", "Common.Views.PasswordDialog.txtIncorrectPwd": "Hasło potwierdzające nie jest identyczne", "Common.Views.PasswordDialog.txtPassword": "Hasło", + "Common.Views.PasswordDialog.txtRepeat": "Powtórz hasło", + "Common.Views.PasswordDialog.txtTitle": "Ustaw hasło", "Common.Views.PasswordDialog.txtWarning": "Uwaga: Jeśli zapomnisz lub zgubisz hasło, nie będzie możliwości odzyskania go. Zapisz go i nikomu nie udostępniaj.", "Common.Views.PluginDlg.textLoading": "Ładowanie", "Common.Views.Plugins.groupCaption": "Wtyczki", @@ -228,17 +327,46 @@ "Common.Views.Protection.txtDeletePwd": "Usuń hasło", "Common.Views.Protection.txtEncrypt": "Szyfruj", "Common.Views.Protection.txtInvisibleSignature": "Dodaj podpis cyfrowy", + "Common.Views.Protection.txtSignature": "Sygnatura", "Common.Views.Protection.txtSignatureLine": "Dodaj linię do podpisu", "Common.Views.RenameDialog.textName": "Nazwa pliku", "Common.Views.RenameDialog.txtInvalidName": "Nazwa pliku nie może zawierać żadnego z następujących znaków:", + "Common.Views.ReviewChanges.hintNext": "Do następnej zmiany", + "Common.Views.ReviewChanges.hintPrev": "Do poprzedniej zmiany", "Common.Views.ReviewChanges.strFast": "Szybko", + "Common.Views.ReviewChanges.strFastDesc": "Współedycja w czasie rzeczywistym. Wszystkie zmiany są zapisywane automatycznie.", + "Common.Views.ReviewChanges.strStrict": "Ścisły", + "Common.Views.ReviewChanges.strStrictDesc": "Użyj przycisku „Zapisz”, aby zsynchronizować zmiany wprowadzane przez Ciebie i innych.", "Common.Views.ReviewChanges.tipAcceptCurrent": "Zaakceptuj bieżącą zmianę", + "Common.Views.ReviewChanges.tipCoAuthMode": "Ustaw tryb współedycji", + "Common.Views.ReviewChanges.tipCommentRem": "Usuń komentarze", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Usuń aktualne komentarze", + "Common.Views.ReviewChanges.tipCommentResolve": "Rozwiąż komentarze", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Rozwiąż bieżące komentarze", + "Common.Views.ReviewChanges.tipHistory": "Pokaż historię wersji", + "Common.Views.ReviewChanges.tipRejectCurrent": "Odrzuć bieżącą zmianę", + "Common.Views.ReviewChanges.tipReview": "Śledzenie zmian", + "Common.Views.ReviewChanges.tipReviewView": "Wybierz tryb, w którym mają być wyświetlane zmiany", + "Common.Views.ReviewChanges.tipSetDocLang": "Ustaw język dokumentu", + "Common.Views.ReviewChanges.tipSetSpelling": "Sprawdzanie pisowni", + "Common.Views.ReviewChanges.tipSharing": "Zarządzaj prawami dostępu do dokumentu", "Common.Views.ReviewChanges.txtAccept": "Akceptuj", "Common.Views.ReviewChanges.txtAcceptAll": "Zaakceptuj wszystkie zmiany", "Common.Views.ReviewChanges.txtAcceptChanges": "Zaakceptuj zmiany", "Common.Views.ReviewChanges.txtAcceptCurrent": "Zaakceptuj Bieżącą Zmianę", "Common.Views.ReviewChanges.txtChat": "Czat", "Common.Views.ReviewChanges.txtClose": "Zamknij", + "Common.Views.ReviewChanges.txtCoAuthMode": "Tryb współtworzenia", + "Common.Views.ReviewChanges.txtCommentRemAll": "Usuń wszystkie komentarze", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Usuń aktualne komentarze", + "Common.Views.ReviewChanges.txtCommentRemMy": "Usuń moje komentarze", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Usuń moje bieżące komentarze", + "Common.Views.ReviewChanges.txtCommentRemove": "Usuń", + "Common.Views.ReviewChanges.txtCommentResolve": "Rozwiąż", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Rozwiąż wszystkie komentarze", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Rozwiąż bieżące komentarze", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Rozwiąż moje komentarze", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Rozwiąż moje bieżące komentarze", "Common.Views.ReviewChanges.txtDocLang": "Język", "Common.Views.ReviewChanges.txtFinal": "Wszystkie zmiany zaakceptowane (Podgląd)", "Common.Views.ReviewChanges.txtFinalCap": "Ostateczny", @@ -248,33 +376,68 @@ "Common.Views.ReviewChanges.txtNext": "Dalej", "Common.Views.ReviewChanges.txtOriginal": "Wszystkie zmiany odrzucone (Podgląd)", "Common.Views.ReviewChanges.txtOriginalCap": "Oryginał", + "Common.Views.ReviewChanges.txtPrev": "Poprzedni", + "Common.Views.ReviewChanges.txtReject": "Odrzucać", + "Common.Views.ReviewChanges.txtRejectAll": "Odrzuć wszystkie zmiany", + "Common.Views.ReviewChanges.txtRejectChanges": "Odrzuć zmiany", + "Common.Views.ReviewChanges.txtRejectCurrent": "Odrzuć bieżącą zmianę", + "Common.Views.ReviewChanges.txtSharing": "Dostęp współdzielony", + "Common.Views.ReviewChanges.txtSpelling": "Sprawdzanie pisowni", + "Common.Views.ReviewChanges.txtTurnon": "Śledzenie zmian", + "Common.Views.ReviewChanges.txtView": "Tryb wyświetlania", "Common.Views.ReviewPopover.textAdd": "Dodaj", "Common.Views.ReviewPopover.textAddReply": "Dodaj odpowiedź", "Common.Views.ReviewPopover.textCancel": "Anuluj", "Common.Views.ReviewPopover.textClose": "Zamknij", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+wzmianka zapewni użytkownikowi dostęp do pliku i wyśle e-maila", "Common.Views.ReviewPopover.textMentionNotify": "+wzmianka powiadomi użytkownika e-mailem", "Common.Views.ReviewPopover.textOpenAgain": "Otwórz ponownie", + "Common.Views.ReviewPopover.textReply": "Odpowiedzieć", + "Common.Views.ReviewPopover.textResolve": "Rozwiąż", + "Common.Views.ReviewPopover.textViewResolved": "Nie masz uprawnień do ponownego otwarcia komentarza", "Common.Views.ReviewPopover.txtDeleteTip": "Usuń", "Common.Views.ReviewPopover.txtEditTip": "Edytuj", "Common.Views.SaveAsDlg.textLoading": "Ładowanie", "Common.Views.SaveAsDlg.textTitle": "Folder do zapisu", "Common.Views.SearchPanel.textCaseSensitive": "Rozróżniana wielkość liter", + "Common.Views.SearchPanel.textCloseSearch": "Zamknij wyszukiwanie", "Common.Views.SearchPanel.textFind": "Znajdź", "Common.Views.SearchPanel.textFindAndReplace": "Znajdź i zastąp", "Common.Views.SearchPanel.textNoMatches": "Brak dopasowań", "Common.Views.SearchPanel.textNoSearchResults": "Brak wyników wyszukiwania", + "Common.Views.SearchPanel.textReplace": "Zamienić", + "Common.Views.SearchPanel.textReplaceAll": "Zamień wszystko", + "Common.Views.SearchPanel.textTooManyResults": "Jest zbyt dużo wyników, aby je tutaj wyświetlić", + "Common.Views.SearchPanel.textWholeWords": "Tylko całe słowa", "Common.Views.SearchPanel.tipNextResult": "Następny wynik", + "Common.Views.SearchPanel.tipPreviousResult": "Poprzedni wynik", "Common.Views.SelectFileDlg.textLoading": "Ładowanie", + "Common.Views.SelectFileDlg.textTitle": "Wybierz źródło danych", "Common.Views.SignDialog.textBold": "Pogrubienie", "Common.Views.SignDialog.textCertificate": "Certyfikat", "Common.Views.SignDialog.textChange": "Zmień", + "Common.Views.SignDialog.textInputName": "Wpisz imię i nazwisko osoby podpisującej", "Common.Views.SignDialog.textItalic": "Kursywa", + "Common.Views.SignDialog.textNameError": "Imię i nazwisko osoby podpisującej nie może być puste.", + "Common.Views.SignDialog.textPurpose": "Cel podpisywania tego dokumentu", + "Common.Views.SignDialog.textSelect": "Wybierz", + "Common.Views.SignDialog.textSelectImage": "Wybierz obraz", + "Common.Views.SignDialog.textSignature": "Jak wygląda podpis:", + "Common.Views.SignDialog.textTitle": "Podpisz dokument", + "Common.Views.SignDialog.textUseImage": "lub kliknij \"Wybierz obraz\", aby użyć obrazu jako podpisu", + "Common.Views.SignDialog.textValid": "Ważny od %1 do %2", "Common.Views.SignDialog.tipFontName": "Nazwa czcionki", "Common.Views.SignDialog.tipFontSize": "Rozmiar czcionki", "Common.Views.SignSettingsDialog.textAllowComment": "Zezwól podpisującemu na dodanie komentarza w oknie podpisu", + "Common.Views.SignSettingsDialog.textInfo": "Szczegóły osoby podpisującej", "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", "Common.Views.SignSettingsDialog.textInfoName": "Nazwa", + "Common.Views.SignSettingsDialog.textInfoTitle": "Stanowisko osoby podpisującej", + "Common.Views.SignSettingsDialog.textInstructions": "Instrukcje dla osoby podpisującej", + "Common.Views.SignSettingsDialog.textShowDate": "Pokaż datę wykonania podpisu", + "Common.Views.SignSettingsDialog.textTitle": "Konfiguracja podpisu", + "Common.Views.SignSettingsDialog.txtEmpty": "To pole jest wymagane", "Common.Views.SymbolTableDialog.textCharacter": "Znak", "Common.Views.SymbolTableDialog.textCode": "Nazwa Unicode", "Common.Views.SymbolTableDialog.textCopyright": "Znak zastrzeżenia prawa autorskiego", @@ -296,6 +459,7 @@ "Common.Views.SymbolTableDialog.textSCQuote": "Pojedynczy cudzysłów zamykający", "Common.Views.SymbolTableDialog.textSection": "Sekcja", "Common.Views.SymbolTableDialog.textShortcut": "Klawisz skrótu", + "Common.Views.SymbolTableDialog.textSHyphen": "Łącznik miękki", "Common.Views.SymbolTableDialog.textSOQuote": "Pojedynczy cudzysłów otwierający", "Common.Views.SymbolTableDialog.textSpecial": "Znaki specjalne", "Common.Views.SymbolTableDialog.textSymbols": "Symbole", @@ -310,7 +474,9 @@ "PE.Controllers.LeftMenu.requestEditRightsText": "Żądanie praw do edycji...", "PE.Controllers.LeftMenu.textLoadHistory": "Wczytywanie historii wersji...", "PE.Controllers.LeftMenu.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "PE.Controllers.LeftMenu.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.", "PE.Controllers.LeftMenu.textReplaceSuccess": "Wyszukiwanie zakończone. Zastąpiono {0}", + "PE.Controllers.LeftMenu.txtUntitled": "Bez Nazwy", "PE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", "PE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", "PE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", @@ -322,17 +488,21 @@ "PE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
Proszę skontaktować się z administratorem serwera dokumentów.", "PE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.", + "PE.Controllers.Main.errorComboSeries": "Aby utworzyć wykres złożony, wybierz co najmniej dwie serie danych.", "PE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.
Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.", "PE.Controllers.Main.errorDatabaseConnection": "Błąd zewnętrzny.
Błąd połączenia z bazą danych. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "PE.Controllers.Main.errorDataEncrypted": "Otrzymano zaszyfrowane zmiany, nie można ich odszyfrować.", "PE.Controllers.Main.errorDataRange": "Błędny zakres danych.", "PE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", "PE.Controllers.Main.errorEditingDownloadas": "Wystąpił błąd podczas pracy z dokumentem.
Użyj opcji \"Pobierz jako...\", aby zapisać kopię zapasową pliku na dysku twardym komputera.", "PE.Controllers.Main.errorEditingSaveas": "Wystąpił błąd podczas pracy z dokumentem.
Użyj opcji \"Zapisz kopię jako...\", aby zapisać kopię zapasową pliku na dysku twardym komputera.", "PE.Controllers.Main.errorEmailClient": "Nie znaleziono klienta poczty email.", "PE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", + "PE.Controllers.Main.errorFileSizeExceed": "Rozmiar pliku przekracza ustalony limit dla twojego serwera.
Proszę skontaktować z administratorem twojego Serwera Dokumentów w celu uzyskania szczegółowych informacji.", "PE.Controllers.Main.errorForceSave": "Wystąpił błąd podczas zapisywania pliku. Użyj opcji \"Pobierz jako\", aby zapisać plik na dysku twardym komputera lub spróbuj zapisać plik ponownie poźniej.", "PE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", "PE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", + "PE.Controllers.Main.errorLoadingFont": "Czcionki nie zostały załadowane.
Skontaktuj się z administratorem Serwera Dokumentów.", "PE.Controllers.Main.errorProcessSaveResult": "Zapisywanie nie powiodło się.", "PE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", "PE.Controllers.Main.errorSessionAbsolute": "Sesja edycji dokumentu wygasła. Proszę ponownie załadować stronę.", @@ -343,6 +513,7 @@ "PE.Controllers.Main.errorToken": "Token bezpieczeństwa dokumentu jest nieprawidłowo uformowany.
Prosimy o kontakt z administratorem serwera dokumentów.", "PE.Controllers.Main.errorTokenExpire": "Token zabezpieczeń dokumentu wygasł.
Prosimy o kontakt z administratorem serwera dokumentów.", "PE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", + "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Połączenie z internetem zostało odzyskane, a wersja pliku uległa zmianie.
Zanim będziesz mógł kontynuować pracę, musisz pobrać plik albo skopiować jego zawartość, aby mieć pewność, że nic nie zostało utracone, a następnie odświeżyć stronę.", "PE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", "PE.Controllers.Main.errorUsersExceed": "Przekroczono liczbę dozwolonych użytkowników określonych przez plan cenowy wersji", "PE.Controllers.Main.errorViewerDisconnect": "Połączenie zostało utracone. Nadal możesz przeglądać dokument, ale nie będziesz mógł pobrać ani wydrukować dokumentu do momentu przywrócenia połączenia.", @@ -370,8 +541,10 @@ "PE.Controllers.Main.requestEditFailedMessageText": "Ktoś edytuje teraz tą prezentację. Proszę spróbuj później.", "PE.Controllers.Main.requestEditFailedTitleText": "Odmowa dostępu", "PE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliku", + "PE.Controllers.Main.saveErrorTextDesktop": "Nie można zapisać lub utworzyć tego pliku.
Możliwe przyczyny to:
1. Plik jest tylko do odczytu.
2. Plik jest edytowany przez innych użytkowników.
3. Dysk jest pełny lub uszkodzony.", "PE.Controllers.Main.saveTextText": "Zapisywanie prezentacji...", "PE.Controllers.Main.saveTitleText": "Zapisywanie prezentacji", + "PE.Controllers.Main.scriptLoadError": "Połączenie jest zbyt wolne, niektóre komponenty mogły nie zostać załadowane. Proszę odświeżyć stronę.", "PE.Controllers.Main.splitDividerErrorText": "Liczba wierszy musi być dzielnikiem %1.", "PE.Controllers.Main.splitMaxColsErrorText": "Liczba kolumn musi być mniejsza niż %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Liczba wierszy musi być mniejsza niż %1.", @@ -382,13 +555,19 @@ "PE.Controllers.Main.textClose": "Zamknij", "PE.Controllers.Main.textCloseTip": "Kliknij, żeby zamknąć wskazówkę", "PE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "PE.Controllers.Main.textConvertEquation": "To równanie zostało utworzone za pomocą starej wersji edytora równań, która nie jest już obsługiwana. Aby je edytować, przekonwertuj równanie na format Office Math ML.
Przekonwertować teraz?", + "PE.Controllers.Main.textCustomLoader": "Należy pamiętać, że zgodnie z warunkami licencji nie jesteś uprawniony do zmiany ładowania.
W celu uzyskania wyceny prosimy o kontakt z naszym Działem Sprzedaży.", "PE.Controllers.Main.textDisconnect": "Połączenie zostało utracone", "PE.Controllers.Main.textGuest": "Gość", + "PE.Controllers.Main.textHasMacros": "Plik zawiera makra automatyczne.
Czy chcesz uruchomić te makra?", "PE.Controllers.Main.textLearnMore": "Dowiedz się więcej", "PE.Controllers.Main.textLoadingDocument": "Ładowanie prezentacji", + "PE.Controllers.Main.textLongName": "Wpisz nazwę krótszą niż 128 znaków.", "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", "PE.Controllers.Main.textPaidFeature": "Płatna funkcja", "PE.Controllers.Main.textReconnect": "Połączenie zostało przywrócone", + "PE.Controllers.Main.textRemember": "Zapamiętaj mój wybór dla wszystkich plików", + "PE.Controllers.Main.textRenameError": "Nazwa użytkownika nie może być pusta.", "PE.Controllers.Main.textRenameLabel": "Wpisz nazwę, która ma być używana do współpracy", "PE.Controllers.Main.textShape": "Kształt", "PE.Controllers.Main.textStrict": "Tryb ścisły", @@ -422,40 +601,140 @@ "PE.Controllers.Main.txtPicture": "Obraz", "PE.Controllers.Main.txtRectangles": "Prostokąty", "PE.Controllers.Main.txtSeries": "Serie", + "PE.Controllers.Main.txtShape_accentCallout1": "Objaśnienie: linia z paskiem wyróżniającym", "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Przycisk wstecz lub wcześniej", "PE.Controllers.Main.txtShape_actionButtonBeginning": "Przycisk Rozpoczęcia", "PE.Controllers.Main.txtShape_actionButtonBlank": "Pusty Przycisk", + "PE.Controllers.Main.txtShape_actionButtonDocument": "Przycisk dokument", + "PE.Controllers.Main.txtShape_actionButtonEnd": "Przycisk zakończenia ", + "PE.Controllers.Main.txtShape_actionButtonForwardNext": "Przycisk następny", "PE.Controllers.Main.txtShape_actionButtonHelp": "Przycisk pomocy", + "PE.Controllers.Main.txtShape_actionButtonHome": "Przycisk dom", + "PE.Controllers.Main.txtShape_actionButtonInformation": "Przycisk informacji", + "PE.Controllers.Main.txtShape_actionButtonMovie": "Przycisk wideo", + "PE.Controllers.Main.txtShape_actionButtonReturn": "Przycisk powrotu", + "PE.Controllers.Main.txtShape_actionButtonSound": "Przycisk dźwięku", "PE.Controllers.Main.txtShape_arc": "Łuk", "PE.Controllers.Main.txtShape_bentArrow": "Strzałka Wygięta", + "PE.Controllers.Main.txtShape_bentConnector5": "Łącznik: łamany", + "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Łącznik: łamany ze strzałką", "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Łącznik: łamany z podwójną strzałką", "PE.Controllers.Main.txtShape_bentUpArrow": "Strzałka Wygięta w Górę", + "PE.Controllers.Main.txtShape_bevel": "Ukos", "PE.Controllers.Main.txtShape_blockArc": "Łuk Blokowy", "PE.Controllers.Main.txtShape_bracePair": "Para nawiasów klamrowych", "PE.Controllers.Main.txtShape_can": "Cylinder", "PE.Controllers.Main.txtShape_chevron": "Strzałka Pagon", + "PE.Controllers.Main.txtShape_chord": "Odcinek koła", "PE.Controllers.Main.txtShape_circularArrow": "Strzałka Kolista", "PE.Controllers.Main.txtShape_cloud": "Chmura", + "PE.Controllers.Main.txtShape_cloudCallout": "Dymek myśli: chmurka", "PE.Controllers.Main.txtShape_corner": "Narożnik", "PE.Controllers.Main.txtShape_cube": "Sześcian", + "PE.Controllers.Main.txtShape_curvedConnector3": "Łącznik: zakrzywiony", + "PE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Łącznik: zakrzywiony ze strzałką", "PE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Łącznik: zakrzywiony z podwójną strzałką", + "PE.Controllers.Main.txtShape_curvedDownArrow": "Strzałka: zakrzywiona w dół", + "PE.Controllers.Main.txtShape_curvedLeftArrow": "Strzałka: zakrzywiona w lewo", + "PE.Controllers.Main.txtShape_curvedRightArrow": "Strzałka: zakrzywiona w prawo", + "PE.Controllers.Main.txtShape_curvedUpArrow": "Strzałka: zakrzywiona w górę", + "PE.Controllers.Main.txtShape_decagon": "Dziesięciokąt", + "PE.Controllers.Main.txtShape_diagStripe": "Pasek ukośny", + "PE.Controllers.Main.txtShape_diamond": "Romb", + "PE.Controllers.Main.txtShape_dodecagon": "Dwunastokąt", "PE.Controllers.Main.txtShape_donut": "Okrąg: pusty", "PE.Controllers.Main.txtShape_doubleWave": "Podwójna fala", + "PE.Controllers.Main.txtShape_downArrow": "Strzałka w dół", + "PE.Controllers.Main.txtShape_downArrowCallout": "Objaśnienie: strzałka w dół", + "PE.Controllers.Main.txtShape_ellipse": "Elipsa", + "PE.Controllers.Main.txtShape_ellipseRibbon": "Wstęga: zakrzywiona i nachylona w dół", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Wstęga: zakrzywiona i nachylona w górę", + "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Schemat blokowy: proces alternatywny", + "PE.Controllers.Main.txtShape_flowChartCollate": "Schemat blokowy: zestawienie", + "PE.Controllers.Main.txtShape_flowChartConnector": "Schemat blokowy: łącznik", + "PE.Controllers.Main.txtShape_flowChartDecision": "Schemat blokowy: decyzja", + "PE.Controllers.Main.txtShape_flowChartDelay": "Schemat blokowy: opóźnienie", + "PE.Controllers.Main.txtShape_flowChartDisplay": "Schemat blokowy: ekran", + "PE.Controllers.Main.txtShape_flowChartDocument": "Schemat blokowy: dokument", + "PE.Controllers.Main.txtShape_flowChartExtract": "Schemat blokowy: wyodrębnianie", + "PE.Controllers.Main.txtShape_flowChartInputOutput": "Schemat blokowy: decyzja", + "PE.Controllers.Main.txtShape_flowChartInternalStorage": "Schemat blokowy: pamięć wewnętrzna", + "PE.Controllers.Main.txtShape_flowChartMagneticDisk": "Schemat blokowy: dysk magnetyczny", + "PE.Controllers.Main.txtShape_flowChartMagneticDrum": "Schemat blokowy: pamięć o dostępie bezpośrednim", + "PE.Controllers.Main.txtShape_flowChartMagneticTape": "Schemat blokowy: pamięć o dostępie sekwencyjnym", + "PE.Controllers.Main.txtShape_flowChartManualInput": "Schemat blokowy: ręczne wprowadzenie danych", + "PE.Controllers.Main.txtShape_flowChartManualOperation": "Schemat blokowy: operacja ręczna", + "PE.Controllers.Main.txtShape_flowChartMerge": "Schemat blokowy: scalanie", + "PE.Controllers.Main.txtShape_flowChartMultidocument": "Schemat blokowy: wiele dokumentów", + "PE.Controllers.Main.txtShape_flowChartOffpageConnector": "Schemat blokowy: łącznik międzystronicowy", + "PE.Controllers.Main.txtShape_flowChartOnlineStorage": "Schemat blokowy: przechowywane dane", + "PE.Controllers.Main.txtShape_flowChartOr": "Schemat blokowy: lub", + "PE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Schemat blokowy: proces uprzednio zdefiniowany", + "PE.Controllers.Main.txtShape_flowChartPreparation": "Schemat blokowy: przygotowanie", + "PE.Controllers.Main.txtShape_flowChartProcess": "Schemat blokowy: proces", + "PE.Controllers.Main.txtShape_flowChartPunchedCard": "Schemat blokowy: karta", + "PE.Controllers.Main.txtShape_flowChartPunchedTape": "Schemat blokowy: taśma dziurkowana", + "PE.Controllers.Main.txtShape_flowChartSort": "Schemat blokowy: sortowanie", + "PE.Controllers.Main.txtShape_flowChartSummingJunction": "Schemat blokowy: operacja sumowania", + "PE.Controllers.Main.txtShape_flowChartTerminator": "Schemat blokowy: terminator", + "PE.Controllers.Main.txtShape_foldedCorner": "Prostokąt: zagięty narożnik", "PE.Controllers.Main.txtShape_frame": "Ramka", + "PE.Controllers.Main.txtShape_halfFrame": "Połowa ramki", "PE.Controllers.Main.txtShape_heart": "Serce", "PE.Controllers.Main.txtShape_heptagon": "Siedmiokąt", "PE.Controllers.Main.txtShape_hexagon": "Sześciokąt", + "PE.Controllers.Main.txtShape_homePlate": "Pięciokąt", "PE.Controllers.Main.txtShape_horizontalScroll": "Zwój: poziomy", "PE.Controllers.Main.txtShape_irregularSeal1": "Eksplozja 1", "PE.Controllers.Main.txtShape_irregularSeal2": "Eksplozja 2", + "PE.Controllers.Main.txtShape_leftArrow": "Lewa strzałka", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Objaśnienie: strzałka w lewo", + "PE.Controllers.Main.txtShape_leftBrace": "Nawias klamrowy otwierający", + "PE.Controllers.Main.txtShape_leftBracket": "Nawias otwierający", + "PE.Controllers.Main.txtShape_leftRightArrow": "Strzałka: w lewo i w prawo", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Objaśnienie: strzałka w lewo i w prawo", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Strzałka: w lewo wprawo i w górę", + "PE.Controllers.Main.txtShape_leftUpArrow": "Strzałka: w lewo i w górę", + "PE.Controllers.Main.txtShape_lightningBolt": "Błyskawica", + "PE.Controllers.Main.txtShape_line": "Linia", "PE.Controllers.Main.txtShape_lineWithArrow": "Strzałka", "PE.Controllers.Main.txtShape_lineWithTwoArrows": "Strzałka liniowa: podwójna", + "PE.Controllers.Main.txtShape_mathDivide": "Znak dzielenia", "PE.Controllers.Main.txtShape_mathEqual": "Równy", "PE.Controllers.Main.txtShape_mathMinus": "Minus", "PE.Controllers.Main.txtShape_mathMultiply": "Znak mnożenia", + "PE.Controllers.Main.txtShape_mathNotEqual": "Różny od", + "PE.Controllers.Main.txtShape_mathPlus": "Plus", "PE.Controllers.Main.txtShape_moon": "Księżyc", "PE.Controllers.Main.txtShape_noSmoking": "Symbol \"nie\"", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Strzałka: w prawo z wcięciem", "PE.Controllers.Main.txtShape_octagon": "Ośmiokąt", + "PE.Controllers.Main.txtShape_parallelogram": "Równoległobok", + "PE.Controllers.Main.txtShape_pentagon": "Pięciokąt", + "PE.Controllers.Main.txtShape_pie": "Kołowe", + "PE.Controllers.Main.txtShape_plaque": "Podpisz", + "PE.Controllers.Main.txtShape_plus": "Plus", + "PE.Controllers.Main.txtShape_polyline1": "Dowolny kształt: bazgroły", + "PE.Controllers.Main.txtShape_polyline2": "Dowolny kształt: kształt", + "PE.Controllers.Main.txtShape_quadArrow": "Strzałka: w cztery strony", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Objaśnienie: strzałka w cztery strony", + "PE.Controllers.Main.txtShape_rect": "Prostokąt", + "PE.Controllers.Main.txtShape_ribbon": "Wstęga: nachylona w dół", + "PE.Controllers.Main.txtShape_ribbon2": "Wstęga: nachylona w górę", + "PE.Controllers.Main.txtShape_rightArrow": "Strzałka w prawo", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Objaśnienie: strzałka w prawo", + "PE.Controllers.Main.txtShape_rightBrace": "Nawias klamrowy zamykający", + "PE.Controllers.Main.txtShape_rightBracket": "Nawias zamykający", + "PE.Controllers.Main.txtShape_round1Rect": "Prostokąt: jeden zaokrąglony róg", + "PE.Controllers.Main.txtShape_round2DiagRect": "Prostokąt: zaokrąglone rogi po przekątnej", + "PE.Controllers.Main.txtShape_round2SameRect": "Prostokąt: zaokrąglone rogi u góry", + "PE.Controllers.Main.txtShape_roundRect": "Prostokąt: zaokrąglone rogi", + "PE.Controllers.Main.txtShape_rtTriangle": "Trójkąt równoramienny", + "PE.Controllers.Main.txtShape_smileyFace": "Uśmiechnięta buźka", + "PE.Controllers.Main.txtShape_snip1Rect": "Prostokąt: jeden ścięty róg ", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Prostokąt: ścięte rogi po przekątnej", + "PE.Controllers.Main.txtShape_snip2SameRect": "Prostokąt: ścięte rogi u góry", + "PE.Controllers.Main.txtShape_snipRoundRect": "Prostokąt: zaokrąglony róg i ścięty róg u góry", "PE.Controllers.Main.txtShape_spline": "Krzywa", "PE.Controllers.Main.txtShape_star10": "Gwiazda 10-ramienna", "PE.Controllers.Main.txtShape_star12": "Gwiazda 12-ramienna", @@ -467,7 +746,21 @@ "PE.Controllers.Main.txtShape_star6": "Gwiazda 6-ramienna", "PE.Controllers.Main.txtShape_star7": "Gwiazda 7-ramienna", "PE.Controllers.Main.txtShape_star8": "Gwiazda 8-ramienna", + "PE.Controllers.Main.txtShape_stripedRightArrow": "Strzałka: prążkowana w prawo", + "PE.Controllers.Main.txtShape_sun": "Słoneczko", + "PE.Controllers.Main.txtShape_teardrop": "Łza", + "PE.Controllers.Main.txtShape_textRect": "Pole tekstowe", + "PE.Controllers.Main.txtShape_trapezoid": "Trapez", + "PE.Controllers.Main.txtShape_triangle": "Trójkąt równoramienny", + "PE.Controllers.Main.txtShape_upArrow": "Strzałka w górę", + "PE.Controllers.Main.txtShape_upArrowCallout": "Objaśnienie: strzałka w górę", + "PE.Controllers.Main.txtShape_upDownArrow": "Strzałka: w górę i w dół", + "PE.Controllers.Main.txtShape_uturnArrow": "Strzałka: zawracanie", + "PE.Controllers.Main.txtShape_verticalScroll": "Zwój: pionowy", "PE.Controllers.Main.txtShape_wave": "Fala", + "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Dymek mowy: owalny", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Dymek mowy: prostokąt", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Dymek mowy: prostokąt z zaokrąglonymi rogami", "PE.Controllers.Main.txtSldLtTBlank": "Pusty", "PE.Controllers.Main.txtSldLtTChart": "Wykres", "PE.Controllers.Main.txtSldLtTChartAndTx": "Wykres i tekst", @@ -515,6 +808,7 @@ "PE.Controllers.Main.txtTheme_corner": "Róg", "PE.Controllers.Main.txtTheme_green": "Zielony", "PE.Controllers.Main.txtTheme_green_leaf": "Zielony liść", + "PE.Controllers.Main.txtTheme_lines": "Linie", "PE.Controllers.Main.txtTheme_office": "Biuro", "PE.Controllers.Main.txtXAxis": "Oś X", "PE.Controllers.Main.txtYAxis": "Oś Y", @@ -528,10 +822,17 @@ "PE.Controllers.Main.waitText": "Proszę czekać...", "PE.Controllers.Main.warnBrowserIE9": "Aplikacja ma małe możliwości w IE9. Użyj przeglądarki IE10 lub nowszej.", "PE.Controllers.Main.warnBrowserZoom": "Aktualne ustawienie powiększenia przeglądarki nie jest w pełni obsługiwane. Zresetuj domyślny zoom, naciskając Ctrl + 0.", + "PE.Controllers.Main.warnLicenseExceeded": "Ta wersja edytorów ONLYOFFICE ma pewne ograniczenia dla użytkowników.Dokument zostanie otwarty tylko do odczytu.Jeżeli potrzebujesz więcej, rozważ zakupienie licencji komercyjnej.", "PE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencja wygasła.
Nie masz dostępu do edycji dokumentu.
Proszę skontaktować się ze swoim administratorem.", + "PE.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.", + "PE.Controllers.Main.warnLicenseUsersExceeded": "Osiągnąłeś limit dla użytkownia. Skontaktuj się z administratorem, aby dowiedzieć się więcej.", "PE.Controllers.Main.warnNoLicense": "Używasz wersji %1 w wersji open source. Wersja ma ograniczenia dla jednoczesnych połączeń z serwerem dokumentów (po 20 połączeń naraz). Jeśli potrzebujesz więcej, rozważ zakup licencji komercyjnej.", + "PE.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.", "PE.Controllers.Main.warnProcessRightsChange": "Nie masz prawa edytować tego pliku.", "PE.Controllers.Search.notcriticalErrorTitle": "Ostrzeżenie", + "PE.Controllers.Search.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "PE.Controllers.Search.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.", "PE.Controllers.Statusbar.zoomText": "Powiększenie {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "Czcionka, którą zamierzasz zapisać, nie jest dostępna na bieżącym urządzeniu.
Styl tekstu zostanie wyświetlony przy użyciu jednej z czcionek systemowych, a zapisana czcionka będzie używana, jeśli będzie dostępna.
Czy chcesz kontynuować?", "PE.Controllers.Toolbar.textAccent": "Akcenty", @@ -876,10 +1177,13 @@ "PE.Views.Animation.str5": "5 s (Bardzo powoli)", "PE.Views.Animation.strDelay": "Opóźnienie", "PE.Views.Animation.strDuration": "Czas trwania", + "PE.Views.Animation.textMultiple": "Mnożnik", "PE.Views.Animation.textNone": "Brak", "PE.Views.Animation.textNoRepeat": "(brak)", "PE.Views.Animation.txtAddEffect": "Dodaj animację", "PE.Views.Animation.txtParameters": "Parametry", + "PE.Views.Animation.txtPreview": "Podgląd", + "PE.Views.Animation.txtSec": "S", "PE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane", "PE.Views.ChartSettings.textChartType": "Zmień typ wykresu", "PE.Views.ChartSettings.textEditData": "Edytuj dane", @@ -897,11 +1201,17 @@ "PE.Views.ChartSettingsAdvanced.textHeight": "Wysokość", "PE.Views.ChartSettingsAdvanced.textHorizontal": "Poziomy", "PE.Views.ChartSettingsAdvanced.textKeepRatio": "Stałe proporcje", + "PE.Views.ChartSettingsAdvanced.textPlacement": "Umieszczenie", + "PE.Views.ChartSettingsAdvanced.textPosition": "Pozycja", + "PE.Views.ChartSettingsAdvanced.textSize": "Rozmiar", "PE.Views.ChartSettingsAdvanced.textTitle": "Wykres - zaawansowane ustawienia", "PE.Views.ChartSettingsAdvanced.textVertical": "Pionowy", "PE.Views.ChartSettingsAdvanced.textWidth": "Szerokość", + "PE.Views.DateTimeDialog.confirmDefault": "Ustaw domyślny format dla {0}: \"{1}\"", + "PE.Views.DateTimeDialog.textDefault": "Ustaw jako domyślne", "PE.Views.DateTimeDialog.textFormat": "Formaty", "PE.Views.DateTimeDialog.textLang": "Język", + "PE.Views.DateTimeDialog.textUpdate": "Aktualizuj automatycznie", "PE.Views.DateTimeDialog.txtTitle": "Data i czas", "PE.Views.DocumentHolder.aboveText": "Nad", "PE.Views.DocumentHolder.addCommentText": "Dodaj komentarz", @@ -961,11 +1271,20 @@ "PE.Views.DocumentHolder.textCropFill": "Wypełnij", "PE.Views.DocumentHolder.textCropFit": "Dopasuj", "PE.Views.DocumentHolder.textCut": "Wytnij", + "PE.Views.DocumentHolder.textDistributeCols": "Rozłóż kolumny", + "PE.Views.DocumentHolder.textDistributeRows": "Rozłóż wiersze", "PE.Views.DocumentHolder.textFlipH": "Odwróć w poziomie", "PE.Views.DocumentHolder.textFlipV": "Przerzuć w pionie", + "PE.Views.DocumentHolder.textFromFile": "Z pliku", + "PE.Views.DocumentHolder.textFromStorage": "Z magazynu", + "PE.Views.DocumentHolder.textFromUrl": "Z adresu URL", "PE.Views.DocumentHolder.textNextPage": "Następny slajd", "PE.Views.DocumentHolder.textPaste": "Wklej", "PE.Views.DocumentHolder.textPrevPage": "Poprzedni slajd", + "PE.Views.DocumentHolder.textReplace": "Zamień obraz", + "PE.Views.DocumentHolder.textRotate": "Obracać", + "PE.Views.DocumentHolder.textRotate270": "Obróć w lewo o 90° ", + "PE.Views.DocumentHolder.textRotate90": "Obróć w prawo o 90°", "PE.Views.DocumentHolder.textShapeAlignBottom": "Wyrównaj do dołu", "PE.Views.DocumentHolder.textShapeAlignCenter": "Wyrównaj do środka", "PE.Views.DocumentHolder.textShapeAlignLeft": "Wyrównaj do lewej", @@ -1040,9 +1359,11 @@ "PE.Views.DocumentHolder.txtMatrixAlign": "Wyrównanie macierzy", "PE.Views.DocumentHolder.txtNewSlide": "Nowy slajd", "PE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", + "PE.Views.DocumentHolder.txtPastePicture": "Obraz", "PE.Views.DocumentHolder.txtPasteSourceFormat": "Zachowaj formatowanie źródłowe", "PE.Views.DocumentHolder.txtPressLink": "Naciśnij {0} i kliknij link", "PE.Views.DocumentHolder.txtPreview": "Rozpocznij pokaz slajdów", + "PE.Views.DocumentHolder.txtPrintSelection": "Drukuj wybrane", "PE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", "PE.Views.DocumentHolder.txtRemLimit": "Usuń limit", "PE.Views.DocumentHolder.txtRemoveAccentChar": "Usuwanie akcentu", @@ -1086,10 +1407,12 @@ "PE.Views.FileMenu.btnCreateNewCaption": "Utwórz nowy", "PE.Views.FileMenu.btnDownloadCaption": "Pobierz jako...", "PE.Views.FileMenu.btnExitCaption": "Zamknij", + "PE.Views.FileMenu.btnFileOpenCaption": "Otwórz...", "PE.Views.FileMenu.btnHelpCaption": "Pomoc...", "PE.Views.FileMenu.btnHistoryCaption": "Historia wersji", "PE.Views.FileMenu.btnInfoCaption": "Informacje o prezentacji...", "PE.Views.FileMenu.btnPrintCaption": "Wydrukować", + "PE.Views.FileMenu.btnProtectCaption": "Zabezpiecz", "PE.Views.FileMenu.btnRecentFilesCaption": "Otwórz ostatnie...", "PE.Views.FileMenu.btnRenameCaption": "Zmień nazwę...", "PE.Views.FileMenu.btnReturnCaption": "Powrót do prezentacji", @@ -1114,18 +1437,26 @@ "PE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Właściciel", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, które mają prawa", + "PE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Temat", "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tytuł prezentacji", "PE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Przesłano", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmień prawa dostępu", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, które mają prawa", "PE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Ostrzeżenie", + "PE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Za pomocą hasła", + "PE.Views.FileMenuPanels.ProtectDoc.strSignature": "Z sygnaturą", "PE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edytuj prezentację", + "PE.Views.FileMenuPanels.ProtectDoc.txtView": "Zobacz sygnatury", "PE.Views.FileMenuPanels.Settings.okButtonText": "Zastosować", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Tryb współtworzenia", "PE.Views.FileMenuPanels.Settings.strFast": "Szybki", + "PE.Views.FileMenuPanels.Settings.strFontRender": "Podpowiedź czcionki", "PE.Views.FileMenuPanels.Settings.strIgnoreWordsInUPPERCASE": "Ignoruj słowa pisane WIELKIMI LITERAMI", "PE.Views.FileMenuPanels.Settings.strIgnoreWordsWithNumbers": "Ignoruj słowa z liczbami", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Ustawienia Makr", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Pokaż przycisk opcji wklejania po wklejeniu zawartości", "PE.Views.FileMenuPanels.Settings.strStrict": "Ścisły", + "PE.Views.FileMenuPanels.Settings.strTheme": "Motyw interfejsu", "PE.Views.FileMenuPanels.Settings.strUnit": "Jednostka miary", "PE.Views.FileMenuPanels.Settings.strZoom": "Domyślna wartość powiększenia", "PE.Views.FileMenuPanels.Settings.text10Minutes": "Każde 10 minut", @@ -1140,6 +1471,7 @@ "PE.Views.FileMenuPanels.Settings.textMinute": "Każda minuta", "PE.Views.FileMenuPanels.Settings.txtAll": "Pokaż wszystkie", "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcje Autokorekty...", + "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Domyślny tryb pamięci podręcznej", "PE.Views.FileMenuPanels.Settings.txtCm": "Centymetr", "PE.Views.FileMenuPanels.Settings.txtCollaboration": "Współpraca", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Dopasuj do slajdu", @@ -1155,15 +1487,22 @@ "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Sprawdzanie pisowni", "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Wyłącz Wszystkie", "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Wyłącz wszystkie makra bez powiadomienia", + "PE.Views.FileMenuPanels.Settings.txtStrictTip": "Użyj przycisku \"Zapisz\", aby zsynchronizować zmiany, które ty i inni dokonują", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Pokaż powiadomienie", "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Wyłącz wszystkie makra z powiadomieniem", "PE.Views.FileMenuPanels.Settings.txtWin": "jako Windows", + "PE.Views.FileMenuPanels.Settings.txtWorkspace": "Obszar roboczy", "PE.Views.HeaderFooterDialog.applyAllText": "Zastosuj do wszystkich", "PE.Views.HeaderFooterDialog.applyText": "Zastosuj", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Ostrzeżenie", "PE.Views.HeaderFooterDialog.textDateTime": "Data i czas", + "PE.Views.HeaderFooterDialog.textFixed": "Ustalony", "PE.Views.HeaderFooterDialog.textFormat": "Formaty", "PE.Views.HeaderFooterDialog.textLang": "Język", + "PE.Views.HeaderFooterDialog.textPreview": "Podgląd", + "PE.Views.HeaderFooterDialog.textSlideNum": "Numer slajdu", "PE.Views.HeaderFooterDialog.textTitle": "Ustawienia stopki", + "PE.Views.HeaderFooterDialog.textUpdate": "Aktualizuj automatycznie", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Pokaż", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link do", "PE.Views.HyperlinkSettingsDialog.textDefault": "Wybrany fragment tekstu", @@ -1172,6 +1511,7 @@ "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Podaj tutaj etykietkę", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Link zewnętrzny", "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Slajd w tej prezentacji", + "PE.Views.HyperlinkSettingsDialog.textSlides": "Slajdy", "PE.Views.HyperlinkSettingsDialog.textTipText": "Tekst wskazówki na ekranie", "PE.Views.HyperlinkSettingsDialog.textTitle": "Ustawienia hiperlinku", "PE.Views.HyperlinkSettingsDialog.txtEmpty": "To pole jest wymagane", @@ -1180,6 +1520,7 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "Następny slajd", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Poprzedni slajd", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "To pole jest ograniczone do 2083 znaków", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Slajd", "PE.Views.ImageSettings.textAdvanced": "Pokaż ustawienia zaawansowane", "PE.Views.ImageSettings.textCrop": "Przytnij", @@ -1191,12 +1532,18 @@ "PE.Views.ImageSettings.textFitSlide": "Dopasuj do slajdu", "PE.Views.ImageSettings.textFlip": "Przerzuć", "PE.Views.ImageSettings.textFromFile": "Z pliku", + "PE.Views.ImageSettings.textFromStorage": "Z magazynu", "PE.Views.ImageSettings.textFromUrl": "Z adresu URL", "PE.Views.ImageSettings.textHeight": "Wysokość", + "PE.Views.ImageSettings.textHint270": "Obróć w lewo o 90° ", + "PE.Views.ImageSettings.textHint90": "Obróć w prawo o 90°", "PE.Views.ImageSettings.textHintFlipH": "Odwróć w poziomie", "PE.Views.ImageSettings.textHintFlipV": "Przerzuć w pionie", "PE.Views.ImageSettings.textInsert": "Zamień obraz", "PE.Views.ImageSettings.textOriginalSize": "Domyślny rozmiar", + "PE.Views.ImageSettings.textRecentlyUsed": "Ostatnio używane", + "PE.Views.ImageSettings.textRotate90": "Obróć o 90°", + "PE.Views.ImageSettings.textRotation": "Obróć", "PE.Views.ImageSettings.textSize": "Rozmiar", "PE.Views.ImageSettings.textWidth": "Szerokość", "PE.Views.ImageSettingsAdvanced.textAlt": "Tekst alternatywny", @@ -1214,9 +1561,11 @@ "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Domyślny rozmiar", "PE.Views.ImageSettingsAdvanced.textPlacement": "Umieszczenie", "PE.Views.ImageSettingsAdvanced.textPosition": "Pozycja", + "PE.Views.ImageSettingsAdvanced.textRotation": "Obróć", "PE.Views.ImageSettingsAdvanced.textSize": "Rozmiar", "PE.Views.ImageSettingsAdvanced.textTitle": "Obraz - zaawansowane ustawienia", "PE.Views.ImageSettingsAdvanced.textVertical": "Pionowy", + "PE.Views.ImageSettingsAdvanced.textVertically": "Pionowo ", "PE.Views.ImageSettingsAdvanced.textWidth": "Szerokość", "PE.Views.LeftMenu.tipAbout": "O programie", "PE.Views.LeftMenu.tipChat": "Czat", @@ -1227,6 +1576,9 @@ "PE.Views.LeftMenu.tipSupport": "Opinie i wsparcie", "PE.Views.LeftMenu.tipTitles": "Tytuły", "PE.Views.LeftMenu.txtDeveloper": "TRYB DEWELOPERA", + "PE.Views.LeftMenu.txtLimit": "Ograniczony dostęp", + "PE.Views.LeftMenu.txtTrial": "PRÓBNY TRYB", + "PE.Views.LeftMenu.txtTrialDev": "Próbny tryb programisty", "PE.Views.ParagraphSettings.strLineHeight": "Rozstaw wierszy", "PE.Views.ParagraphSettings.strParagraphSpacing": "Odstępy akapitu", "PE.Views.ParagraphSettings.strSpacingAfter": "po", @@ -1240,23 +1592,29 @@ "PE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże litery", "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie", + "PE.Views.ParagraphSettingsAdvanced.strIndent": "Wcięcie", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Rozstaw wierszy", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Po", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Przed", + "PE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Specialny", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Czcionka", "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Wcięcia i miejsca docelowe", "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Małe litery", + "PE.Views.ParagraphSettingsAdvanced.strSpacing": "Rozstaw", "PE.Views.ParagraphSettingsAdvanced.strStrike": "Przekreślony", "PE.Views.ParagraphSettingsAdvanced.strSubscript": "Indeks dolny", "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Indeks górny", "PE.Views.ParagraphSettingsAdvanced.strTabs": "tabulacja", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Wyrównanie", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Mnożnik", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Rozstaw znaków", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Domyślna zakładka", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", "PE.Views.ParagraphSettingsAdvanced.textExact": "Dokładnie", "PE.Views.ParagraphSettingsAdvanced.textFirstLine": "Pierwszy wiersz", + "PE.Views.ParagraphSettingsAdvanced.textHanging": "Wysunięcie", "PE.Views.ParagraphSettingsAdvanced.textJustified": "Wyjustowany", "PE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(brak)", "PE.Views.ParagraphSettingsAdvanced.textRemove": "Usuń", @@ -1272,6 +1630,7 @@ "PE.Views.RightMenu.txtImageSettings": "Ustawienia obrazu", "PE.Views.RightMenu.txtParagraphSettings": "Ustawienia tekstu", "PE.Views.RightMenu.txtShapeSettings": "Ustawienia kształtu", + "PE.Views.RightMenu.txtSignatureSettings": "Ustawienia podpisów", "PE.Views.RightMenu.txtSlideSettings": "Ustawienia slajdu", "PE.Views.RightMenu.txtTableSettings": "Ustawienia tabeli", "PE.Views.RightMenu.txtTextArtSettings": "Ustawienia tekstu", @@ -1281,6 +1640,7 @@ "PE.Views.ShapeSettings.strFill": "Wypełnij", "PE.Views.ShapeSettings.strForeground": "Kolor pierwszoplanowy", "PE.Views.ShapeSettings.strPattern": "Wzór", + "PE.Views.ShapeSettings.strShadow": "Pokaż cień ", "PE.Views.ShapeSettings.strSize": "Rozmiar", "PE.Views.ShapeSettings.strStroke": "Obrys", "PE.Views.ShapeSettings.strTransparency": "Nieprzezroczystość", @@ -1293,22 +1653,31 @@ "PE.Views.ShapeSettings.textEmptyPattern": "Brak wzorca", "PE.Views.ShapeSettings.textFlip": "Przerzuć", "PE.Views.ShapeSettings.textFromFile": "Z pliku", + "PE.Views.ShapeSettings.textFromStorage": "Z magazynu", "PE.Views.ShapeSettings.textFromUrl": "Z adresu URL", "PE.Views.ShapeSettings.textGradient": "Gradient", "PE.Views.ShapeSettings.textGradientFill": "Wypełnienie gradientem", + "PE.Views.ShapeSettings.textHint270": "Obróć w lewo o 90° ", + "PE.Views.ShapeSettings.textHint90": "Obróć w prawo o 90°", "PE.Views.ShapeSettings.textHintFlipH": "Odwróć w poziomie", "PE.Views.ShapeSettings.textHintFlipV": "Przerzuć w pionie", "PE.Views.ShapeSettings.textImageTexture": "Obraz lub tekstura", "PE.Views.ShapeSettings.textLinear": "Liniowy", "PE.Views.ShapeSettings.textNoFill": "Brak wypełnienia", "PE.Views.ShapeSettings.textPatternFill": "Wzór", + "PE.Views.ShapeSettings.textPosition": "Pozycja", "PE.Views.ShapeSettings.textRadial": "Promieniowy", + "PE.Views.ShapeSettings.textRecentlyUsed": "Ostatnio używane", + "PE.Views.ShapeSettings.textRotate90": "Obróć o 90°", + "PE.Views.ShapeSettings.textRotation": "Obróć", + "PE.Views.ShapeSettings.textSelectImage": "Wybierz zdjęcie", "PE.Views.ShapeSettings.textSelectTexture": "Wybierz", "PE.Views.ShapeSettings.textStretch": "Rozciągnij", "PE.Views.ShapeSettings.textStyle": "Styl", "PE.Views.ShapeSettings.textTexture": "Z tekstury", "PE.Views.ShapeSettings.textTile": "Płytka", "PE.Views.ShapeSettings.tipAddGradientPoint": "Dodaj punkt gradientu", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Usuń punkt gradientu", "PE.Views.ShapeSettings.txtBrownPaper": "Papier pakowy", "PE.Views.ShapeSettings.txtCanvas": "Płótno", "PE.Views.ShapeSettings.txtCarton": "Karton", @@ -1350,18 +1719,30 @@ "PE.Views.ShapeSettingsAdvanced.textLeft": "Lewy", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Styl wierszy", "PE.Views.ShapeSettingsAdvanced.textMiter": "prosty", + "PE.Views.ShapeSettingsAdvanced.textPlacement": "Umieszczenie", + "PE.Views.ShapeSettingsAdvanced.textPosition": "Pozycja", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Dopasuj rozmiar kształtu do tekstu", "PE.Views.ShapeSettingsAdvanced.textRight": "Prawy", + "PE.Views.ShapeSettingsAdvanced.textRotation": "Obróć", "PE.Views.ShapeSettingsAdvanced.textRound": "Zaokrąglij", "PE.Views.ShapeSettingsAdvanced.textSize": "Rozmiar", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Przerwa między kolumnami", "PE.Views.ShapeSettingsAdvanced.textSquare": "Kwadratowy", + "PE.Views.ShapeSettingsAdvanced.textTextBox": "Pole tekstowe", "PE.Views.ShapeSettingsAdvanced.textTitle": "Kształt - Zaawansowane ustawienia", "PE.Views.ShapeSettingsAdvanced.textTop": "Góra", "PE.Views.ShapeSettingsAdvanced.textVertical": "Pionowy", + "PE.Views.ShapeSettingsAdvanced.textVertically": "Pionowo ", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Wagi i strzałki", "PE.Views.ShapeSettingsAdvanced.textWidth": "Szerokość", "PE.Views.ShapeSettingsAdvanced.txtNone": "Nie", "PE.Views.SignatureSettings.notcriticalErrorTitle": "Ostrzeżenie", + "PE.Views.SignatureSettings.strDelete": "Usuń podpis", + "PE.Views.SignatureSettings.strDetails": "Szczegóły sygnatury", + "PE.Views.SignatureSettings.strInvalid": "Nieprawidłowe podpisy", + "PE.Views.SignatureSettings.strSign": "Podpisz", + "PE.Views.SignatureSettings.strSignature": "Sygnatura", + "PE.Views.SignatureSettings.strValid": "Ważne podpisy", "PE.Views.SignatureSettings.txtContinueEditing": "Edytuj mimo to", "PE.Views.SignatureSettings.txtRemoveWarning": "Czy chcesz usunąć ten podpis?
Nie można tego cofnąć.", "PE.Views.SlideSettings.strBackground": "Kolor tła", @@ -1369,12 +1750,14 @@ "PE.Views.SlideSettings.strFill": "Tło", "PE.Views.SlideSettings.strForeground": "Kolor pierwszoplanowy", "PE.Views.SlideSettings.strPattern": "Wzór", + "PE.Views.SlideSettings.strTransparency": "Nieprzezroczystość", "PE.Views.SlideSettings.textAdvanced": "Pokaż ustawienia zaawansowane", "PE.Views.SlideSettings.textAngle": "Kąt", "PE.Views.SlideSettings.textColor": "Kolor wypełnienia", "PE.Views.SlideSettings.textDirection": "Kierunek", "PE.Views.SlideSettings.textEmptyPattern": "Brak wzorca", "PE.Views.SlideSettings.textFromFile": "Z pliku", + "PE.Views.SlideSettings.textFromStorage": "Z magazynu", "PE.Views.SlideSettings.textFromUrl": "Z adresu URL", "PE.Views.SlideSettings.textGradient": "Gradient", "PE.Views.SlideSettings.textGradientFill": "Wypełnienie gradientem", @@ -1382,14 +1765,17 @@ "PE.Views.SlideSettings.textLinear": "Liniowy", "PE.Views.SlideSettings.textNoFill": "Brak wypełnienia", "PE.Views.SlideSettings.textPatternFill": "Wzór", + "PE.Views.SlideSettings.textPosition": "Położenie", "PE.Views.SlideSettings.textRadial": "Promieniowy", "PE.Views.SlideSettings.textReset": "Zresetuj zmiany", + "PE.Views.SlideSettings.textSelectImage": "Wybierz zdjęcie", "PE.Views.SlideSettings.textSelectTexture": "Wybierz", "PE.Views.SlideSettings.textStretch": "Rozciągnij", "PE.Views.SlideSettings.textStyle": "Styl", "PE.Views.SlideSettings.textTexture": "Z tekstury", "PE.Views.SlideSettings.textTile": "Płytka", "PE.Views.SlideSettings.tipAddGradientPoint": "Dodaj punkt gradientu", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Usuń punkt gradientu", "PE.Views.SlideSettings.txtBrownPaper": "Papier pakowy", "PE.Views.SlideSettings.txtCanvas": "Płótno", "PE.Views.SlideSettings.txtCarton": "Karton", @@ -1423,6 +1809,9 @@ "PE.Views.SlideSizeSettings.txtStandard": "Standard (4: 3)", "PE.Views.Statusbar.goToPageText": "Idź do slajdu", "PE.Views.Statusbar.pageIndexText": "Slajd {0} z {1}", + "PE.Views.Statusbar.textShowBegin": "Pokaż od początku", + "PE.Views.Statusbar.textShowCurrent": "Pokaż z aktualnego slajdu", + "PE.Views.Statusbar.textShowPresenterView": "Pokaz slajdów w trybie prezentera", "PE.Views.Statusbar.tipAccessRights": "Zarządzaj prawami dostępu do dokumentu", "PE.Views.Statusbar.tipFitPage": "Dopasuj do slajdu", "PE.Views.Statusbar.tipFitWidth": "Dopasuj do szerokości", @@ -1453,6 +1842,8 @@ "PE.Views.TableSettings.textBorders": "Style obramowań", "PE.Views.TableSettings.textCellSize": "Rozmiar Komórki", "PE.Views.TableSettings.textColumns": "Kolumny", + "PE.Views.TableSettings.textDistributeCols": "Rozłóż kolumny", + "PE.Views.TableSettings.textDistributeRows": "Rozłóż wiersze", "PE.Views.TableSettings.textEdit": "Wiersze i Kolumny", "PE.Views.TableSettings.textEmptyTemplate": "Brak szablonów", "PE.Views.TableSettings.textFirst": "pierwszy", @@ -1477,6 +1868,7 @@ "PE.Views.TableSettings.txtNoBorders": "Bez krawędzi", "PE.Views.TableSettings.txtTable_Accent": "Akcent", "PE.Views.TableSettings.txtTable_MediumStyle": "Średni styl", + "PE.Views.TableSettings.txtTable_TableGrid": "Tabela - siatka", "PE.Views.TableSettingsAdvanced.textAlt": "Tekst alternatywny", "PE.Views.TableSettingsAdvanced.textAltDescription": "Opis", "PE.Views.TableSettingsAdvanced.textAltTip": "Alternatywna prezentacja wizualnych informacji o obiektach, które będą czytane osobom z wadami wzroku lub zmysłu poznawczego, aby lepiej zrozumieć, jakie informacje znajdują się na obrazie, kształtach, wykresie lub tabeli.", @@ -1491,7 +1883,10 @@ "PE.Views.TableSettingsAdvanced.textKeepRatio": "Stałe proporcje", "PE.Views.TableSettingsAdvanced.textLeft": "Lewy", "PE.Views.TableSettingsAdvanced.textMargins": "Marginesy komórki", + "PE.Views.TableSettingsAdvanced.textPlacement": "Umieszczenie", + "PE.Views.TableSettingsAdvanced.textPosition": "Pozycja", "PE.Views.TableSettingsAdvanced.textRight": "Prawy", + "PE.Views.TableSettingsAdvanced.textSize": "Rozmiar", "PE.Views.TableSettingsAdvanced.textTitle": "Tabela - zaawansowane ustawienia", "PE.Views.TableSettingsAdvanced.textTop": "Góra", "PE.Views.TableSettingsAdvanced.textVertical": "Pionowy", @@ -1519,6 +1914,7 @@ "PE.Views.TextArtSettings.textLinear": "Liniowy", "PE.Views.TextArtSettings.textNoFill": "Brak wypełnienia", "PE.Views.TextArtSettings.textPatternFill": "Wzór", + "PE.Views.TextArtSettings.textPosition": "Położenie", "PE.Views.TextArtSettings.textRadial": "Promieniowy", "PE.Views.TextArtSettings.textSelectTexture": "Wybierz", "PE.Views.TextArtSettings.textStretch": "Rozciągnij", @@ -1528,6 +1924,7 @@ "PE.Views.TextArtSettings.textTile": "Płytka", "PE.Views.TextArtSettings.textTransform": "Przekształcenie", "PE.Views.TextArtSettings.tipAddGradientPoint": "Dodaj punkt gradientu", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Usuń punkt gradientu", "PE.Views.TextArtSettings.txtBrownPaper": "Papier pakowy", "PE.Views.TextArtSettings.txtCanvas": "Płótno", "PE.Views.TextArtSettings.txtCarton": "Karton", @@ -1546,6 +1943,7 @@ "PE.Views.Toolbar.capBtnDateTime": "Data i czas", "PE.Views.Toolbar.capBtnInsHeader": "Stopka", "PE.Views.Toolbar.capBtnInsSymbol": "Symbole", + "PE.Views.Toolbar.capBtnSlideNum": "Numer slajdu", "PE.Views.Toolbar.capInsertAudio": "Dźwięk", "PE.Views.Toolbar.capInsertChart": "Wykres", "PE.Views.Toolbar.capInsertEquation": "Równanie", @@ -1561,12 +1959,16 @@ "PE.Views.Toolbar.mniCapitalizeWords": "Wyrazy Z Dużej Litery", "PE.Views.Toolbar.mniCustomTable": "Wstaw tabelę niestandardową", "PE.Views.Toolbar.mniImageFromFile": "Obraz z pliku", + "PE.Views.Toolbar.mniImageFromStorage": "Obraz z magazynu", "PE.Views.Toolbar.mniImageFromUrl": "Obraz z URL", "PE.Views.Toolbar.mniInsertSSE": "Wstaw arkusz kalkulacyjny", + "PE.Views.Toolbar.mniLowerCase": "małe litery", + "PE.Views.Toolbar.mniSentenceCase": "Jak w zdaniu.", "PE.Views.Toolbar.mniSlideAdvanced": "Zaawansowane ustawienia", "PE.Views.Toolbar.mniSlideStandard": "Standard (4: 3)", "PE.Views.Toolbar.mniSlideWide": "Ekran panoramiczny (16:9)", "PE.Views.Toolbar.mniUpperCase": "WIELKIE LITERY", + "PE.Views.Toolbar.strMenuNoFill": "Brak wypełnienia", "PE.Views.Toolbar.textAlignBottom": "Wyrównaj tekst do dołu", "PE.Views.Toolbar.textAlignCenter": "Wyśrodkowanie tekstu", "PE.Views.Toolbar.textAlignJust": "Wyjustuj", @@ -1579,8 +1981,11 @@ "PE.Views.Toolbar.textArrangeForward": "Przenieś do przodu", "PE.Views.Toolbar.textArrangeFront": "Przejdź na pierwszy plan", "PE.Views.Toolbar.textBold": "Pogrubione", + "PE.Views.Toolbar.textColumnsCustom": "Niestandardowe kolumny", "PE.Views.Toolbar.textColumnsTwo": "Dwie kolumny", "PE.Views.Toolbar.textItalic": "Kursywa", + "PE.Views.Toolbar.textListSettings": "Ustawienia listy", + "PE.Views.Toolbar.textRecentlyUsed": "Ostatnio używane", "PE.Views.Toolbar.textShapeAlignBottom": "Wyrównaj do dołu", "PE.Views.Toolbar.textShapeAlignCenter": "Wyrównaj do środka", "PE.Views.Toolbar.textShapeAlignLeft": "Wyrównaj do lewej", @@ -1599,6 +2004,8 @@ "PE.Views.Toolbar.textTabFile": "Plik", "PE.Views.Toolbar.textTabHome": "Narzędzia główne", "PE.Views.Toolbar.textTabInsert": "Wstawianie", + "PE.Views.Toolbar.textTabProtect": "Ochrona", + "PE.Views.Toolbar.textTabView": "Obejrzeć", "PE.Views.Toolbar.textTitleError": "Błąd", "PE.Views.Toolbar.textUnderline": "Podkreśl", "PE.Views.Toolbar.tipAddSlide": "Dodaj slajd", @@ -1611,7 +2018,9 @@ "PE.Views.Toolbar.tipColumns": "Wstaw kolumny", "PE.Views.Toolbar.tipCopy": "Kopiuj", "PE.Views.Toolbar.tipCopyStyle": "Kopiuj styl", + "PE.Views.Toolbar.tipCut": "Wytnij", "PE.Views.Toolbar.tipDateTime": "Wstaw aktualną datę i godzinę", + "PE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki", "PE.Views.Toolbar.tipDecPrLeft": "Zmniejsz wcięcie", "PE.Views.Toolbar.tipEditHeader": "Edytuj stopkę", "PE.Views.Toolbar.tipFontColor": "Kolor czcionki", @@ -1619,6 +2028,7 @@ "PE.Views.Toolbar.tipFontSize": "Rozmiar czcionki", "PE.Views.Toolbar.tipHAligh": "Wyrównaj poziomo", "PE.Views.Toolbar.tipHighlightColor": "Kolor podświetlenia", + "PE.Views.Toolbar.tipIncFont": "Zwiększ rozmiar czcionki", "PE.Views.Toolbar.tipIncPrLeft": "Zwiększ wcięcie", "PE.Views.Toolbar.tipInsertAudio": "Wstaw dźwięk", "PE.Views.Toolbar.tipInsertChart": "Wstaw wykres", @@ -1641,6 +2051,7 @@ "PE.Views.Toolbar.tipRedo": "Ponów", "PE.Views.Toolbar.tipSave": "Zapisz", "PE.Views.Toolbar.tipSaveCoauth": "Zapisz swoje zmiany, aby inni użytkownicy mogli je zobaczyć.", + "PE.Views.Toolbar.tipSelectAll": "Wybierz wszystkich", "PE.Views.Toolbar.tipShapeAlign": "Wyrównaj kształt", "PE.Views.Toolbar.tipShapeArrange": "Uformuj kształt", "PE.Views.Toolbar.tipSlideNum": "Wstaw numer slajdu", @@ -1668,6 +2079,7 @@ "PE.Views.Toolbar.txtScheme2": "Skala szarości", "PE.Views.Toolbar.txtScheme20": "Miejski", "PE.Views.Toolbar.txtScheme21": "Rozmach", + "PE.Views.Toolbar.txtScheme22": "Nowa biurowa", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspekt", "PE.Views.Toolbar.txtScheme5": "Obywatelski", @@ -1679,6 +2091,7 @@ "PE.Views.Toolbar.txtUngroup": "Rozgrupuj", "PE.Views.Transitions.strDelay": "Opóźnienie", "PE.Views.Transitions.strDuration": "Czas trwania", + "PE.Views.Transitions.strStartOnClick": "Zacznij od kliknięcia", "PE.Views.Transitions.textBlack": "Przez czarne", "PE.Views.Transitions.textBottom": "Dół", "PE.Views.Transitions.textBottomLeft": "Na dole po lewej", @@ -1693,6 +2106,7 @@ "PE.Views.Transitions.textLeft": "Lewy", "PE.Views.Transitions.textNone": "Brak", "PE.Views.Transitions.textPush": "Pchnij", + "PE.Views.Transitions.textRight": "Prawy", "PE.Views.Transitions.textSmoothly": "Płynnie", "PE.Views.Transitions.textSplit": "Podziel", "PE.Views.Transitions.textUnCover": "Odkryj", @@ -1700,14 +2114,20 @@ "PE.Views.Transitions.textVerticalOut": "W pionie na zewnątrz", "PE.Views.Transitions.textWedge": "Zaklinuj", "PE.Views.Transitions.textWipe": "Wytrzyj", + "PE.Views.Transitions.textZoom": "Powiększenie", "PE.Views.Transitions.textZoomIn": "Powiększ", "PE.Views.Transitions.textZoomOut": "Oddal", "PE.Views.Transitions.textZoomRotate": "Powiększenie i obrót", "PE.Views.Transitions.txtApplyToAll": "Zatwierdź dla wszystkich slajdów", "PE.Views.Transitions.txtParameters": "Parametry", + "PE.Views.Transitions.txtPreview": "Podgląd", "PE.Views.Transitions.txtSec": "S", "PE.Views.ViewTab.textAlwaysShowToolbar": "Zawsze pokazuj pasek narzędzi", "PE.Views.ViewTab.textFitToSlide": "Dopasuj do slajdu", "PE.Views.ViewTab.textFitToWidth": "Dopasuj do szerokości", - "PE.Views.ViewTab.textNotes": "Notatki" + "PE.Views.ViewTab.textInterfaceTheme": "Motyw interfejsu", + "PE.Views.ViewTab.textNotes": "Notatki", + "PE.Views.ViewTab.textRulers": "Zasady", + "PE.Views.ViewTab.textStatusBar": "Pasek stanu", + "PE.Views.ViewTab.textZoom": "Powiększenie" } \ 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 303676af0..2b2c04ccd 100644 --- a/apps/presentationeditor/main/locale/zh-tw.json +++ b/apps/presentationeditor/main/locale/zh-tw.json @@ -640,12 +640,12 @@ "PE.Controllers.Main.errorDataEncrypted": "已收到加密的更改,無法解密。", "PE.Controllers.Main.errorDataRange": "不正確的資料範圍", "PE.Controllers.Main.errorDefaultMessage": "錯誤編號:%1", - "PE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。
使用“下載為...”選項將文件備份副本保存到計算機硬碟驅動器中。", - "PE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。
使用“另存為...”選項將文件備份副本保存到計算機硬碟驅動器中。", + "PE.Controllers.Main.errorEditingDownloadas": "在處理文檔期間發生錯誤。
使用\"下載為...\"選項將文件備份副本保存到計算機硬碟驅動器中。", + "PE.Controllers.Main.errorEditingSaveas": "使用文檔期間發生錯誤。
使用\"另存為...\"選項將文件備份副本保存到計算機硬碟驅動器中。", "PE.Controllers.Main.errorEmailClient": "找不到電子郵件客戶端。", "PE.Controllers.Main.errorFilePassProtect": "該文件受密碼保護,無法打開。", "PE.Controllers.Main.errorFileSizeExceed": "此檔案超過這一主機限制的大小
進一步資訊,請聯絡您的文件服務主機的管理者。", - "PE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用“下載為”選項將文件保存到電腦機硬碟中,或稍後再試。", + "PE.Controllers.Main.errorForceSave": "保存文件時發生錯誤。請使用\"下載為\"選項將文件保存到電腦機硬碟中,或稍後再試。", "PE.Controllers.Main.errorKeyEncrypt": "未知密鑰描述符", "PE.Controllers.Main.errorKeyExpire": "密鑰描述符已過期", "PE.Controllers.Main.errorLoadingFont": "字體未加載。
請聯繫文件服務器管理員。", @@ -1391,6 +1391,7 @@ "PE.Views.ChartSettingsAdvanced.textPosition": "職務", "PE.Views.ChartSettingsAdvanced.textSize": "大小", "PE.Views.ChartSettingsAdvanced.textTitle": "圖表-進階設置", + "PE.Views.ChartSettingsAdvanced.textTopLeftCorner": "左上角", "PE.Views.ChartSettingsAdvanced.textVertical": "垂直", "PE.Views.ChartSettingsAdvanced.textWidth": "寬度", "PE.Views.DateTimeDialog.confirmDefault": "設置{0}的預設格式:“ {1}”", @@ -1769,6 +1770,7 @@ "PE.Views.ImageSettingsAdvanced.textRotation": "旋轉", "PE.Views.ImageSettingsAdvanced.textSize": "大小", "PE.Views.ImageSettingsAdvanced.textTitle": "圖像-進階設置", + "PE.Views.ImageSettingsAdvanced.textTopLeftCorner": "左上角", "PE.Views.ImageSettingsAdvanced.textVertical": "垂直", "PE.Views.ImageSettingsAdvanced.textVertically": "垂直", "PE.Views.ImageSettingsAdvanced.textWidth": "寬度", @@ -1781,6 +1783,7 @@ "PE.Views.LeftMenu.tipSupport": "反饋與支持", "PE.Views.LeftMenu.tipTitles": "標題", "PE.Views.LeftMenu.txtDeveloper": "開發者模式", + "PE.Views.LeftMenu.txtEditor": "簡報編輯器", "PE.Views.LeftMenu.txtLimit": "限制存取", "PE.Views.LeftMenu.txtTrial": "試用模式", "PE.Views.LeftMenu.txtTrialDev": "試用開發人員模式", @@ -1938,6 +1941,7 @@ "PE.Views.ShapeSettingsAdvanced.textTextBox": "文字框", "PE.Views.ShapeSettingsAdvanced.textTitle": "形狀 - 進階設定", "PE.Views.ShapeSettingsAdvanced.textTop": "上方", + "PE.Views.ShapeSettingsAdvanced.textTopLeftCorner": "左上角", "PE.Views.ShapeSettingsAdvanced.textVertical": "垂直", "PE.Views.ShapeSettingsAdvanced.textVertically": "垂直", "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "重量和箭頭", @@ -2107,6 +2111,7 @@ "PE.Views.TableSettingsAdvanced.textSize": "大小", "PE.Views.TableSettingsAdvanced.textTitle": "表格 - 進階設定", "PE.Views.TableSettingsAdvanced.textTop": "上方", + "PE.Views.TableSettingsAdvanced.textTopLeftCorner": "左上角", "PE.Views.TableSettingsAdvanced.textVertical": "垂直", "PE.Views.TableSettingsAdvanced.textWidth": "寬度", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "邊框", diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index 63db3c87f..d9f7eca84 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -15,7 +15,7 @@ "SSE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", "SSE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert per al servidor.
Contacteu amb l'administrador del servidor de documents per a obtenir més informació.", "SSE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció «Anomena i baixa» per a desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "SSE.ApplicationController.errorLoadingFont": "No s'han carregat les famílies tipogràfiques.
Contacteu amb l'administrador del servidor de documents.", + "SSE.ApplicationController.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.
Contacteu amb l'administrador del Servidor de Documents.", "SSE.ApplicationController.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del servidor de documents.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per a assegurar-vos que no es perdi res i, després, torneu a carregar la pàgina.", "SSE.ApplicationController.errorUserDrop": "No es pot accedir al fitxer.", diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index b5a38df4c..4391486ba 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -438,8 +438,8 @@ "Common.Views.SignDialog.textTitle": "Signa el document", "Common.Views.SignDialog.textUseImage": "o fes clic a \"Selecciona imatge\" per utilitzar una imatge com a signatura", "Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2", - "Common.Views.SignDialog.tipFontName": "Nom del tipus de lletra", - "Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra", + "Common.Views.SignDialog.tipFontName": "Nom de la lletra", + "Common.Views.SignDialog.tipFontSize": "Mida de la lletra", "Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de la signatura", "Common.Views.SignSettingsDialog.textInfo": "Informació del signant", "Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic", @@ -459,7 +459,7 @@ "Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg", "Common.Views.SymbolTableDialog.textEnDash": "Guió curt", "Common.Views.SymbolTableDialog.textEnSpace": "Espai curt", - "Common.Views.SymbolTableDialog.textFont": "Tipus de lletra", + "Common.Views.SymbolTableDialog.textFont": "Lletra", "Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura", "Common.Views.SymbolTableDialog.textNBSpace": "Espai sense interrupció", "Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó", @@ -552,7 +552,7 @@ "SSE.Controllers.DocumentHolder.txtEnds": "Acaba amb", "SSE.Controllers.DocumentHolder.txtEquals": "És igual a", "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Igual al color de la cel·la", - "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Igual al color del tipus de lletra", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Igual al color de la lletra", "SSE.Controllers.DocumentHolder.txtExpand": "Amplia i ordena", "SSE.Controllers.DocumentHolder.txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Vols ampliar la selecció per incloure les dades adjacents o bé vols continuar i ordenar només les cel·les seleccionades?", "SSE.Controllers.DocumentHolder.txtFilterBottom": "Part inferior", @@ -739,7 +739,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "SSE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Per crear una taula dinàmica, utilitza les dades que s’organitzen com una llista amb columnes etiquetades.", - "SSE.Controllers.Main.errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacta amb l'administrador del Servidor de Documents.", + "SSE.Controllers.Main.errorLoadingFont": "No s'han carregat les lletres tipogràfiques.
Contacteu amb l'administrador del Servidor de Documents.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referència per a la ubicació o l'interval de dades no és vàlida.", "SSE.Controllers.Main.errorLockedAll": "Aquesta operació no es pot fer perquè un altre usuari ha bloquejat el full.", "SSE.Controllers.Main.errorLockedCellPivot": "No pots canviar les dades d'una taula dinàmica", @@ -1134,7 +1134,7 @@ "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Ets en mode de vista del full. Els filtres només són visibles per a tu i per a aquells que encara són en aquesta vista.", "SSE.Controllers.Statusbar.warnDeleteSheet": "Els fulls de càlcul seleccionats poden contenir dades. Segur que vols continuar?", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "SSE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desaràs no està disponible al dispositiu actual.
L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
Vols continuar?", + "SSE.Controllers.Toolbar.confirmAddFontName": "La lletra que desareu no està disponible al dispositiu actual.
L'estil de text es mostrarà amb una de les lletres del sistema, la lletra desada s'utilitzarà quan estigui disponible.
Voleu continuar?", "SSE.Controllers.Toolbar.errorComboSeries": "Per crear un diagrama combinat, selecciona com a mínim dues sèries de dades.", "SSE.Controllers.Toolbar.errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255", "SSE.Controllers.Toolbar.errorStockChart": "L'ordre de fila no és correcte. Per crear un gràfic de valors, col·loca les dades del full en l’ordre següent:
preu d’obertura, preu màxim, preu mínim, preu de tancament.", @@ -2050,7 +2050,7 @@ "SSE.Views.DocumentHolder.txtShowComment": "Mostra el comentari", "SSE.Views.DocumentHolder.txtSort": "Ordena", "SSE.Views.DocumentHolder.txtSortCellColor": "Color de la cel·la seleccionat a la part superior", - "SSE.Views.DocumentHolder.txtSortFontColor": "Color del tipus de lletra seleccionat a la part superior", + "SSE.Views.DocumentHolder.txtSortFontColor": "Color de la lletra seleccionat a la part superior", "SSE.Views.DocumentHolder.txtSparklines": "Gràfics sparklines", "SSE.Views.DocumentHolder.txtText": "Text", "SSE.Views.DocumentHolder.txtTextAdvanced": "Configuració avançada del paràgraf", @@ -2131,7 +2131,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador de decimals", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Idioma del diccionari", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Ràpid", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Tipus de lletra suggerides", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Lletres suggerides", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Llenguatge de la fórmula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemple: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA", @@ -2464,8 +2464,8 @@ "SSE.Views.HeaderFooterDialog.textTime": "Hora", "SSE.Views.HeaderFooterDialog.textTitle": "Configuració de capçalera/peu de pàgina", "SSE.Views.HeaderFooterDialog.textUnderline": "Subratlla", - "SSE.Views.HeaderFooterDialog.tipFontName": "Tipus de lletra", - "SSE.Views.HeaderFooterDialog.tipFontSize": "Mida del tipus de lletra", + "SSE.Views.HeaderFooterDialog.tipFontName": "Lletra", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Mida de la lletra", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Visualització", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Enllaç a", "SSE.Views.HyperlinkSettingsDialog.strRange": "Interval", @@ -2630,7 +2630,7 @@ "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Per", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Lletra", "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat", "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes", "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat", @@ -3136,7 +3136,7 @@ "SSE.Views.SortDialog.textDelete": "Suprimeix el nivell", "SSE.Views.SortDialog.textDesc": "Descendent", "SSE.Views.SortDialog.textDown": "Baixa de nivell", - "SSE.Views.SortDialog.textFontColor": "Color del tipus de lletra", + "SSE.Views.SortDialog.textFontColor": "Color de la lletra", "SSE.Views.SortDialog.textLeft": "Esquerra", "SSE.Views.SortDialog.textMoreCols": "(Més columnes...)", "SSE.Views.SortDialog.textMoreRows": "(Més files...)", @@ -3479,7 +3479,7 @@ "SSE.Views.Toolbar.tipCopyStyle": "Copia l'estil", "SSE.Views.Toolbar.tipCut": "Talla", "SSE.Views.Toolbar.tipDecDecimal": "Disminueix els decimals", - "SSE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra", + "SSE.Views.Toolbar.tipDecFont": "Redueix la mida de la lletra", "SSE.Views.Toolbar.tipDeleteOpt": "Suprimeix cel·les", "SSE.Views.Toolbar.tipDigStyleAccounting": "Estil de comptabilitat", "SSE.Views.Toolbar.tipDigStyleCurrency": "Estil de moneda", @@ -3488,13 +3488,13 @@ "SSE.Views.Toolbar.tipEditChartData": "Selecciona dades", "SSE.Views.Toolbar.tipEditChartType": "Canvia el tipus de gràfic", "SSE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina", - "SSE.Views.Toolbar.tipFontColor": "Color del tipus de lletra", - "SSE.Views.Toolbar.tipFontName": "Tipus de lletra", - "SSE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra", + "SSE.Views.Toolbar.tipFontColor": "Color de la lletra", + "SSE.Views.Toolbar.tipFontName": "Lletra", + "SSE.Views.Toolbar.tipFontSize": "Mida de la lletra", "SSE.Views.Toolbar.tipImgAlign": "Alineació d'objectes", "SSE.Views.Toolbar.tipImgGroup": "Agrupa objectes", "SSE.Views.Toolbar.tipIncDecimal": "Augmenta els decimals", - "SSE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra", + "SSE.Views.Toolbar.tipIncFont": "Augmenta la mida de la lletra", "SSE.Views.Toolbar.tipInsertChart": "Insereix un gràfic", "SSE.Views.Toolbar.tipInsertChartSpark": "Insereix un gràfic", "SSE.Views.Toolbar.tipInsertEquation": "Insereix una equació", diff --git a/apps/spreadsheeteditor/main/locale/hy.json b/apps/spreadsheeteditor/main/locale/hy.json index fa4fe39d1..82d1148a4 100644 --- a/apps/spreadsheeteditor/main/locale/hy.json +++ b/apps/spreadsheeteditor/main/locale/hy.json @@ -137,6 +137,7 @@ "Common.UI.ThemeColorPalette.textStandartColors": "Ստանդարտ գույներ", "Common.UI.ThemeColorPalette.textThemeColors": "Ոճի գույներ", "Common.UI.Themes.txtThemeClassicLight": "Դասական լույս", + "Common.UI.Themes.txtThemeContrastDark": "Մութ հակադրություն", "Common.UI.Themes.txtThemeDark": "Մութ", "Common.UI.Themes.txtThemeLight": "Լույս", "Common.UI.Themes.txtThemeSystem": "Նույնը, ինչ համակարգը", @@ -152,6 +153,9 @@ "Common.UI.Window.yesButtonText": "Այո", "Common.Utils.Metric.txtCm": "սմ", "Common.Utils.Metric.txtPt": "կտ", + "Common.Utils.String.textAlt": "Alt ստեղն", + "Common.Utils.String.textCtrl": "Ctrl ստեղն", + "Common.Utils.String.textShift": "Shift ստեղն", "Common.Views.About.txtAddress": "հասցե՝", "Common.Views.About.txtLicensee": "ԼԻՑԵՆԶԻԱ", "Common.Views.About.txtLicensor": "Լիցենզատու ", @@ -405,6 +409,7 @@ "Common.Views.SearchPanel.textReplaceAll": "Փոխարինել բոլորը", "Common.Views.SearchPanel.textReplaceWith": "Փոխարինել հետևյալով", "Common.Views.SearchPanel.textSearch": "Որոնել", + "Common.Views.SearchPanel.textSearchHasStopped": "Որոնումը դադարեցվել է", "Common.Views.SearchPanel.textSearchOptions": "Որոնման ընտրանքներ", "Common.Views.SearchPanel.textSearchResults": "Որոնման արդյունքներ՝ {0}/{1}", "Common.Views.SearchPanel.textSelectDataRange": "Ընտրեք Տվյալների տիրույթ", @@ -534,6 +539,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Սյունակ", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Սյունակի հավասարեցում", "SSE.Controllers.DocumentHolder.txtContains": "Պարունակում է", + "SSE.Controllers.DocumentHolder.txtCopySuccess": "Հղումը պատճենված է clipboard-ին", "SSE.Controllers.DocumentHolder.txtDataTableHint": "Վերադարձնում էաղյուսակի կամ աղյուսակի հատկորոշված սյունակների տվյալների բջիջները", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Նվազեցնել արգումենտի չափը", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Ջնջել արգումենտը", @@ -2022,6 +2028,7 @@ "SSE.Views.DocumentHolder.txtFormula": "Տեղադրել գործառույթը", "SSE.Views.DocumentHolder.txtFraction": "Կոտորակ", "SSE.Views.DocumentHolder.txtGeneral": "Ընդհանուր", + "SSE.Views.DocumentHolder.txtGetLink": "Ստացեք այս տիրույթի հղումը", "SSE.Views.DocumentHolder.txtGroup": "Խումբ", "SSE.Views.DocumentHolder.txtHide": "Թաքցնել", "SSE.Views.DocumentHolder.txtInsert": "Զետեղել", @@ -2120,6 +2127,7 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Իրավունքներ ունեցող անձինք", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Գործադրել", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Համախմբագրման աշխատակարգ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "Օգտագործեք 1904 թվականի ամսաթվի համակարգը", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Տասնորդական բաժանարար", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Բառարանի լեզու", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Արագ", @@ -2134,6 +2142,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Տարածաշրջանային կարգավորումներ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Օրինակ:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Ցույց տալ մեկնաբանությունները թերթիկում", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "Ցուցադրել այլ օգտատերերի կատարած փոփոխությունները", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Ցույց տալ լուծված մեկնաբանությունները", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Խիստ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Ինտերֆեյսի թեմա", @@ -2156,6 +2165,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Բուլղարերեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Կատալոներեն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Հիշապահեստի լռելյայն աշխատաձև", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "Հաշվարկում", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Սանտիմետր", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Համագործակցություն", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Չեխերեն", @@ -3427,6 +3437,7 @@ "SSE.Views.Toolbar.textScaleCustom": "Հարմարեցված", "SSE.Views.Toolbar.textSelection": "Ընթացիկ ընտրությունից", "SSE.Views.Toolbar.textSetPrintArea": "Սահմանել տպման տարածքը", + "SSE.Views.Toolbar.textShowVA": "Ցուցադրել տեսանելի տարածությունը", "SSE.Views.Toolbar.textStrikeout": "Վրագծում", "SSE.Views.Toolbar.textSubscript": "Վարգիր", "SSE.Views.Toolbar.textSubSuperscript": "Բաժանորդագրություն/Վերածանց", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index e481c18af..4657fc195 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -3213,7 +3213,7 @@ "SSE.Views.Statusbar.itemMinimum": "最小", "SSE.Views.Statusbar.itemMove": "移動", "SSE.Views.Statusbar.itemProtect": "保護する", - "SSE.Views.Statusbar.itemRename": "名前の変更", + "SSE.Views.Statusbar.itemRename": "名前を変更する", "SSE.Views.Statusbar.itemStatus": "保存の状況​​", "SSE.Views.Statusbar.itemSum": "合計", "SSE.Views.Statusbar.itemTabColor": "シート見出しの色", diff --git a/apps/spreadsheeteditor/main/locale/ms.json b/apps/spreadsheeteditor/main/locale/ms.json index c54daec72..a4bf5f937 100644 --- a/apps/spreadsheeteditor/main/locale/ms.json +++ b/apps/spreadsheeteditor/main/locale/ms.json @@ -117,6 +117,10 @@ "Common.UI.InputFieldBtnPassword.textHintHidePwd": "Sembunyikan kata laluan", "Common.UI.InputFieldBtnPassword.textHintShowPwd": "Tunjuk kata laluan", "Common.UI.SearchBar.textFind": "Cari", + "Common.UI.SearchBar.tipCloseSearch": "Tutup carian", + "Common.UI.SearchBar.tipNextResult": "Keputusan seterusnya", + "Common.UI.SearchBar.tipOpenAdvancedSettings": "Buka tetapan lanjutan", + "Common.UI.SearchBar.tipPreviousResult": "Keputusan sebelum", "Common.UI.SearchDialog.textHighlight": "Keputusan Sorotan Penting", "Common.UI.SearchDialog.textMatchCase": "Sensitif huruf", "Common.UI.SearchDialog.textReplaceDef": "Masukkan teks gantian", @@ -129,9 +133,11 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Gantikan Semua", "Common.UI.SynchronizeTip.textDontShow": "Jangan tunjukkan mesej ini semula", "Common.UI.SynchronizeTip.textSynchronize": "Dokumen telah ditukar dengan pengguna yang lain.
Sila klik untuk simpan perubahan anda dan muat semula kemas kini.", + "Common.UI.ThemeColorPalette.textRecentColors": "Warna Terkini", "Common.UI.ThemeColorPalette.textStandartColors": "Warna Standard", "Common.UI.ThemeColorPalette.textThemeColors": "Warna Tema", "Common.UI.Themes.txtThemeClassicLight": "Klasik Cerah", + "Common.UI.Themes.txtThemeContrastDark": "Kontras Gelap", "Common.UI.Themes.txtThemeDark": "Gelap", "Common.UI.Themes.txtThemeLight": "Ringan", "Common.UI.Themes.txtThemeSystem": "Sama seperti Sistem", @@ -147,6 +153,9 @@ "Common.UI.Window.yesButtonText": "Ya", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", + "Common.Utils.String.textAlt": "Alt", + "Common.Utils.String.textCtrl": "Ctrl", + "Common.Utils.String.textShift": "Anjak", "Common.Views.About.txtAddress": "alamat ", "Common.Views.About.txtLicensee": "LESENKAN", "Common.Views.About.txtLicensor": "PEMBERI LESEN", @@ -238,6 +247,7 @@ "Common.Views.Header.tipSearch": "Carian", "Common.Views.Header.tipUndo": "Buat semula", "Common.Views.Header.tipUndock": "Keluar dok ke tetingkap berasingan", + "Common.Views.Header.tipUsers": "Lihat Pengguna", "Common.Views.Header.tipViewSettings": "Lihat seting", "Common.Views.Header.tipViewUsers": "Lihat pengguna dan uruskan hak akses dokumen", "Common.Views.Header.txtAccessRights": "Ubah hak akses", @@ -295,6 +305,7 @@ "Common.Views.PluginDlg.textLoading": "Memuatkan", "Common.Views.Plugins.groupCaption": "Plug masuk", "Common.Views.Plugins.strPlugins": "Plug masuk", + "Common.Views.Plugins.textClosePanel": "Tutup pasang masuk", "Common.Views.Plugins.textLoading": "Memuatkan", "Common.Views.Plugins.textStart": "Mulakan", "Common.Views.Plugins.textStop": "Henti", @@ -383,21 +394,35 @@ "Common.Views.SearchPanel.textByRows": "Mengikut baris", "Common.Views.SearchPanel.textCaseSensitive": "Sensitif huruf", "Common.Views.SearchPanel.textCell": "Sel", + "Common.Views.SearchPanel.textCloseSearch": "Tutup carian", "Common.Views.SearchPanel.textFind": "Cari", "Common.Views.SearchPanel.textFindAndReplace": "Cari dan Ganti", "Common.Views.SearchPanel.textFormula": "Formula", "Common.Views.SearchPanel.textFormulas": "Formula", + "Common.Views.SearchPanel.textItemEntireCell": "Keseluruhan kandungan sel", "Common.Views.SearchPanel.textLookIn": "Cari Ke Dalam", + "Common.Views.SearchPanel.textMatchUsingRegExp": "Sepadan menggunakan ungkapan biasa", "Common.Views.SearchPanel.textName": "Nama", + "Common.Views.SearchPanel.textNoMatches": "Tiada padanan", + "Common.Views.SearchPanel.textNoSearchResults": "Tiada carian keputusan", "Common.Views.SearchPanel.textReplace": "Gantikan", "Common.Views.SearchPanel.textReplaceAll": "Gantikan Semua", + "Common.Views.SearchPanel.textReplaceWith": "Gantikan dengan", "Common.Views.SearchPanel.textSearch": "Carian", + "Common.Views.SearchPanel.textSearchHasStopped": "Carian telah dihentikan", + "Common.Views.SearchPanel.textSearchOptions": "Pilihan carian", + "Common.Views.SearchPanel.textSearchResults": "Keputusan carian: {0}/{1}", + "Common.Views.SearchPanel.textSelectDataRange": "Pilih Julat Data", "Common.Views.SearchPanel.textSheet": "Helaian", + "Common.Views.SearchPanel.textSpecificRange": "Tunjukkan Kawasan Boleh Dilihat", + "Common.Views.SearchPanel.textTooManyResults": "Terlalu banyak keputusan untuk dipaparkan di sini", "Common.Views.SearchPanel.textValue": "Nilai", "Common.Views.SearchPanel.textValues": "Nilai", "Common.Views.SearchPanel.textWholeWords": "Seluruh perkataan sahaja", "Common.Views.SearchPanel.textWithin": "Di dalam", "Common.Views.SearchPanel.textWorkbook": "Buku kerja", + "Common.Views.SearchPanel.tipNextResult": "Keputusan seterusnya", + "Common.Views.SearchPanel.tipPreviousResult": "Keputusan sebelum", "Common.Views.SelectFileDlg.textLoading": "Memuatkan", "Common.Views.SelectFileDlg.textTitle": "Pilih Sumber Data", "Common.Views.SignDialog.textBold": "Tebal", @@ -514,6 +539,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "Lajur", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Penjajaran lajur", "SSE.Controllers.DocumentHolder.txtContains": "Mengandungi", + "SSE.Controllers.DocumentHolder.txtCopySuccess": "Pautan disalin ke papan klip", "SSE.Controllers.DocumentHolder.txtDataTableHint": "Kembalikan data sel bagi jadual atau lajur jadual tertentu", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Kecilkan saiz argument", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Padam argument", @@ -532,6 +558,7 @@ "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bawah", "SSE.Controllers.DocumentHolder.txtFilterTop": "Atas", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Ubah ke pecahan linear", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Tukar kepada pecahan terpencong", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Ubah ke pecahan bertindan", "SSE.Controllers.DocumentHolder.txtGreater": "Lebih besar dari", "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Lebih besar dari atau sama dengan", @@ -679,6 +706,7 @@ "SSE.Controllers.Main.errorChangeOnProtectedSheet": "Sel atau carta yang anda cuba ubah ialah helaian dilindung.
Untuk membuat perubahan, nyahlindung helaian. Anda mungkin diminta untuk memasukkan kata laluan.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Pelayan sambungan hilang. Dokumen tidak dapat diedit buat masa sekarang.", "SSE.Controllers.Main.errorConnectToServer": "Dokumen tidak dapat disimpan. Sila semak seting sambungan atau hubungi pentadbir anda.
Apabila anda klik butang ‘OK’, anda akan diminta untuk muat turun dokumen.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Perintah ini tidak boleh digunakan dengan berbilang pilihan.
Pilih julat tunggal dan cuba lagi.", "SSE.Controllers.Main.errorCountArg": "Terdapat ralat dalam formula yang dimasukkan.
Nombor argumen yang tidak betul digunakan.", "SSE.Controllers.Main.errorCountArgExceed": "Terdapat ralat dalam formula yang dimasukkan.
Bilangan argumen telah melebihi.", "SSE.Controllers.Main.errorCreateDefName": "Julat nama sedia ada tidak boleh diedit dan yang baharu tidak boleh dicipta
pada masa sekarang kerana beberapa daripadanya sedang diedit.", @@ -805,8 +833,10 @@ "SSE.Controllers.Main.textPleaseWait": "Operasi ini mungkin mengambil lebih masa berbanding jangkaan. Sila, tunggu…", "SSE.Controllers.Main.textReconnect": "Sambungan dipulihkan", "SSE.Controllers.Main.textRemember": "Ingat pilihan saya untuk semua fail", + "SSE.Controllers.Main.textRememberMacros": "Ingati pilihan saya untuk semua makro", "SSE.Controllers.Main.textRenameError": "Nama pengguna tidak boleh kosong.", "SSE.Controllers.Main.textRenameLabel": "Masukkan nama untuk digunakan bagi kerjasama", + "SSE.Controllers.Main.textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?", "SSE.Controllers.Main.textShape": "Bentuk", "SSE.Controllers.Main.textStrict": "Mod tegas", "SSE.Controllers.Main.textTryUndoRedo": "Fungsi Buat asal/Buat semula dinyahdayakan bagi mod pengeditan bersama.
Klik butang ‘Strict mode’ untuk menukar kepada mod pengeditan Bersama Tegas untuk mengedit fail tanpa gangguan pengguna lain dan menghantar perubahan anda hanya selepas anda menyimpannya. Anda boleh bertukar di antara mod-mod pengeditan Bersama menngunakan seting Lanjutan editor.", @@ -1095,6 +1125,7 @@ "SSE.Controllers.Search.textInvalidRange": "RALAT! Julat sel tidak sah", "SSE.Controllers.Search.textNoTextFound": "Data yang andaa sedang cari tidak dijumpai. Sila laras pilihan carian.", "SSE.Controllers.Search.textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.", + "SSE.Controllers.Search.textReplaceSuccess": "Carian telah dilakukan. Kejadian {0} telah digantikan", "SSE.Controllers.Statusbar.errorLastSheet": "Buku kerja mestilah mempunyai sekurang-kurangnya satu lembaran kerja yang kelihatan.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Tidak boleh memadam lembaran kerja.", "SSE.Controllers.Statusbar.strSheet": "Helaian", @@ -1377,6 +1408,7 @@ "SSE.Controllers.Toolbar.txtSymbol_beth": "Bidaan", "SSE.Controllers.Toolbar.txtSymbol_bullet": "Bulet operator", "SSE.Controllers.Toolbar.txtSymbol_cap": "Persilangan", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Punca Kuasa Tiga", "SSE.Controllers.Toolbar.txtSymbol_cdots": "Elipsis mendatar pertengahan baris", "SSE.Controllers.Toolbar.txtSymbol_celsius": "Darjah Celsius", "SSE.Controllers.Toolbar.txtSymbol_chi": "Ci", @@ -1427,6 +1459,7 @@ "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", "SSE.Controllers.Toolbar.txtSymbol_plus": "Tambah", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Tambah Tolak", "SSE.Controllers.Toolbar.txtSymbol_propto": "Berkadaran Dengan", "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Punca kuasa empat", @@ -1639,6 +1672,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "Kedudukan Paksi", "SSE.Views.ChartSettingsDlg.textAxisSettings": "Seting Paksi", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Tajuk", + "SSE.Views.ChartSettingsDlg.textBase": "Asas", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Di antara Tick Marks", "SSE.Views.ChartSettingsDlg.textBillions": "Bilion", "SSE.Views.ChartSettingsDlg.textBottom": "Bawah", @@ -1687,6 +1721,7 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "Atas", "SSE.Views.ChartSettingsDlg.textLines": "Garis ", "SSE.Views.ChartSettingsDlg.textLocationRange": "Julat Lokasi", + "SSE.Views.ChartSettingsDlg.textLogScale": "Skala Logaritma", "SSE.Views.ChartSettingsDlg.textLow": "Rendah", "SSE.Views.ChartSettingsDlg.textMajor": "Major", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major dan Minor", @@ -1878,6 +1913,7 @@ "SSE.Views.DocumentHolder.bottomCellText": "Jajarkan Bawah", "SSE.Views.DocumentHolder.bulletsText": "Bullet dan Penomboran,", "SSE.Views.DocumentHolder.centerCellText": "Jajarkan Tengah", + "SSE.Views.DocumentHolder.chartDataText": "Pilih Data Carta", "SSE.Views.DocumentHolder.chartText": "Seting Lanjutan Carta", "SSE.Views.DocumentHolder.chartTypeText": "Ubah Jenis Carta", "SSE.Views.DocumentHolder.deleteColumnText": "Lajur", @@ -1992,6 +2028,7 @@ "SSE.Views.DocumentHolder.txtFormula": "Sisipkan Fungsi", "SSE.Views.DocumentHolder.txtFraction": "Pecahan", "SSE.Views.DocumentHolder.txtGeneral": "Am", + "SSE.Views.DocumentHolder.txtGetLink": "Dapatkan pautan kepada julat ini", "SSE.Views.DocumentHolder.txtGroup": "Kumpulan", "SSE.Views.DocumentHolder.txtHide": "Sembunyikan", "SSE.Views.DocumentHolder.txtInsert": "Sisipkan", @@ -2083,12 +2120,14 @@ "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Pemilik", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokasi", "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Orang yang mempunyai hak", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subjek", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tajuk", "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Dimuat naik", "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Ubah hak akses", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Orang yang mempunyai hak", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Guna", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mod Pengeditan-bersama", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "Guna system data 1904", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Pemisah perpuluhan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Bahasa kamus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Pantas", @@ -2102,6 +2141,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "Gaya Rujukan R1C1", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Seting wilayah", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Contoh: ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "Tunjukkan komen dalam helaian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "Tunjukkan perubahan daripada pengguna lain", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "Tunjukkan komen yang diselesaikan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Tegas", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema antara muka", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Pemisah ribu", @@ -2123,14 +2165,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalonia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Mod Cache Lalai", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "Sedang Mengira", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Sentimeter", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "Kerjasama", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Jerman", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEditingSaving": "Pengeditan dan menyimpan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Bahasa Inggeris", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Bahasa Sepanyol", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFastTip": "Pengeditan bersama masa nyata, Semua perubahan disimpan secara automatik.", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finland", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Perancis", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungary", @@ -2150,6 +2195,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Mata", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugis (Brazil)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugis (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "Rantau", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Roman", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rusia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Mendayakan Semua", @@ -2158,13 +2204,17 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Bahasa Slovenia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Nyahdayakan Semua", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Nyahdayakan semua makro tanpa pemberitahuan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStrictTip": "Guna butang “Simpan” untuk segerakkan perubahan yang anda dan orang lain lakukan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Sweden", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turki", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukraine", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseAltKey": "Guna kunci Alt untuk navigasi pengguna", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUseOptionKey": "Guna kunci Pilihan untuk navigasi antara muka pengguna menggunakan papan kekunci", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnam", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Tunjuk Pemberitahuan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Nyahdayakan semua makro dengan pemberitahuan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "sebagai Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWorkspace": "Ruang kerja", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Cina", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Amaran", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Dengan kata laluan", @@ -2248,6 +2298,7 @@ "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Anda tidak boleh menggunakan rujukan relatif dalam kriteria pemformatan bersyarat bagi skala warna, bar data dan set ikon.", "SSE.Views.FormatRulesEditDlg.textReverse": "Tertib Songsang Ikon", "SSE.Views.FormatRulesEditDlg.textRight2Left": "Kanan ke Kiri", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Sempadan Kanan", "SSE.Views.FormatRulesEditDlg.textRule": "Peraturan", "SSE.Views.FormatRulesEditDlg.textSameAs": "Sama seperti positif", "SSE.Views.FormatRulesEditDlg.textSelectData": "Pilih Data", @@ -2483,6 +2534,7 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Menyemak Ejaan", "SSE.Views.LeftMenu.tipSupport": "Maklum Balas & Sokongan", "SSE.Views.LeftMenu.txtDeveloper": "MOD PEMAJU", + "SSE.Views.LeftMenu.txtEditor": "Editor Hamparan", "SSE.Views.LeftMenu.txtLimit": "Had Akses", "SSE.Views.LeftMenu.txtTrial": "MOD PERCUBAAN", "SSE.Views.LeftMenu.txtTrialDev": "Mod Percubaan Pembina", @@ -2558,6 +2610,7 @@ "SSE.Views.PageMarginsDialog.textTitle": "Margin", "SSE.Views.PageMarginsDialog.textTop": "Atas", "SSE.Views.ParagraphSettings.strLineHeight": "Jarak Garis", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Jarak Perenggan", "SSE.Views.ParagraphSettings.strSpacingAfter": "Selepas", "SSE.Views.ParagraphSettings.strSpacingBefore": "Sebelum", "SSE.Views.ParagraphSettings.textAdvanced": "Tunjukkan seting lanjutan", @@ -2663,7 +2716,9 @@ "SSE.Views.PivotSettingsAdvanced.strLayout": "Nama dan Talaletak", "SSE.Views.PivotSettingsAdvanced.textAlt": "Teks Berselang", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Perihalan", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka lebih memahami maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Tajuk", + "SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Automuat lebar lajur semasa kemas kini", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Julat Tarikh", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Sumber Data", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Medan dalam laporan tapisan kawasan dipaparkan", @@ -2864,6 +2919,7 @@ "SSE.Views.RightMenu.txtPivotSettings": "Seting Jadual Pivot", "SSE.Views.RightMenu.txtSettings": "Seting biasa", "SSE.Views.RightMenu.txtShapeSettings": "Seting bentuk", + "SSE.Views.RightMenu.txtSignatureSettings": "Tetapan tandatangan", "SSE.Views.RightMenu.txtSlicerSettings": "Seting Penghiris", "SSE.Views.RightMenu.txtSparklineSettings": "Seting sparkline", "SSE.Views.RightMenu.txtTableSettings": "Seting Jadual", @@ -3041,6 +3097,7 @@ "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Jangan alih atau saiz dengan sel", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Teks Berselang", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Perihalan", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka lebih memahami maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.", "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Tajuk", "SSE.Views.SlicerSettingsAdvanced.textAsc": "Meningkat", "SSE.Views.SlicerSettingsAdvanced.textAZ": "A ke Z", @@ -3134,6 +3191,7 @@ "SSE.Views.Spellcheck.textIgnore": "Abaikan", "SSE.Views.Spellcheck.textIgnoreAll": "Abaikan Semua", "SSE.Views.Spellcheck.txtAddToDictionary": "Tambah Kepada Kamus", + "SSE.Views.Spellcheck.txtClosePanel": "Tutup ejaan", "SSE.Views.Spellcheck.txtComplete": "Semak ejaan telah dilengkapkan", "SSE.Views.Spellcheck.txtDictionaryLanguage": "Bahasa kamus", "SSE.Views.Spellcheck.txtNextTip": "Pergi ke perkataan seterusnya", @@ -3232,6 +3290,7 @@ "SSE.Views.TableSettings.warnLongOperation": "Operasi yang anda akan lakukan mungkin mengambil lebih masa untuk lengkap.
Adakah anda pasti mahu teruskan?", "SSE.Views.TableSettingsAdvanced.textAlt": "Teks Berselang", "SSE.Views.TableSettingsAdvanced.textAltDescription": "Perihalan", + "SSE.Views.TableSettingsAdvanced.textAltTip": "Perwakilan berasaskan teks alternatif bagi maklumat objek visual, yang akan dibacakan kepada orang yang mengalami masalah penglihatan atau kognitif untuk membantu mereka lebih memahami maklumat yang terdapat dalam imej, bentuk auto, carta atau jadual.", "SSE.Views.TableSettingsAdvanced.textAltTitle": "Tajuk", "SSE.Views.TableSettingsAdvanced.textTitle": "Jadual – Seting Lanjutan", "SSE.Views.TextArtSettings.strBackground": "Warna latar belakang", @@ -3335,10 +3394,12 @@ "SSE.Views.Toolbar.textDiagDownBorder": "Sempadan Bawah Pepenjuru", "SSE.Views.Toolbar.textDiagUpBorder": "Sempadan Atas Pepenjuru", "SSE.Views.Toolbar.textDone": "Siap", + "SSE.Views.Toolbar.textEditVA": "Edit Kawasan Boleh Dilihat", "SSE.Views.Toolbar.textEntireCol": "Keseluruhan Lajur", "SSE.Views.Toolbar.textEntireRow": "Keseluruhan baris", "SSE.Views.Toolbar.textFewPages": "halaman", "SSE.Views.Toolbar.textHeight": "Ketinggian", + "SSE.Views.Toolbar.textHideVA": "Sembunyikan Kawasan Boleh Dilihat", "SSE.Views.Toolbar.textHorizontal": "Teks Melintang", "SSE.Views.Toolbar.textInsDown": "Anjakkan sel ke bawah", "SSE.Views.Toolbar.textInsideBorders": "Dalam Sempadan", @@ -3369,12 +3430,14 @@ "SSE.Views.Toolbar.textPrintHeadings": "Pengepala Cetakan", "SSE.Views.Toolbar.textPrintOptions": "Seting Cetakan", "SSE.Views.Toolbar.textRight": "Kanan:", + "SSE.Views.Toolbar.textRightBorders": "Sempadan Kanan", "SSE.Views.Toolbar.textRotateDown": "Putar Teks Ke Bawah", "SSE.Views.Toolbar.textRotateUp": "Putar Teks Ke Atas", "SSE.Views.Toolbar.textScale": "Skala", "SSE.Views.Toolbar.textScaleCustom": "Tersuai", "SSE.Views.Toolbar.textSelection": "Dari pilihan semasa", "SSE.Views.Toolbar.textSetPrintArea": "Tetapkan Kawasan Cetakan", + "SSE.Views.Toolbar.textShowVA": "Tunjukkan Kawasan Boleh Dilihat", "SSE.Views.Toolbar.textStrikeout": "Garis Lorek", "SSE.Views.Toolbar.textSubscript": "Subskrip", "SSE.Views.Toolbar.textSubSuperscript": "Subskrip/superskrip", @@ -3464,8 +3527,10 @@ "SSE.Views.Toolbar.tipSendBackward": "Hantar ke belakang", "SSE.Views.Toolbar.tipSendForward": "Bawa Ke Hadapan", "SSE.Views.Toolbar.tipSynchronize": "Dokumen telah ditukar dengan pengguna yang lain. Sila klik untuk simpan perubahan anda dan muat semula kemas kini.", + "SSE.Views.Toolbar.tipTextFormatting": "Lebih teks alat pemformatan", "SSE.Views.Toolbar.tipTextOrientation": "Orientasi", "SSE.Views.Toolbar.tipUndo": "Buat semula", + "SSE.Views.Toolbar.tipVisibleArea": "Kawasan Kelihatan", "SSE.Views.Toolbar.tipWrap": "Balut teks", "SSE.Views.Toolbar.txtAccounting": "Perakaunan", "SSE.Views.Toolbar.txtAdditional": "Tambahan", diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json index 377087644..18735fe7c 100644 --- a/apps/spreadsheeteditor/main/locale/pl.json +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -384,6 +384,8 @@ "Common.Views.ReviewPopover.txtEditTip": "Edytuj", "Common.Views.SaveAsDlg.textLoading": "Ładowanie", "Common.Views.SaveAsDlg.textTitle": "Folder do zapisu", + "Common.Views.SearchPanel.textByColumns": "Przez kolumny", + "Common.Views.SearchPanel.textByRows": "Przez wiersze", "Common.Views.SearchPanel.textCaseSensitive": "Rozróżniana wielkość liter", "Common.Views.SearchPanel.textCell": "Komórka", "Common.Views.SearchPanel.textCloseSearch": "Zamknij wyszukiwanie", @@ -391,6 +393,8 @@ "Common.Views.SearchPanel.textFindAndReplace": "Znajdź i zamień", "Common.Views.SearchPanel.textFormula": "Formuła", "Common.Views.SearchPanel.textFormulas": "Formuły", + "Common.Views.SearchPanel.textItemEntireCell": "Cała zawartość komórki", + "Common.Views.SearchPanel.textLookIn": "Szukaj w", "Common.Views.SearchPanel.textName": "Nazwa", "Common.Views.SearchPanel.textNoMatches": "Brak dopasowań", "Common.Views.SearchPanel.textNoSearchResults": "Brak wyników wyszukiwania", @@ -398,10 +402,14 @@ "Common.Views.SearchPanel.textReplaceAll": "Zamień wszystko", "Common.Views.SearchPanel.textSearch": "Szukaj", "Common.Views.SearchPanel.textSearchOptions": "Opcje wyszukiwania", + "Common.Views.SearchPanel.textSelectDataRange": "Wybierz zakres danych", "Common.Views.SearchPanel.textSheet": "Arkusz", + "Common.Views.SearchPanel.textTooManyResults": "Jest zbyt dużo wyników, aby je tutaj wyświetlić", "Common.Views.SearchPanel.textValue": "Wartość", "Common.Views.SearchPanel.textValues": "Wartości", "Common.Views.SearchPanel.textWholeWords": "Tylko całe słowa", + "Common.Views.SearchPanel.textWithin": "W ciągu", + "Common.Views.SearchPanel.textWorkbook": "Skoroszyt", "Common.Views.SearchPanel.tipNextResult": "Następny wynik", "Common.Views.SearchPanel.tipPreviousResult": "Wcześniejszy wynik", "Common.Views.SelectFileDlg.textLoading": "Ładowanie", @@ -1093,6 +1101,9 @@ "SSE.Controllers.Print.textWarning": "Ostrzeżenie", "SSE.Controllers.Print.txtCustom": "Niestandardowy", "SSE.Controllers.Print.warnCheckMargings": "Marginesy są błędne", + "SSE.Controllers.Search.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek", + "SSE.Controllers.Search.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "SSE.Controllers.Search.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.", "SSE.Controllers.Statusbar.errorLastSheet": "Skoroszyt musi zawierać co najmniej jeden widoczny arkusz roboczy.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Nie można usunąć arkusza.", "SSE.Controllers.Statusbar.strSheet": "Arkusz", @@ -1597,6 +1608,7 @@ "SSE.Views.ChartDataRangeDialog.txtValues": "Wartości serii", "SSE.Views.ChartDataRangeDialog.txtXValues": "Wartość X", "SSE.Views.ChartDataRangeDialog.txtYValues": "Wartość Y", + "SSE.Views.ChartSettings.errorMaxRows": "Maksymalna liczba serii danych na wykres to 255.", "SSE.Views.ChartSettings.strLineWeight": "Waga linii", "SSE.Views.ChartSettings.strSparkColor": "Kolor", "SSE.Views.ChartSettings.strTemplate": "Szablon", @@ -1618,6 +1630,7 @@ "SSE.Views.ChartSettings.textShow": "Pokaż", "SSE.Views.ChartSettings.textSize": "Rozmiar", "SSE.Views.ChartSettings.textStyle": "Styl", + "SSE.Views.ChartSettings.textSwitch": "Przełącz wiersz/kolumnę", "SSE.Views.ChartSettings.textType": "Typ", "SSE.Views.ChartSettings.textWidth": "Szerokość", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "BŁĄD! Maksymalna liczba punktów w serii na wykres to 4096.", @@ -1876,6 +1889,7 @@ "SSE.Views.DocumentHolder.bulletsText": "Kule i numeracja", "SSE.Views.DocumentHolder.centerCellText": "Wyrównaj do środka", "SSE.Views.DocumentHolder.chartText": "Zaawansowane ustawienia wykresu", + "SSE.Views.DocumentHolder.chartTypeText": "Zmień typ wykresu", "SSE.Views.DocumentHolder.deleteColumnText": "Kolumna", "SSE.Views.DocumentHolder.deleteRowText": "Wiersz", "SSE.Views.DocumentHolder.deleteTableText": "Tabela", @@ -2078,10 +2092,12 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Zatwierdź", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Tryb współtworzenia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separator liczb dziesiętnych", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "Język słownika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Szybki", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Podpowiedź czcionki", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Język formuły", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Przykład: SUMA; MIN; MAX; LICZYĆ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsInUPPERCASE": "Ignoruj słowa pisane WIELKIMI LITERAMI", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strIgnoreWordsWithNumbers": "Ignoruj słowa z liczbami", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Ustawienia Makr", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Pokaż przycisk opcji wklejania po wklejeniu zawartości", @@ -2103,6 +2119,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Zapisywanie wersji pośrednich", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Każda minuta", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Styl linków", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtAutoCorrect": "Opcje Autokorekty...", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Białoruski", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bułgarski", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Kataloński", @@ -2130,6 +2147,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norweski", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Holenderski", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polski", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtProofing": "Sprawdzanie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portugalski (Brazylia)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugalski (Portugalia)", @@ -2470,6 +2488,7 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Sprawdzanie pisowni", "SSE.Views.LeftMenu.tipSupport": "Opinie i wsparcie", "SSE.Views.LeftMenu.txtDeveloper": "TRYB DEWELOPERA", + "SSE.Views.LeftMenu.txtEditor": "Edytor arkusza kalkulacyjnego", "SSE.Views.LeftMenu.txtLimit": "Ograniczony dostęp", "SSE.Views.LeftMenu.txtTrial": "PRÓBNY TRYB", "SSE.Views.LeftMenu.txtTrialDev": "Próbny tryb programisty", @@ -2760,7 +2779,11 @@ "SSE.Views.PrintWithPreview.txtCustom": "Własne", "SSE.Views.PrintWithPreview.txtCustomOptions": "Opcje niestandardowe", "SSE.Views.PrintWithPreview.txtEmptyTable": "Nie ma niczego do wydrukowania", + "SSE.Views.PrintWithPreview.txtFitCols": "Dopasuj rozmiary wszystkich kolumn na stronie", "SSE.Views.PrintWithPreview.txtFitPage": "Dopasuj arkusz na jednej stronie", + "SSE.Views.PrintWithPreview.txtFitRows": "Dopasuj wszystkie wiersze na jednej stronie", + "SSE.Views.PrintWithPreview.txtHeaderFooterSettings": "Ustawienia nagłówka/stopki", + "SSE.Views.PrintWithPreview.txtIgnore": "Ignoruj obszar drukowania", "SSE.Views.PrintWithPreview.txtLandscape": "Pozioma", "SSE.Views.PrintWithPreview.txtLeft": "Lewy", "SSE.Views.PrintWithPreview.txtMargins": "Marginesy", @@ -2771,11 +2794,15 @@ "SSE.Views.PrintWithPreview.txtPortrait": "Pionowa", "SSE.Views.PrintWithPreview.txtPrint": "Drukuj", "SSE.Views.PrintWithPreview.txtPrintGrid": "Drukuj siatkę", + "SSE.Views.PrintWithPreview.txtPrintHeadings": "Drukuj wiersze i kolumny", "SSE.Views.PrintWithPreview.txtPrintRange": "Zakres wydruku", "SSE.Views.PrintWithPreview.txtPrintTitles": "Wydrukuj tytuły", "SSE.Views.PrintWithPreview.txtRepeat": "Powtarzać...", + "SSE.Views.PrintWithPreview.txtRepeatColumnsAtLeft": "Powtórz kolumny po lewej", + "SSE.Views.PrintWithPreview.txtRepeatRowsAtTop": "Powtórz wiersze z góry", "SSE.Views.PrintWithPreview.txtRight": "Prawy", "SSE.Views.PrintWithPreview.txtSave": "Zapisz", + "SSE.Views.PrintWithPreview.txtScaling": "Scalanie", "SSE.Views.PrintWithPreview.txtSelection": "Zaznaczenie", "SSE.Views.PrintWithPreview.txtSettingsOfSheet": "Ustawienia arkusza", "SSE.Views.PrintWithPreview.txtSheet": "Arkusz: {0}", @@ -3346,6 +3373,7 @@ "SSE.Views.Toolbar.textPageMarginsCustom": "Niestandardowe marginesy", "SSE.Views.Toolbar.textPortrait": "Pionowa", "SSE.Views.Toolbar.textPrint": "Drukuj", + "SSE.Views.Toolbar.textPrintGridlines": "Drukuj siatkę", "SSE.Views.Toolbar.textPrintOptions": "Ustawienia drukowania", "SSE.Views.Toolbar.textRight": "Prawo:", "SSE.Views.Toolbar.textRightBorders": "Prawe krawędzie", @@ -3394,6 +3422,7 @@ "SSE.Views.Toolbar.tipCondFormat": "Formatowanie warunkowe", "SSE.Views.Toolbar.tipCopy": "Kopiuj", "SSE.Views.Toolbar.tipCopyStyle": "Kopiuj styl", + "SSE.Views.Toolbar.tipCut": "Wytnij", "SSE.Views.Toolbar.tipDecDecimal": "Zmniejsz ilość cyfr po przecinku", "SSE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki", "SSE.Views.Toolbar.tipDeleteOpt": "Usuń komórki", @@ -3439,6 +3468,7 @@ "SSE.Views.Toolbar.tipSave": "Zapisz", "SSE.Views.Toolbar.tipSaveCoauth": "Zapisz swoje zmiany, aby inni użytkownicy mogli je zobaczyć.", "SSE.Views.Toolbar.tipScale": "Skaluj do rozmiaru", + "SSE.Views.Toolbar.tipSelectAll": "Zaznacz wszystko", "SSE.Views.Toolbar.tipSendBackward": "Przenieś do tyłu", "SSE.Views.Toolbar.tipSendForward": "Przenieś do przodu", "SSE.Views.Toolbar.tipSynchronize": "Dokument został zmieniony przez innego użytkownika. Kliknij, aby zapisać swoje zmiany i ponownie załadować zmiany.", @@ -3582,6 +3612,7 @@ "SSE.Views.ViewTab.textHeadings": "Nagłówki", "SSE.Views.ViewTab.textInterfaceTheme": "Motyw interfejsu", "SSE.Views.ViewTab.textManager": "Menadżer prezentacji", + "SSE.Views.ViewTab.textShowFrozenPanesShadow": "Pokaż cień dla zadokowanych obszarów", "SSE.Views.ViewTab.textUnFreeze": "Odblokuj panele", "SSE.Views.ViewTab.textZeros": "Wyświetl zera", "SSE.Views.ViewTab.textZoom": "Powiększenie", diff --git a/apps/spreadsheeteditor/main/locale/pt-pt.json b/apps/spreadsheeteditor/main/locale/pt-pt.json index 77f120069..980c1fa02 100644 --- a/apps/spreadsheeteditor/main/locale/pt-pt.json +++ b/apps/spreadsheeteditor/main/locale/pt-pt.json @@ -2718,6 +2718,7 @@ "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Descrição", "SSE.Views.PivotSettingsAdvanced.textAltTip": "A representação alternativa baseada em texto da informação do objeto visual, que será lida às pessoas com deficiências visuais ou cognitivas para as ajudar a compreender melhor a informação que existe na imagem, forma automática, gráfico ou tabela.", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Título", + "SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "Ajustar automaticamente largura de coluna ao atualizar", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Intervalo de dados", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Fonte de dados", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Mostrar campos na área de filtros de relatórios", diff --git a/apps/spreadsheeteditor/main/locale/zh-tw.json b/apps/spreadsheeteditor/main/locale/zh-tw.json index 4937eb127..1e5fdc5d2 100644 --- a/apps/spreadsheeteditor/main/locale/zh-tw.json +++ b/apps/spreadsheeteditor/main/locale/zh-tw.json @@ -410,9 +410,11 @@ "Common.Views.SearchPanel.textReplaceWith": "替換為", "Common.Views.SearchPanel.textSearch": "搜尋", "Common.Views.SearchPanel.textSearchHasStopped": "搜索已停止", + "Common.Views.SearchPanel.textSearchOptions": "搜索選項", "Common.Views.SearchPanel.textSearchResults": "搜索结果:{0}/{1}", "Common.Views.SearchPanel.textSelectDataRange": "選擇數據范圍", "Common.Views.SearchPanel.textSheet": "表格", + "Common.Views.SearchPanel.textSpecificRange": "特定範圍", "Common.Views.SearchPanel.textTooManyResults": "因數量過多而無法顯示部分結果", "Common.Views.SearchPanel.textValue": "值", "Common.Views.SearchPanel.textValues": "值", @@ -537,6 +539,7 @@ "SSE.Controllers.DocumentHolder.txtColumn": "欄", "SSE.Controllers.DocumentHolder.txtColumnAlign": "欄位對準", "SSE.Controllers.DocumentHolder.txtContains": "包含", + "SSE.Controllers.DocumentHolder.txtCopySuccess": "連結已複製到剪貼板", "SSE.Controllers.DocumentHolder.txtDataTableHint": "回傳表格儲存格,或指定的表格儲存格", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "減小參數大小", "SSE.Controllers.DocumentHolder.txtDeleteArg": "刪除參數", @@ -1120,6 +1123,7 @@ "SSE.Controllers.Print.txtCustom": "自訂", "SSE.Controllers.Print.warnCheckMargings": "邊界錯誤", "SSE.Controllers.Search.textInvalidRange": "錯誤!無效的單元格範圍", + "SSE.Controllers.Search.textNoTextFound": "找不到您一直在搜索的數據。請調整您的搜索選項。", "SSE.Controllers.Search.textReplaceSkipped": "替換已完成。 {0}個事件被跳過。", "SSE.Controllers.Search.textReplaceSuccess": "搜尋完成。 {0}個符合結果已被取代", "SSE.Controllers.Statusbar.errorLastSheet": "工作簿必須至少具有一個可見的工作表。", @@ -1668,6 +1672,7 @@ "SSE.Views.ChartSettingsDlg.textAxisPos": "軸位置", "SSE.Views.ChartSettingsDlg.textAxisSettings": "軸設定", "SSE.Views.ChartSettingsDlg.textAxisTitle": "標題", + "SSE.Views.ChartSettingsDlg.textBase": "基礎", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "勾線之間", "SSE.Views.ChartSettingsDlg.textBillions": "億", "SSE.Views.ChartSettingsDlg.textBottom": "底部", @@ -1716,6 +1721,7 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "上方", "SSE.Views.ChartSettingsDlg.textLines": "線", "SSE.Views.ChartSettingsDlg.textLocationRange": "位置範圍", + "SSE.Views.ChartSettingsDlg.textLogScale": "對數尺度", "SSE.Views.ChartSettingsDlg.textLow": "低", "SSE.Views.ChartSettingsDlg.textMajor": "重大", "SSE.Views.ChartSettingsDlg.textMajorMinor": "主要和次要", @@ -1907,6 +1913,7 @@ "SSE.Views.DocumentHolder.bottomCellText": "底部對齊", "SSE.Views.DocumentHolder.bulletsText": "項目符和編號", "SSE.Views.DocumentHolder.centerCellText": "中央對齊", + "SSE.Views.DocumentHolder.chartDataText": "選擇圖表資料", "SSE.Views.DocumentHolder.chartText": "圖表進階設置", "SSE.Views.DocumentHolder.chartTypeText": "變更圖表類型", "SSE.Views.DocumentHolder.deleteColumnText": "欄", @@ -2021,6 +2028,7 @@ "SSE.Views.DocumentHolder.txtFormula": "插入功能", "SSE.Views.DocumentHolder.txtFraction": "分數", "SSE.Views.DocumentHolder.txtGeneral": "一般", + "SSE.Views.DocumentHolder.txtGetLink": "獲取此範圍的連結", "SSE.Views.DocumentHolder.txtGroup": "群組", "SSE.Views.DocumentHolder.txtHide": "隱藏", "SSE.Views.DocumentHolder.txtInsert": "插入", @@ -2119,6 +2127,7 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "有權利的人", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "套用", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同編輯模式", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDateFormat1904": "使用1904日期系統", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "小數點分隔符", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDictionaryLanguage": "字典語言", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "快", @@ -2132,6 +2141,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strReferenceStyle": "R1C1參考樣式", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "區域設置", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "例:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowComments": "在工作表中顯示注釋", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowOthersChanges": "顯示其他用戶的更改", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strShowResolvedComments": "顯示已解決的註釋", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "嚴格", @@ -2155,6 +2165,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "保加利亞語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "加泰羅尼亞語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "預設緩存模式", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCalculating": "計算", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "公分", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCollaboration": "協作", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "捷克語", @@ -2184,6 +2195,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "點", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "葡萄牙語(巴西)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "葡萄牙語(葡萄牙)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRegion": "區域", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "羅馬尼亞語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "俄語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "全部啟用", @@ -2706,6 +2718,7 @@ "SSE.Views.PivotSettingsAdvanced.textAltDescription": "描述", "SSE.Views.PivotSettingsAdvanced.textAltTip": "視覺對象信息的替代基於文本的表示形式,將向有視力或認知障礙的人讀取,以幫助他們更好地理解圖像,自動成型,圖表或表格中包含的信息。", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "標題", + "SSE.Views.PivotSettingsAdvanced.textAutofitColWidth": "更新時自動調整列寬", "SSE.Views.PivotSettingsAdvanced.textDataRange": "數據範圍", "SSE.Views.PivotSettingsAdvanced.textDataSource": "數據源", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "在報告過濾器區域中顯示字段", @@ -3178,6 +3191,7 @@ "SSE.Views.Spellcheck.textIgnore": "忽視", "SSE.Views.Spellcheck.textIgnoreAll": "忽略所有", "SSE.Views.Spellcheck.txtAddToDictionary": "添加到字典", + "SSE.Views.Spellcheck.txtClosePanel": "密集拼寫檢查", "SSE.Views.Spellcheck.txtComplete": "拼寫檢查已完成", "SSE.Views.Spellcheck.txtDictionaryLanguage": "字典語言", "SSE.Views.Spellcheck.txtNextTip": "轉到下一個單詞", @@ -3380,10 +3394,12 @@ "SSE.Views.Toolbar.textDiagDownBorder": "對角向下邊界", "SSE.Views.Toolbar.textDiagUpBorder": "對角上邊界", "SSE.Views.Toolbar.textDone": "已完成", + "SSE.Views.Toolbar.textEditVA": "編輯可見區域", "SSE.Views.Toolbar.textEntireCol": "整列", "SSE.Views.Toolbar.textEntireRow": "整行", "SSE.Views.Toolbar.textFewPages": "頁", "SSE.Views.Toolbar.textHeight": "高度", + "SSE.Views.Toolbar.textHideVA": "隱藏可見區域", "SSE.Views.Toolbar.textHorizontal": "橫軸上的文字", "SSE.Views.Toolbar.textInsDown": "下移單元格", "SSE.Views.Toolbar.textInsideBorders": "內部邊界", @@ -3421,6 +3437,7 @@ "SSE.Views.Toolbar.textScaleCustom": "自訂", "SSE.Views.Toolbar.textSelection": "凍結當前選擇", "SSE.Views.Toolbar.textSetPrintArea": "設置列印區域", + "SSE.Views.Toolbar.textShowVA": "顯示可見區域", "SSE.Views.Toolbar.textStrikeout": "淘汰", "SSE.Views.Toolbar.textSubscript": "下標", "SSE.Views.Toolbar.textSubSuperscript": "下標/上標", @@ -3510,8 +3527,10 @@ "SSE.Views.Toolbar.tipSendBackward": "向後發送", "SSE.Views.Toolbar.tipSendForward": "向前帶進", "SSE.Views.Toolbar.tipSynchronize": "該文檔已被其他用戶更改。請單擊以保存您的更改並重新加載更新。", + "SSE.Views.Toolbar.tipTextFormatting": "更多文字格式化工具", "SSE.Views.Toolbar.tipTextOrientation": "方向", "SSE.Views.Toolbar.tipUndo": "復原", + "SSE.Views.Toolbar.tipVisibleArea": "可見區域", "SSE.Views.Toolbar.tipWrap": "包覆文字", "SSE.Views.Toolbar.txtAccounting": "會計", "SSE.Views.Toolbar.txtAdditional": "額外功能", From 2d684393363ab043f01995313c119f207a01e7fe Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Fri, 12 Aug 2022 17:25:26 +0300 Subject: [PATCH 011/112] [Mobile] Update translation --- apps/documenteditor/mobile/locale/ms.json | 48 +++++++++---------- apps/documenteditor/mobile/locale/zh-tw.json | 38 +++++++-------- apps/presentationeditor/mobile/locale/ca.json | 8 ++-- apps/presentationeditor/mobile/locale/ms.json | 16 +++---- .../mobile/locale/zh-tw.json | 10 ++-- apps/spreadsheeteditor/mobile/locale/ca.json | 2 +- apps/spreadsheeteditor/mobile/locale/ja.json | 2 +- apps/spreadsheeteditor/mobile/locale/ms.json | 18 +++---- .../mobile/locale/zh-tw.json | 4 +- 9 files changed, 73 insertions(+), 73 deletions(-) diff --git a/apps/documenteditor/mobile/locale/ms.json b/apps/documenteditor/mobile/locale/ms.json index 1f29f0d30..5f37e4d81 100644 --- a/apps/documenteditor/mobile/locale/ms.json +++ b/apps/documenteditor/mobile/locale/ms.json @@ -3,11 +3,11 @@ "textAbout": "Perihal", "textAddress": "Alamat", "textBack": "Kembali", + "textEditor": "Editor Dokumen", "textEmail": "E-mel", "textPoweredBy": "Dikuasakan Oleh", "textTel": "Tel", - "textVersion": "Versi", - "textEditor": "Document Editor" + "textVersion": "Versi" }, "Add": { "notcriticalErrorTitle": "Amaran", @@ -197,10 +197,10 @@ "textDoNotShowAgain": "Jangan tunjukkan semula", "textNumberingValue": "Nilai Bernombor", "textOk": "Okey", + "textRefreshEntireTable": "Segar semula keseluruhan jadual", + "textRefreshPageNumbersOnly": "Segar semula nombor halaman sahaja", "textRows": "Baris", - "txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.
Adakah anda mahu meneruskan?", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only" + "txtWarnUrl": "Mengklik pautan ini boleh membahayakan peranti dan data anda.
Adakah anda mahu meneruskan?" }, "Edit": { "notcriticalErrorTitle": "Amaran", @@ -215,6 +215,7 @@ "textAlign": "Jajar", "textAllCaps": "Semua Huruf Besar", "textAllowOverlap": "Benarkan pertindihan", + "textAmountOfLevels": "Amaun Tahap", "textApril": "April", "textAugust": "Ogos", "textAuto": "Auto", @@ -237,6 +238,7 @@ "textClose": "Tutup", "textColor": "Warna", "textContinueFromPreviousSection": "Teruskan daripada bahagian sebelumnya", + "textCreateTextStyle": "Cipta gaya teks baharu", "textCurrent": "Semasa", "textCustomColor": "Warna Tersuai", "textDecember": "Disember", @@ -252,6 +254,7 @@ "textEffects": "Kesan", "textEmpty": "Kosong", "textEmptyImgUrl": "Anda perlu menentukan imej URL.", + "textEnterTitleNewStyle": "Masuk tajuk bagi gaya baru", "textFebruary": "Februari", "textFill": "Isi", "textFirstColumn": "Lajur Pertama", @@ -305,22 +308,27 @@ "textOrphanControl": "Kawalan Yatim", "textPageBreakBefore": "Pemutus Halaman Sebelum", "textPageNumbering": "Penomboran Halaman", + "textPageNumbers": "Nombor Halaman", "textParagraph": "Perenggan", "textParagraphStyle": "Gaya Perenggan", "textPictureFromLibrary": "Gambar daripada Perpustakaan", "textPictureFromURL": "Gambar daripada URL", "textPt": "pt", "textRefresh": "Segar semula", + "textRefreshEntireTable": "Segar semula keseluruhan jadual", + "textRefreshPageNumbersOnly": "Segar semula nombor halaman sahaja", "textRemoveChart": "Alih Keluar Carta", "textRemoveImage": "Alih Keluar Imej", "textRemoveLink": "Alih Keluar Pautan", "textRemoveShape": "Alih Keluar Bentuk", "textRemoveTable": "Alih Keluar Jadual", + "textRemoveTableContent": "Alih keluar senarai kandungan", "textReorder": "Order Semula", "textRepeatAsHeaderRow": "Ulang sebagai Baris Pengepala", "textReplace": "Gantikan", "textReplaceImage": "Gantikan Imej", "textResizeToFitContent": "Saiz Semula untuk Memuatkan Kandungan", + "textRightAlign": "Jajar Kanan", "textSa": "Sa", "textSameCreatedNewStyle": "Sama seperti gaya baharu dicipta", "textScreenTip": "Petua Skrin", @@ -337,6 +345,7 @@ "textStandard": "Standard", "textStartAt": "Mulakan pada", "textStrikethrough": "Garis Lorek", + "textStructure": "Struktur", "textStyle": "Gaya", "textStyleOptions": "Pilihan Gaya", "textStyles": "Gaya", @@ -356,15 +365,6 @@ "textType": "Jenis", "textWe": "Kami", "textWrap": "Balut", - "textAmountOfLevels": "Amount of Levels", - "textCreateTextStyle": "Create new text style", - "textEnterTitleNewStyle": "Enter title of a new style", - "textPageNumbers": "Page Numbers", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRemoveTableContent": "Remove table of contents", - "textRightAlign": "Right Align", - "textStructure": "Structure", "textTableOfCont": "TOC" }, "Error": { @@ -380,6 +380,7 @@ "errorDataRange": "Julat data tidak betul.", "errorDefaultMessage": "Kod ralat: %1", "errorEditingDownloadas": "Terdapat ralat yang berlaku semasa bekerja dengan dokumen.
Muat Turun dokumen untuk menyimpan salinan fail sandaran secara setempat.", + "errorEmptyTOC": "Mula mencipta senarai kandungan dengan menggunakan gaya pengepala daripada galeri Gaya pada teks pilihan.", "errorFilePassProtect": "Fail dilindungi kata laluan dan tidak dapat dibuka.", "errorFileSizeExceed": "Saiz fail melebihi had pelayan anda.
Sila, hubungi pentadbir anda.", "errorKeyEncrypt": "Pemerihal kunci tidak diketahui.", @@ -387,6 +388,7 @@ "errorLoadingFont": "Fon tidak dimuatkan.
Sila hubungi pentadbir Pelayan Dokumen anda.", "errorMailMergeLoadFile": "Memuatkan telah gagal", "errorMailMergeSaveFile": "Gagal cantum", + "errorNoTOC": "Tiada senarai kandungan untuk dikemas kini, Anda boleh masukkan satu daripada tab Rujukan.", "errorSessionAbsolute": "Sesi pengeditan dokumen telah tamat tempoh. Sila muat semula halaman.", "errorSessionIdle": "Dokumen tidak diedit buat masa yang lama. Sila muat semula halaman.", "errorSessionToken": "Sambungan kepada pelayan telah terganggu. Sila muat semula halaman.", @@ -405,9 +407,7 @@ "unknownErrorText": "Ralat tidak diketahui.", "uploadImageExtMessage": "Format imej yang tidak diketahui.", "uploadImageFileCountMessage": "Tiada Imej dimuat naik.", - "uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.", - "errorEmptyTOC": "Start creating a table of contents by applying a heading style from the Styles gallery to the selected text.", - "errorNoTOC": "There's no table of contents to update. You can insert one from the References tab." + "uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB." }, "LongActions": { "applyChangesTextText": "Data dimuatkan…", @@ -529,6 +529,7 @@ "textRemember": "Ingat pilihan saya", "textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.", "textReplaceSuccess": "Carian telah dilakukan. Kejadian digantikan: {0}", + "textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?", "textYes": "Ya", "titleLicenseExp": "Lesen tamat tempoh", "titleServerVersion": "Editor dikemas kini", @@ -540,8 +541,7 @@ "warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.", "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.", "warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", - "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini." }, "Settings": { "advDRMOptions": "Fail Dilindungi", @@ -581,6 +581,7 @@ "textDownloadRtf": "Jika anda terus menyimpan dalam format ini beberapa pemformatan mungkin akan hilang. Adakah anda pasti mahu meneruskan?", "textDownloadTxt": "ika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang. Adakah anda pasti mahu meneruskan?", "textEmptyHeading": "Pengepala Kosong", + "textEmptyScreens": "Tiada pengepala di dalam dokumen. Gunakan gaya pengepala pada teks supaya ia kelihatan dalam senarai kandungan.", "textEnableAll": "Mendayakan Semua", "textEnableAllMacrosWithoutNotification": "Mendayakan semua makro tanpa pemberitahuan", "textEncoding": "Pengekodan", @@ -616,6 +617,7 @@ "textPages": "Halaman", "textPageSize": "Saiz Halaman", "textParagraphs": "Perenggan", + "textPdfProducer": "Penerbit PDF", "textPdfTagged": "PDF Bertag", "textPdfVer": "Versi PDf", "textPoint": "Mata", @@ -625,6 +627,7 @@ "textReplace": "Gantikan", "textReplaceAll": "Gantikan Semua", "textResolvedComments": "Komen Diselesaikan", + "textRestartApplication": "Mulakan semula aplikasi untuk perubahan tersebut berkuat kuasa", "textRight": "Kanan", "textRightToLeft": "Kanan ke Kiri", "textSearch": "Carian", @@ -633,6 +636,7 @@ "textSpaces": "Jarak", "textSpellcheck": "Menyemak Ejaan", "textStatistic": "Statistik", + "textSubject": "Subjek", "textSymbols": "Simbol", "textTitle": "Tajuk", "textTop": "Atas", @@ -665,11 +669,7 @@ "txtScheme6": "Konkos", "txtScheme7": "Ekuiti", "txtScheme8": "Aliran", - "txtScheme9": "Faundri", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", - "textPdfProducer": "PDF Producer", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textSubject": "Subject" + "txtScheme9": "Faundri" }, "Toolbar": { "dlgLeaveMsgText": "Anda mempunyai perubahan yang tidak disimpan. Klik 'Stay on this Page' untuk menunggu autosimpan. Klik 'Leave this Page' untuk membuang semua perubahan yang tidak disimpan.", diff --git a/apps/documenteditor/mobile/locale/zh-tw.json b/apps/documenteditor/mobile/locale/zh-tw.json index 4ccbda06a..4947293cf 100644 --- a/apps/documenteditor/mobile/locale/zh-tw.json +++ b/apps/documenteditor/mobile/locale/zh-tw.json @@ -59,9 +59,9 @@ "textTable": "表格", "textTableContents": "目錄", "textTableSize": "表格大小", - "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。", - "textWithBlueLinks": "With Blue Links", - "textWithPageNumbers": "With Page Numbers" + "textWithBlueLinks": "帶有藍色連結", + "textWithPageNumbers": "帶有頁碼", + "txtNotUrl": "此字段應為格式為“ http://www.example.com”的URL。" }, "Common": { "Collaboration": { @@ -197,10 +197,10 @@ "textDoNotShowAgain": "不再顯示", "textNumberingValue": "編號值", "textOk": "確定", + "textRefreshEntireTable": "完整表格刷新", + "textRefreshPageNumbersOnly": "等級數量", "textRows": "行列", - "txtWarnUrl": "這連結可能對您的設備和資料造成損害。
您確定要繼續嗎?", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only" + "txtWarnUrl": "這連結可能對您的設備和資料造成損害。
您確定要繼續嗎?" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -215,6 +215,7 @@ "textAlign": "對齊", "textAllCaps": "全部大寫", "textAllowOverlap": "允許重疊", + "textAmountOfLevels": "層級數量", "textApril": "四月", "textAugust": "八月", "textAuto": "自動", @@ -237,6 +238,7 @@ "textClose": "關閉", "textColor": "顏色", "textContinueFromPreviousSection": "從上個部份繼續", + "textCreateTextStyle": "建立新的文字樣式", "textCurrent": "當前", "textCustomColor": "自訂顏色", "textDecember": "十二月", @@ -252,6 +254,7 @@ "textEffects": "效果", "textEmpty": "空", "textEmptyImgUrl": "您必須輸入圖檔的URL.", + "textEnterTitleNewStyle": "輸入新樣式的標題", "textFebruary": "二月", "textFill": "填入", "textFirstColumn": "第一欄", @@ -305,12 +308,15 @@ "textOrphanControl": "遺留功能控制", "textPageBreakBefore": "分頁之前", "textPageNumbering": "頁編碼", + "textPageNumbers": "頁碼", "textParagraph": "段落", "textParagraphStyle": "段落風格", "textPictureFromLibrary": "來自圖庫的圖片", "textPictureFromURL": "網址圖片", "textPt": "pt", "textRefresh": "刷新", + "textRefreshEntireTable": "完整表格刷新", + "textRefreshPageNumbersOnly": "等級數量", "textRemoveChart": "刪除圖表", "textRemoveImage": "移除圖片", "textRemoveLink": "刪除連結", @@ -322,6 +328,7 @@ "textReplace": "取代", "textReplaceImage": "取代圖片", "textResizeToFitContent": "調整大小以適合內容", + "textRightAlign": "靠右對齊", "textSa": "Sa", "textSameCreatedNewStyle": "與新增風格相同", "textScreenTip": "提示功能", @@ -338,6 +345,7 @@ "textStandard": "標準", "textStartAt": "開始", "textStrikethrough": "刪除線", + "textStructure": "結構", "textStyle": "風格", "textStyleOptions": "樣式選項", "textStyles": "風格", @@ -345,6 +353,7 @@ "textSubscript": "下標", "textSuperscript": "上標", "textTable": "表格", + "textTableOfCont": "目錄", "textTableOptions": "表格選項", "textText": "文字", "textTh": "Th", @@ -356,16 +365,7 @@ "textTu": "Tu", "textType": "類型", "textWe": "We", - "textWrap": "包覆", - "textAmountOfLevels": "Amount of Levels", - "textCreateTextStyle": "Create new text style", - "textEnterTitleNewStyle": "Enter title of a new style", - "textPageNumbers": "Page Numbers", - "textRefreshEntireTable": "Refresh entire table", - "textRefreshPageNumbersOnly": "Refresh page numbers only", - "textRightAlign": "Right Align", - "textStructure": "Structure", - "textTableOfCont": "TOC" + "textWrap": "包覆" }, "Error": { "convertationTimeoutText": "轉換逾時。", @@ -581,6 +581,7 @@ "textDownloadRtf": "以這個格式來儲存此文件的話,部份的文字排版效果將會遺失。您確定要繼續嗎?", "textDownloadTxt": "若使用此格式來儲存這份文件的話,除了純文字以外,其他的文件功能將會失效。您確定要繼續嗎?", "textEmptyHeading": "空標題", + "textEmptyScreens": "文件中沒有標題。將標題樣式應用於文字,使其顯示在目錄中。", "textEnableAll": "全部啟用", "textEnableAllMacrosWithoutNotification": "啟用所有不帶通知的巨集", "textEncoding": "編碼方式", @@ -626,6 +627,7 @@ "textReplace": "取代", "textReplaceAll": "取代全部", "textResolvedComments": "已解決的註解", + "textRestartApplication": "請重新啟動應用程式以讓變更生效", "textRight": "右", "textRightToLeft": "右到左", "textSearch": "搜尋", @@ -667,9 +669,7 @@ "txtScheme6": "大堂", "txtScheme7": "產權", "txtScheme8": "流程", - "txtScheme9": "鑄造廠", - "textEmptyScreens": "There are no headings in the document. Apply a headings style to the text so that it appears in the table of contents.", - "textRestartApplication": "Please restart the application for the changes to take effect" + "txtScheme9": "鑄造廠" }, "Toolbar": { "dlgLeaveMsgText": "您有未儲存的變更。點擊“留在此頁面”以等待自動儲存。點擊“離開此頁面”以放棄所有未儲存的變更。", diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 5a1f6e469..f7f5b4719 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -150,7 +150,7 @@ "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
Contacteu amb l'administrador.", "errorKeyEncrypt": "Descriptor de claus desconegut", "errorKeyExpire": "El descriptor de claus ha caducat", - "errorLoadingFont": "No s'han carregat els tipus de lletra.
Contacteu amb l'administrador del servidor de documents.", + "errorLoadingFont": "No s'han carregat les lletres tipogràfiques.
Contacteu amb l'administrador del Servidor de Documents.", "errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torneu a carregar la pàgina.", "errorSessionIdle": "Fa molt de temps que no s'edita el document. Torneu a carregar la pàgina.", "errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", @@ -311,9 +311,9 @@ "textFindAndReplace": "Cerca i substitueix", "textFirstColumn": "Primera columna", "textFirstSlide": "Primera diapositiva", - "textFontColor": "Color del tipus de lletra", - "textFontColors": "Colors del tipus de lletra", - "textFonts": "Tipus de lletra", + "textFontColor": "Color de la lletra", + "textFontColors": "Colors de la lletra", + "textFonts": "Lletra", "textFromLibrary": "Imatge de la biblioteca", "textFromURL": "Imatge de l'URL", "textHeaderRow": "Fila de capçalera", diff --git a/apps/presentationeditor/mobile/locale/ms.json b/apps/presentationeditor/mobile/locale/ms.json index 40dd504b1..ad95d854e 100644 --- a/apps/presentationeditor/mobile/locale/ms.json +++ b/apps/presentationeditor/mobile/locale/ms.json @@ -3,11 +3,11 @@ "textAbout": "Perihal", "textAddress": "Alamat", "textBack": "Kembali", + "textEditor": "Editor Persembahan", "textEmail": "E-mel", "textPoweredBy": "Dikuasakan Oleh", "textTel": "Tel", - "textVersion": "Versi", - "textEditor": "Presentation Editor" + "textVersion": "Versi" }, "Common": { "Collaboration": { @@ -116,6 +116,7 @@ "textRemember": "Ingat pilihan saya", "textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.", "textReplaceSuccess": "Carian telah dilakukan. Kejadian digantikan: {0}", + "textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?", "textYes": "Ya", "titleLicenseExp": "Lesen tamat tempoh", "titleServerVersion": "Editor dikemas kini", @@ -129,8 +130,7 @@ "warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.", "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.", "warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", - "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini." } }, "Error": { @@ -447,11 +447,14 @@ "textPrint": "Cetak", "textReplace": "Gantikan", "textReplaceAll": "Gantikan Semua", + "textRestartApplication": "Mulakan semula aplikasi untuk perubahan tersebut berkuat kuasa", + "textRTL": "RTL", "textSearch": "Carian", "textSettings": "Seting", "textShowNotification": "Tunjuk Pemberitahuan", "textSlideSize": "Saiz Slaid", "textSpellcheck": "Menyemak Ejaan", + "textSubject": "Subjek", "textTel": "Tel:", "textTitle": "Tajuk", "textUnitOfMeasurement": "Unit Pengukuran", @@ -478,10 +481,7 @@ "txtScheme6": "Konkos", "txtScheme7": "Ekuiti", "txtScheme8": "Aliran", - "txtScheme9": "Faundri", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRTL": "RTL", - "textSubject": "Subject" + "txtScheme9": "Faundri" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/zh-tw.json b/apps/presentationeditor/mobile/locale/zh-tw.json index 4bddcd97c..0f4cd0c13 100644 --- a/apps/presentationeditor/mobile/locale/zh-tw.json +++ b/apps/presentationeditor/mobile/locale/zh-tw.json @@ -3,11 +3,11 @@ "textAbout": "關於", "textAddress": "地址", "textBack": "返回", + "textEditor": "簡報編輯器", "textEmail": "電子郵件", "textPoweredBy": "於支援", "textTel": "電話", - "textVersion": "版本", - "textEditor": "Presentation Editor" + "textVersion": "版本" }, "Common": { "Collaboration": { @@ -447,6 +447,8 @@ "textPrint": "打印", "textReplace": "取代", "textReplaceAll": "全部替換", + "textRestartApplication": "請重新啟動應用程式以讓變更生效", + "textRTL": "從右至左", "textSearch": "搜尋", "textSettings": "設定", "textShowNotification": "顯示通知", @@ -479,9 +481,7 @@ "txtScheme6": "大堂", "txtScheme7": "產權", "txtScheme8": "流程", - "txtScheme9": "鑄造廠", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textRTL": "RTL" + "txtScheme9": "鑄造廠" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 14158e730..cba05e9dd 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -435,7 +435,7 @@ "textFillColor": "Color d'emplenament", "textFilterOptions": "Opcions de filtre", "textFit": "Ajusta l'amplada", - "textFonts": "Tipus de lletra", + "textFonts": "Lletra", "textFormat": "Format", "textFraction": "Fracció", "textFromLibrary": "Imatge de la biblioteca", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 12e38652e..08b509d79 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -298,7 +298,7 @@ "textMoveBefore": "シートの前へ移動", "textMoveToEnd": "(末尾へ移動)", "textOk": "OK", - "textRename": "名前の変更", + "textRename": "名前を変更する", "textRenameSheet": "このシートの名前を変更する", "textSheet": "シート", "textSheetName": "シートの名", diff --git a/apps/spreadsheeteditor/mobile/locale/ms.json b/apps/spreadsheeteditor/mobile/locale/ms.json index 04ad87518..8064ac3e8 100644 --- a/apps/spreadsheeteditor/mobile/locale/ms.json +++ b/apps/spreadsheeteditor/mobile/locale/ms.json @@ -3,11 +3,11 @@ "textAbout": "Perihal", "textAddress": "Alamat", "textBack": "Kembali", + "textEditor": "Editor Hamparan", "textEmail": "E-mel", "textPoweredBy": "Dikuasakan Oleh", "textTel": "Tel", - "textVersion": "Versi", - "textEditor": "Spreadsheet Editor" + "textVersion": "Versi" }, "Common": { "Collaboration": { @@ -154,6 +154,7 @@ "textRemember": "Ingat pilihan saya", "textReplaceSkipped": "Gantian telah dilakukan. {0} kejadian telah dilangkau.", "textReplaceSuccess": "Carian telah dilakukan. Kejadian digantikan: {0}", + "textRequestMacros": "Makro membuat permintaan ke URL. Adakah anda mahu membenarkan permintaan kepada %1?", "textYes": "Ya", "titleServerVersion": "Editor dikemas kini", "titleUpdateVersion": "Perubahan versi", @@ -163,8 +164,7 @@ "warnLicenseUsersExceeded": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pentadbir anda untuk ketahui selanjutnya.", "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.", "warnNoLicenseUsers": "Anda telah mencapai had pengguna untuk editor %1. Hubungi pasukan jualan %1 untuk naik taraf terma peribadi.", - "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini.", - "textRequestMacros": "A macro makes a request to URL. Do you want to allow the request to the %1?" + "warnProcessRightsChange": "Anda tidak mempunyai keizinan untuk edit fail ini." } }, "Error": { @@ -183,6 +183,7 @@ "errorChangeArray": "Anda tidak boleh mengubah bahagian tatasusunan.", "errorChangeOnProtectedSheet": "Sel atau carta yang anda cuba ubah ialah helaian dilindung. Untuk membuat perubahan, nyahlindung helaian. Anda mungkin diminta untuk memasukkan kata laluan.", "errorConnectToServer": "Tidak dapat menyimpan dok ini. Semak seting sambungan anda atau hubungi pentadbir.
Apabila anda klik ‘OK’, anda akan diminta untuk muat turun dokumennya.", + "errorCopyMultiselectArea": "Perintah ini tidak boleh digunakan dengan berbilang pilihan.
Pilih julat tunggal dan cuba lagi.", "errorCountArg": "Terdapat ralat di dalam formula.
Bilangan argumen yang tidak sah.", "errorCountArgExceed": "Terdapat ralat di dalam formula.
Bilangan argumen telah melebihi maksimum.", "errorCreateDefName": "Julat nama sedia ada tidak boleh diedit dan yang baharu tidak boleh dicipta
pada masa sekarang kerana beberapa daripadanya sedang diedit.", @@ -237,8 +238,7 @@ "unknownErrorText": "Ralat tidak diketahui.", "uploadImageExtMessage": "Format imej yang tidak diketahui.", "uploadImageFileCountMessage": "Tiada Imej dimuat naik.", - "uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again." + "uploadImageSizeMessage": "Imej terlalu besar. Saiz maksimum adalah 25 MB." }, "LongActions": { "advDRMPassword": "Kata laluan", @@ -633,6 +633,7 @@ "textReplace": "Gantikan", "textReplaceAll": "Gantikan Semua", "textResolvedComments": "Komen Diselesaikan", + "textRestartApplication": "Mulakan semula aplikasi untuk perubahan tersebut berkuat kuasa", "textRight": "Kanan", "textRightToLeft": "Kanan ke Kiri", "textSearch": "Carian", @@ -645,6 +646,7 @@ "textSpreadsheetInfo": "Maklumat Hamparan", "textSpreadsheetSettings": "Seting Hamparan", "textSpreadsheetTitle": "Tajuk Hamparan", + "textSubject": "Subjek", "textTel": "Tel", "textTitle": "Tajuk", "textTop": "Atas", @@ -686,9 +688,7 @@ "txtSemicolon": "Koma bertindih", "txtSpace": "Jarak", "txtTab": "Tab", - "warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.
Adakah anda pasti mahu teruskan?", - "textRestartApplication": "Please restart the application for the changes to take effect", - "textSubject": "Subject" + "warnDownloadAs": "Jika anda terus menyimpan dalam format ini semua ciri kecuali teks akan hilang.
Adakah anda pasti mahu teruskan?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh-tw.json b/apps/spreadsheeteditor/mobile/locale/zh-tw.json index 4a1434d1b..dd53589b3 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh-tw.json +++ b/apps/spreadsheeteditor/mobile/locale/zh-tw.json @@ -633,6 +633,7 @@ "textReplace": "取代", "textReplaceAll": "全部替換", "textResolvedComments": "已解決的評論", + "textRestartApplication": "請重新啟動應用程式以讓變更生效", "textRight": "右", "textRightToLeft": "右到左", "textSearch": "搜尋", @@ -687,8 +688,7 @@ "txtSemicolon": "分號", "txtSpace": "空間", "txtTab": "標籤", - "warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
確定要繼續嗎?", - "textRestartApplication": "Please restart the application for the changes to take effect" + "warnDownloadAs": "如果繼續以這種格式保存,則除文本外的所有功能都將丟失。
確定要繼續嗎?" } } } \ No newline at end of file From fb1b85ce19a2f23f06b4367022285dc2d786e0c1 Mon Sep 17 00:00:00 2001 From: Maxim Kadushkin Date: Fri, 12 Aug 2022 21:35:04 +0300 Subject: [PATCH 012/112] [forms] fix bug 58423 --- apps/common/forms/resources/less/common.less | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/common/forms/resources/less/common.less b/apps/common/forms/resources/less/common.less index d2f259318..e7e8d8701 100644 --- a/apps/common/forms/resources/less/common.less +++ b/apps/common/forms/resources/less/common.less @@ -5,6 +5,7 @@ @import "../../../../common/main/resources/less/colors-table.less"; @import "../../../../common/main/resources/less/colors-table-classic.less"; @import "../../../../common/main/resources/less/colors-table-dark.less"; +@import "../../../../common/main/resources/less/colors-table-dark-contrast.less"; // Core variables and mixins //@import "../../../../../vendor/bootstrap/less/variables.less"; From 0d24b79e2ee8b802d68271b6a89167e304d5eb52 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Mon, 15 Aug 2022 19:58:06 +0300 Subject: [PATCH 013/112] [DE mobile] Add restriction for view comments, context menu and short document title --- .../lib/view/collaboration/Comments.jsx | 26 +++++++++---------- apps/common/mobile/resources/less/common.less | 5 ++++ .../mobile/src/controller/ContextMenu.jsx | 22 +++++++++------- .../src/controller/settings/Settings.jsx | 14 ---------- .../mobile/src/view/Toolbar.jsx | 15 ++++++++++- .../mobile/src/view/settings/Settings.jsx | 9 ------- 6 files changed, 44 insertions(+), 47 deletions(-) diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index b6a51a636..4525329bc 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -677,7 +677,7 @@ const ViewComments = inject("storeComments", "storeAppOptions", "storeReview")(o
{isEdit && !viewMode &&
- {(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{onResolveComment(comment);}}>
} + {(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{!isViewer && onResolveComment(comment);}}>
} {(displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
{setComment(comment); openActionComment(true);}}> @@ -747,7 +747,7 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob const _t = t('Common.Collaboration', {returnObjects: true}); const isAndroid = Device.android; const displayMode = storeReview.displayMode; - + const isViewer = storeAppOptions.isViewer; const viewMode = !storeAppOptions.canComments; const isEdit = storeAppOptions.isEdit || storeAppOptions.isRestrictedEdit; const comments = storeComments.showComments; @@ -786,8 +786,8 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob return ( - {isEdit && !viewMode && - {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply} + {isEdit && !viewMode && + {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply} }
@@ -808,8 +808,8 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{isEdit && !viewMode &&
- {(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{onResolveComment(comment);}}>
} - {(displayMode === 'markup' && !wsProps?.Objects) && + {(comment.editable && displayMode === 'markup' && !wsProps?.Objects) &&
{!isViewer && onResolveComment(comment);}}>
} + {(displayMode === 'markup' && !wsProps?.Objects && !isViewer) &&
{openActionComment(true);}}> @@ -839,14 +839,14 @@ const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(ob
{reply.date}
- {isEdit && !viewMode && reply.editable && -
-
{setReply(reply); openActionReply(true);}} - > - + {isEdit && !viewMode && reply.editable && !isViewer && +
+
{setReply(reply); openActionReply(true);}} + > + +
-
}
diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index f3a948d30..e2d628579 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -47,6 +47,11 @@ .subnavbar { .subnavbar-inner { padding: 0; + .title { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } } .icon-back { color: @toolbar-icons; diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index d173f9fb9..843fe3fe0 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -19,7 +19,8 @@ import EditorUIController from '../lib/patch'; users: stores.users, isDisconnected: stores.users.isDisconnected, displayMode: stores.storeReview.displayMode, - dataDoc: stores.storeDocumentInfo.dataDoc + dataDoc: stores.storeDocumentInfo.dataDoc, + isViewer: stores.storeAppOptions.isViewer })) class ContextMenu extends ContextMenuController { constructor(props) { @@ -225,6 +226,7 @@ class ContextMenu extends ContextMenuController { } else { const { t } = this.props; const _t = t("ContextMenu", { returnObjects: true }); + f7.dialog.create({ title: t('Settings', {returnObjects: true}).notcriticalErrorTitle, text : _t.txtWarnUrl, @@ -256,7 +258,7 @@ class ContextMenu extends ContextMenuController { initMenuItems() { if ( !Common.EditorApi ) return []; - const { isEdit, canFillForms, isDisconnected } = this.props; + const { isEdit, canFillForms, isDisconnected, isViewer } = this.props; if (isEdit && EditorUIController.ContextMenu) { return EditorUIController.ContextMenu.mapMenuItems(this); @@ -296,36 +298,36 @@ class ContextMenu extends ContextMenuController { let itemsIcon = [], itemsText = []; - if ( canCopy ) { + if (canCopy) { itemsIcon.push({ event: 'copy', icon: 'icon-copy' }); } - if(!isDisconnected) { - if ( canFillForms && canCopy && !locked ) { + if (!isDisconnected) { + if (canFillForms && canCopy && !locked && !isViewer) { itemsIcon.push({ event: 'cut', icon: 'icon-cut' }); } - if ( canFillForms && canCopy && !locked ) { + if (canFillForms && canCopy && !locked && !isViewer) { itemsIcon.push({ event: 'paste', icon: 'icon-paste' }); } - if ( canViewComments && this.isComments ) { + if (canViewComments && this.isComments) { itemsText.push({ caption: _t.menuViewComment, event: 'viewcomment' }); } - if (api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked && !(!isText && isObject)) { + if (api.can_AddQuotedComment() !== false && canCoAuthoring && canComments && !locked && !(!isText && isObject) && !isViewer) { itemsText.push({ caption: _t.menuAddComment, event: 'addcomment' @@ -333,14 +335,14 @@ class ContextMenu extends ContextMenuController { } } - if ( isLink ) { + if (isLink) { itemsText.push({ caption: _t.menuOpenLink, event: 'openlink' }); } - if(inToc && isEdit) { + if(inToc && isEdit && !isViewer) { itemsText.push({ caption: t('ContextMenu.textRefreshEntireTable'), event: 'refreshEntireTable' diff --git a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx index 6ba5bb7a6..07cb9e673 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Settings.jsx @@ -27,19 +27,6 @@ const Settings = props => { } }; - // const onReaderMode = () => { - // const appOptions = props.storeAppOptions; - // appOptions.changeReaderMode(); - // - // Common.EditorApi.get().ChangeReaderMode(); - // - // if (Device.phone) { - // setTimeout(() => { - // closeModal(); - // }, 1); - // } - // }; - const onPrint = () => { const api = Common.EditorApi.get(); @@ -109,7 +96,6 @@ const Settings = props => { return { const isViewer = props.isViewer; const isMobileView = props.isMobileView; + const shortTitle = (title) => { + const arrDocTitle = title.split('.'); + const ext = arrDocTitle[1]; + const name = arrDocTitle[0]; + + if(name.length > 7 && Device.phone) { + let shortName = name.substring(0, 7); + return `${shortName}...${ext}`; + } + + return title; + }; + return ( @@ -23,7 +36,7 @@ const ToolbarView = props => { onRedoClick: props.onRedo })} - {(!Device.phone || isViewer) && {props.docTitle}} + {(!Device.phone || isViewer) && {shortTitle(props.docTitle)}} {(Device.android && props.isEdit && !isViewer) && EditorUIController.getUndoRedo && EditorUIController.getUndoRedo({ disabledUndo: !props.isCanUndo, diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 2a0d911fd..0cacc2067 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -112,7 +112,6 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => let _isEdit = false, _canDownload = false, _canDownloadOrigin = false, - // _canReader = false, _canAbout = true, _canHelp = true, _canPrint = false; @@ -122,7 +121,6 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => _canPrint = _canDownload = _canDownloadOrigin = false; } else { _isEdit = appOptions.isEdit; - // _canReader = !appOptions.isEdit && !appOptions.isRestrictedEdit && appOptions.canReader; _canDownload = appOptions.canDownload; _canDownloadOrigin = appOptions.canDownloadOrigin; _canPrint = appOptions.canPrint; @@ -139,7 +137,6 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => {navbar} - {/*disabled={appOptions.readerMode ? true : false}*/} {!props.inPopover && @@ -158,12 +155,6 @@ const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => : null} - {/*{_canReader &&*/} - {/* /!*ToDo*!/*/} - {/* */} - {/* {props.onReaderMode()}}/>*/} - {/* */} - {/*}*/} {Device.sailfish && _isEdit && {props.onOrthographyCheck()}} className='no-indicator' link="#"> From 4967ec3263a31f915ca45009118e7bcaaceb0974 Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 16 Aug 2022 16:22:20 +0300 Subject: [PATCH 014/112] [DE mobile] Fix Bug 58548 --- apps/common/mobile/resources/less/common-ios.less | 4 ++-- apps/common/mobile/resources/less/common.less | 1 + apps/documenteditor/mobile/src/less/app.less | 9 +++++++++ apps/documenteditor/mobile/src/view/edit/EditText.jsx | 4 +--- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/apps/common/mobile/resources/less/common-ios.less b/apps/common/mobile/resources/less/common-ios.less index 3df7390c8..7cd7e6cc4 100644 --- a/apps/common/mobile/resources/less/common-ios.less +++ b/apps/common/mobile/resources/less/common-ios.less @@ -69,9 +69,9 @@ .title { font-weight: 600; color: @text-normal; - line-height: 17px; + //line-height: 17px; max-height: 34px; - overflow: hidden; + //overflow: hidden; } .navbar-inner, .subnavbar-inner { z-index: auto; diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index e2d628579..43eb0cfe3 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -147,6 +147,7 @@ .bullets, .numbers, .multilevels { + min-height: 160px; .row.list { margin: 0; ul { diff --git a/apps/documenteditor/mobile/src/less/app.less b/apps/documenteditor/mobile/src/less/app.less index 279268c4e..5f868eedc 100644 --- a/apps/documenteditor/mobile/src/less/app.less +++ b/apps/documenteditor/mobile/src/less/app.less @@ -132,6 +132,7 @@ } } +// Swiper .swiper-container { height: 100%; .swiper-pagination-bullet-active{ @@ -147,6 +148,14 @@ // } } +.swiper-pagination-bullets { + position: relative; + margin-top: 10px; + .swiper-pagination-bullet { + margin: 0 8px; + } +} + // Skeleton table .table-styles .row div:not(:first-child) { diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index 4a085bd69..72cef561a 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -213,9 +213,7 @@ const PageBullets = observer( props => { storeTextSettings.resetBullets(bullet.subtype); props.onBullet(bullet.subtype); }}> -
- -
+
))}
From 3e76a334539e875fceefb8211b67c29e73f9222b Mon Sep 17 00:00:00 2001 From: SergeyEzhin Date: Tue, 16 Aug 2022 16:32:36 +0300 Subject: [PATCH 015/112] [DE mobile] Fix Bug 58380 --- apps/documenteditor/mobile/src/view/edit/EditTableContents.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/documenteditor/mobile/src/view/edit/EditTableContents.jsx b/apps/documenteditor/mobile/src/view/edit/EditTableContents.jsx index 516dc69da..1453a9936 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditTableContents.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditTableContents.jsx @@ -273,7 +273,7 @@ const PageEditStructureTableContents = props => { }}> {isAndroid ? : ' - '} - {isAndroid && } + {isAndroid && }