From 571bab99cdb584a0b4190eaa911e9f8295581832 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 18 Sep 2017 13:41:39 +0300 Subject: [PATCH 01/20] [SSE] Fix Bug 35854. --- apps/spreadsheeteditor/main/app/controller/Toolbar.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index eb0132201..a64a8775c 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1392,8 +1392,11 @@ define([ shortcuts: { 'command+l,ctrl+l': function(e) { if ( me.editMode && !me._state.multiselect ) { - var formattableinfo = me.api.asc_getCellInfo().asc_getFormatTableInfo(); - if (!formattableinfo) { + var cellinfo = me.api.asc_getCellInfo(), + filterinfo = cellinfo.asc_getAutoFilterInfo(), + formattableinfo = cellinfo.asc_getFormatTableInfo(); + filterinfo = (filterinfo) ? filterinfo.asc_getIsAutoFilter() : null; + if (filterinfo!==null && !formattableinfo) { if (_.isUndefined(me.toolbar.mnuTableTemplatePicker)) me.onApiInitTableTemplates(me.api.asc_getTablePictures(formattableinfo)); var store = me.getCollection('TableTemplates'); From f5a3a86ba0701f828506a4a7ae3c74ba276b1440 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 18 Sep 2017 14:38:24 +0300 Subject: [PATCH 02/20] Fix Bug 35860. --- apps/common/main/lib/view/Header.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index dc619af1f..8feba516e 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -377,6 +377,12 @@ define([ if ( role == 'left' && (!config || !config.isDesktopApp)) { $html = $(templateLeftBox); this.logo = $html.find('#header-logo'); + + if (this.branding && this.branding.logo && this.branding.logo.image && this.logo) { + this.logo.html(''); + this.logo.css({'background-image': 'none', width: 'auto'}); + } + return $html; } else if ( role == 'right' ) { From d6aeb9f679e70c7322320345093fd3ff3c03de04 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 18 Sep 2017 16:00:10 +0300 Subject: [PATCH 03/20] [SSE] Fix Bug 28388. --- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 6026afb7b..4a75d61cb 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -1228,7 +1228,7 @@ define([ onSelectionChanged: function(info){ if (!this.mouse.isLeftButtonDown && !this.rangeSelectionMode && this.currentMenu && this.currentMenu.isVisible()){ - (this.permissions.isEdit) ? this.fillMenuProps(info, true, event) : this.fillViewMenuProps(info, true, event); + (this.permissions.isEdit) ? this.fillMenuProps(info, true) : this.fillViewMenuProps(info, true); } }, @@ -1503,7 +1503,7 @@ define([ }, showPopupMenu: function(menu, value, event){ - if (!_.isUndefined(menu) && menu !== null){ + if (!_.isUndefined(menu) && menu !== null && event){ Common.UI.Menu.Manager.hideAll(); var me = this, From 869c47155f2a121d002203346a3cbe1a5f2aa2cf Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Mon, 18 Sep 2017 16:53:29 +0300 Subject: [PATCH 04/20] [SSE] Fix Bug 35858. --- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 4a75d61cb..58e3c40c1 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -1416,7 +1416,6 @@ define([ documentHolder.pmiEntireShow.setVisible(iscolmenu||isrowmenu); documentHolder.pmiFreezePanes.setVisible(!iscelledit); documentHolder.pmiFreezePanes.setCaption(this.api.asc_getSheetViewSettings().asc_getIsFreezePane() ? documentHolder.textUnFreezePanes : documentHolder.textFreezePanes); - documentHolder.pmiEntriesList.setVisible(!iscelledit); /** coauthoring begin **/ documentHolder.ssMenu.items[17].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments); @@ -1447,6 +1446,8 @@ define([ var inPivot = !!cellinfo.asc_getPivotTableInfo(); + documentHolder.pmiEntriesList.setVisible(!iscelledit && !inPivot); + _.each(documentHolder.ssMenu.items, function(item) { item.setDisabled(isCellLocked); }); From 405fe55461e513cfc005231385a538bed9f2a6d9 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Sep 2017 12:16:59 +0300 Subject: [PATCH 05/20] Open "customization->logo->url" when click on the header logo. --- apps/common/main/lib/view/Header.js | 4 ++-- apps/common/main/resources/less/header.less | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 8feba516e..e84506cdf 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -216,8 +216,8 @@ define([ var _url = !!me.branding && !!me.branding.logo && !!me.branding.logo.url ? me.branding.logo.url : 'http://www.onlyoffice.com'; - // var newDocumentPage = window.open(_url); - // newDocumentPage && newDocumentPage.focus(); + var newDocumentPage = window.open(_url); + newDocumentPage && newDocumentPage.focus(); }); onResetUsers(storeUsers); diff --git a/apps/common/main/resources/less/header.less b/apps/common/main/resources/less/header.less index 59f439d00..ce53bdadd 100644 --- a/apps/common/main/resources/less/header.less +++ b/apps/common/main/resources/less/header.less @@ -126,7 +126,7 @@ #header-logo { max-width: 200px; height: 100%; - //cursor: pointer; + cursor: pointer; padding: 7px 24px 7px 12px; i { From 2d887a4a82d6664759b492d82560f6c9cdcace9b Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Sep 2017 13:14:16 +0300 Subject: [PATCH 06/20] [PE] Fix Bug 35440. --- apps/presentationeditor/main/app/view/DocumentPreview.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/presentationeditor/main/app/view/DocumentPreview.js b/apps/presentationeditor/main/app/view/DocumentPreview.js index 23de00a44..c948a37bd 100644 --- a/apps/presentationeditor/main/app/view/DocumentPreview.js +++ b/apps/presentationeditor/main/app/view/DocumentPreview.js @@ -276,14 +276,17 @@ define([ var me = this; var controls = $(this.el).find('.preview-controls'); controls.css('display', 'none'); + me.$el.css('cursor', 'none'); setTimeout(function(){ me.$el.on('mousemove', function() { clearTimeout(me.timerMove); controls.css('display', ''); + me.$el.css('cursor', ''); if (!controls.hasClass('over')) me.timerMove = setTimeout(function () { controls.css('display', 'none'); + me.$el.css('cursor', 'none'); }, 3000); }); From 03fc5c6dd242c44b6b69fa472fb5955122e74eda Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Sep 2017 14:13:07 +0300 Subject: [PATCH 07/20] [SSE] Fix Bug 35857. --- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 58e3c40c1..6d078577c 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -98,6 +98,7 @@ define([ this.hkComments = 'alt+h'; keymap[this.hkComments] = function() { me.onAddComment(); + return false; }; Common.util.Shortcuts.delegateShortcuts({shortcuts:keymap}); }, From 876171af9c2184fd099803251f11380fdd1dbd3d Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Sep 2017 15:42:44 +0300 Subject: [PATCH 08/20] Change click on header logo: click only on the image. --- apps/common/main/lib/view/Header.js | 2 +- apps/common/main/resources/less/header.less | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index e84506cdf..42fdf831c 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -212,7 +212,7 @@ define([ }); if ( me.logo ) - me.logo.on('click', function (e) { + me.logo.children(0).on('click', function (e) { var _url = !!me.branding && !!me.branding.logo && !!me.branding.logo.url ? me.branding.logo.url : 'http://www.onlyoffice.com'; diff --git a/apps/common/main/resources/less/header.less b/apps/common/main/resources/less/header.less index ce53bdadd..67c665f3a 100644 --- a/apps/common/main/resources/less/header.less +++ b/apps/common/main/resources/less/header.less @@ -126,15 +126,19 @@ #header-logo { max-width: 200px; height: 100%; - cursor: pointer; padding: 7px 24px 7px 12px; i { + cursor: pointer; width: 86px; height: 20px; display: block; .background-ximage('@{common-image-path}/header/header-logo.png', '@{common-image-path}/header/header-logo@2x.png', 86px); } + + img { + cursor: pointer; + } } } From 28661417e81c7addb62b12209da125dc6ab4e485 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Tue, 19 Sep 2017 17:26:09 +0300 Subject: [PATCH 09/20] Fix Bug 35853. --- apps/common/main/lib/component/BaseView.js | 2 ++ apps/documenteditor/main/app/view/DocumentHolder.js | 4 ++-- apps/presentationeditor/main/app/view/DocumentHolder.js | 4 ++-- apps/spreadsheeteditor/main/app/controller/DocumentHolder.js | 4 ++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/apps/common/main/lib/component/BaseView.js b/apps/common/main/lib/component/BaseView.js index dfe578cf2..ae093ef5e 100644 --- a/apps/common/main/lib/component/BaseView.js +++ b/apps/common/main/lib/component/BaseView.js @@ -66,6 +66,7 @@ define([ PAGEUP: 33, PAGEDOWN: 34, INSERT: 45, + EQUALITY_FF:61, NUM_PLUS: 107, NUM_MINUS: 109, F1: 112, @@ -80,6 +81,7 @@ define([ F10: 121, F11: 122, F12: 123, + MINUS_FF: 173, EQUALITY: 187, MINUS: 189 }, diff --git a/apps/documenteditor/main/app/view/DocumentHolder.js b/apps/documenteditor/main/app/view/DocumentHolder.js index 7ef3b3cb6..51c8c2c72 100644 --- a/apps/documenteditor/main/app/view/DocumentHolder.js +++ b/apps/documenteditor/main/app/view/DocumentHolder.js @@ -267,13 +267,13 @@ define([ if (me.api){ var key = event.keyCode; if ((event.ctrlKey || event.metaKey) && !event.shiftKey && !event.altKey){ - if (key === Common.UI.Keys.NUM_PLUS || key === Common.UI.Keys.EQUALITY || (Common.Utils.isOpera && key == 43)){ + if (key === Common.UI.Keys.NUM_PLUS || key === Common.UI.Keys.EQUALITY || (Common.Utils.isGecko && key === Common.UI.Keys.EQUALITY_FF) || (Common.Utils.isOpera && key == 43)){ me.api.zoomIn(); event.preventDefault(); event.stopPropagation(); return false; } - else if (key === Common.UI.Keys.NUM_MINUS || key === Common.UI.Keys.MINUS || (Common.Utils.isOpera && key == 45)){ + else if (key === Common.UI.Keys.NUM_MINUS || key === Common.UI.Keys.MINUS || (Common.Utils.isGecko && key === Common.UI.Keys.MINUS_FF) || (Common.Utils.isOpera && key == 45)){ me.api.zoomOut(); event.preventDefault(); event.stopPropagation(); diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index 2a024dd7a..5f033b057 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -273,13 +273,13 @@ define([ if (me.api){ var key = event.keyCode; if ((event.ctrlKey || event.metaKey) && !event.shiftKey && !event.altKey){ - if (key === Common.UI.Keys.NUM_PLUS || key === Common.UI.Keys.EQUALITY || (Common.Utils.isOpera && key == 43)){ + if (key === Common.UI.Keys.NUM_PLUS || key === Common.UI.Keys.EQUALITY || (Common.Utils.isGecko && key === Common.UI.Keys.EQUALITY_FF) || (Common.Utils.isOpera && key == 43)){ me.api.zoomIn(); event.preventDefault(); event.stopPropagation(); return false; } - else if (key === Common.UI.Keys.NUM_MINUS || key === Common.UI.Keys.MINUS || (Common.Utils.isOpera && key == 45)){ + else if (key === Common.UI.Keys.NUM_MINUS || key === Common.UI.Keys.MINUS || (Common.Utils.isGecko && key === Common.UI.Keys.MINUS_FF) || (Common.Utils.isOpera && key == 45)){ me.api.zoomOut(); event.preventDefault(); event.stopPropagation(); diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 6d078577c..1ca136c2b 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -1176,7 +1176,7 @@ define([ if (this.api){ var key = event.keyCode; if ((event.ctrlKey || event.metaKey) && !event.shiftKey && !event.altKey){ - if (key === Common.UI.Keys.NUM_PLUS || key === Common.UI.Keys.EQUALITY || (Common.Utils.isOpera && key == 43)){ + if (key === Common.UI.Keys.NUM_PLUS || key === Common.UI.Keys.EQUALITY || (Common.Utils.isGecko && key === Common.UI.Keys.EQUALITY_FF) || (Common.Utils.isOpera && key == 43)){ if (!this.api.isCellEdited) { var factor = Math.floor(this.api.asc_getZoom() * 10)/10; factor += .1; @@ -1188,7 +1188,7 @@ define([ event.stopPropagation(); return false; } - } else if (key === Common.UI.Keys.NUM_MINUS || key === Common.UI.Keys.MINUS || (Common.Utils.isOpera && key == 45)){ + } else if (key === Common.UI.Keys.NUM_MINUS || key === Common.UI.Keys.MINUS || (Common.Utils.isGecko && key === Common.UI.Keys.MINUS_FF) || (Common.Utils.isOpera && key == 45)){ if (!this.api.isCellEdited) { factor = Math.ceil(this.api.asc_getZoom() * 10)/10; factor -= .1; From 202dcbc8ffd537b9c339e816a2eedc9e1095fd32 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 20 Sep 2017 11:05:39 +0300 Subject: [PATCH 10/20] Update translations. --- apps/documenteditor/main/locale/cs.json | 6 +- apps/documenteditor/main/locale/de.json | 28 +- apps/documenteditor/main/locale/es.json | 6 +- apps/documenteditor/main/locale/it.json | 3 + apps/documenteditor/main/locale/ja.json | 4 +- apps/documenteditor/main/locale/nl.json | 2 +- apps/documenteditor/main/locale/pl.json | 1697 ++++++++++++++++ apps/documenteditor/main/locale/pt.json | 2 +- apps/documenteditor/main/locale/ru.json | 1 + apps/documenteditor/main/locale/sk.json | 525 ++--- apps/documenteditor/main/locale/sl.json | 4 +- apps/documenteditor/main/locale/tr.json | 169 +- apps/documenteditor/main/locale/uk.json | 64 +- apps/documenteditor/main/locale/zh.json | 14 +- apps/documenteditor/mobile/locale/pl.json | 378 ++++ apps/documenteditor/mobile/locale/sk.json | 136 +- apps/documenteditor/mobile/locale/tr.json | 378 ++++ apps/documenteditor/mobile/locale/uk.json | 26 +- apps/documenteditor/mobile/locale/zh.json | 3 +- apps/presentationeditor/main/locale/cs.json | 2 +- apps/presentationeditor/main/locale/de.json | 10 +- apps/presentationeditor/main/locale/pl.json | 1383 +++++++++++++ apps/presentationeditor/main/locale/ru.json | 3 +- apps/presentationeditor/main/locale/sk.json | 414 ++-- apps/presentationeditor/main/locale/tr.json | 571 +++++- apps/presentationeditor/main/locale/uk.json | 28 +- apps/presentationeditor/main/locale/zh.json | 20 +- apps/presentationeditor/mobile/locale/pl.json | 445 ++++ apps/presentationeditor/mobile/locale/sk.json | 170 +- apps/presentationeditor/mobile/locale/tr.json | 445 ++++ apps/presentationeditor/mobile/locale/uk.json | 12 +- apps/presentationeditor/mobile/locale/zh.json | 9 +- apps/spreadsheeteditor/main/locale/cs.json | 6 +- apps/spreadsheeteditor/main/locale/de.json | 18 +- apps/spreadsheeteditor/main/locale/fr.json | 41 +- apps/spreadsheeteditor/main/locale/it.json | 1 + apps/spreadsheeteditor/main/locale/ja.json | 4 +- apps/spreadsheeteditor/main/locale/pl.json | 1784 +++++++++++++++++ apps/spreadsheeteditor/main/locale/ru.json | 1 + apps/spreadsheeteditor/main/locale/sk.json | 638 +++--- apps/spreadsheeteditor/main/locale/sl.json | 2 +- apps/spreadsheeteditor/main/locale/tr.json | 794 +++++++- apps/spreadsheeteditor/main/locale/uk.json | 40 +- apps/spreadsheeteditor/main/locale/zh.json | 85 +- apps/spreadsheeteditor/mobile/locale/de.json | 2 +- apps/spreadsheeteditor/mobile/locale/fr.json | 25 +- apps/spreadsheeteditor/mobile/locale/nl.json | 8 +- apps/spreadsheeteditor/mobile/locale/pl.json | 487 +++++ apps/spreadsheeteditor/mobile/locale/sk.json | 196 +- apps/spreadsheeteditor/mobile/locale/tr.json | 487 +++++ apps/spreadsheeteditor/mobile/locale/uk.json | 12 +- apps/spreadsheeteditor/mobile/locale/zh.json | 13 +- 52 files changed, 10255 insertions(+), 1347 deletions(-) create mode 100644 apps/documenteditor/main/locale/pl.json create mode 100644 apps/documenteditor/mobile/locale/pl.json create mode 100644 apps/documenteditor/mobile/locale/tr.json create mode 100644 apps/presentationeditor/main/locale/pl.json create mode 100644 apps/presentationeditor/mobile/locale/pl.json create mode 100644 apps/presentationeditor/mobile/locale/tr.json create mode 100644 apps/spreadsheeteditor/main/locale/pl.json create mode 100644 apps/spreadsheeteditor/mobile/locale/pl.json create mode 100644 apps/spreadsheeteditor/mobile/locale/tr.json diff --git a/apps/documenteditor/main/locale/cs.json b/apps/documenteditor/main/locale/cs.json index 004036a58..9f3a0c18c 100644 --- a/apps/documenteditor/main/locale/cs.json +++ b/apps/documenteditor/main/locale/cs.json @@ -1006,7 +1006,7 @@ "DE.Views.FileMenuPanels.Settings.txtCm": "Centimetr", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Přízpůsobit stránce", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce", - "DE.Views.FileMenuPanels.Settings.txtInch": "Palec (míra 2,54 cm)\n", + "DE.Views.FileMenuPanels.Settings.txtInch": "Palec (míra 2,54 cm)", "DE.Views.FileMenuPanels.Settings.txtInput": "Alternativní zadávání", "DE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Zobrazení komentářů", @@ -1478,7 +1478,7 @@ "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Nastavit vnější ohraničení a svislé a vodorovné čáry pro vnitřní buňky", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Nastavit vnější ohraničení tabulky a vnější ohraničení vnitřních buňek", "DE.Views.TableSettingsAdvanced.txtCm": "Centimetr", - "DE.Views.TableSettingsAdvanced.txtInch": "Palec (míra 2,54 cm)\n", + "DE.Views.TableSettingsAdvanced.txtInch": "Palec (míra 2,54 cm)", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Bez ohraničení", "DE.Views.TableSettingsAdvanced.txtPercent": "Procento", "DE.Views.TableSettingsAdvanced.txtPt": "Bod", @@ -1627,7 +1627,7 @@ "DE.Views.Toolbar.tipHAligh": "Horizontální zarovnání", "DE.Views.Toolbar.tipHighlightColor": "Barva zvýraznění", "DE.Views.Toolbar.tipImgAlign": "Zarovnat objekty", - "DE.Views.Toolbar.tipImgGroup": "Skupinové objekty\n\n", + "DE.Views.Toolbar.tipImgGroup": "Skupinové objekty", "DE.Views.Toolbar.tipImgWrapping": "Zalamovat text", "DE.Views.Toolbar.tipIncFont": "Zvětšit velikost písma", "DE.Views.Toolbar.tipIncPrLeft": "Zvětšit odsazení", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 19c28040b..0b3f9dd9a 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -197,7 +197,7 @@ "Common.Views.ReviewChanges.tipAcceptCurrent": "Aktuelle Änderungen annehmen", "Common.Views.ReviewChanges.tipRejectCurrent": "Aktuelle Änderungen ablehnen", "Common.Views.ReviewChanges.tipReview": "Nachverfolgen von Änderungen", - "Common.Views.ReviewChanges.tipReviewView": "Wählen Sie den Modus aus, in dem die Änderungen angezeigt werden sollen\n", + "Common.Views.ReviewChanges.tipReviewView": "Wählen Sie den Modus aus, in dem die Änderungen angezeigt werden sollen", "Common.Views.ReviewChanges.tipSetDocLang": "Sprache des Dokumentes festlegen", "Common.Views.ReviewChanges.tipSetSpelling": "Rechtschreibprüfung", "Common.Views.ReviewChanges.txtAccept": "Annehmen", @@ -259,7 +259,7 @@ "DE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "DE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden\t", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge ist fehlgeschlagen.", - "DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.\n", + "DE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.", "DE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "DE.Controllers.Main.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.", "DE.Controllers.Main.errorSessionIdle": "Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.", @@ -271,7 +271,7 @@ "DE.Controllers.Main.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", "DE.Controllers.Main.errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten", "DE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist verloren. Man kann das Dokument anschauen.
Es ist aber momentan nicht möglich, ihn herunterzuladen oder auszudrücken bis die Verbindung wiederhergestellt wird.", - "DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.\n", + "DE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\" und dann \"Speichern\", um sie zu speichern. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.", "DE.Controllers.Main.loadFontsTextText": "Daten werden geladen...", "DE.Controllers.Main.loadFontsTitleText": "Daten werden geladen", "DE.Controllers.Main.loadFontTextText": "Daten werden geladen...", @@ -829,7 +829,7 @@ "DE.Views.DocumentHolder.txtAddVer": "Vertikale Linie hinzufügen", "DE.Views.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten", "DE.Views.DocumentHolder.txtBehind": "Hinten", - "DE.Views.DocumentHolder.txtBorderProps": "Rahmeneigenschaften\n", + "DE.Views.DocumentHolder.txtBorderProps": "Rahmeneigenschaften", "DE.Views.DocumentHolder.txtBottom": "Unten", "DE.Views.DocumentHolder.txtColumnAlign": "Spaltenausrichtung", "DE.Views.DocumentHolder.txtDecreaseArg": "Argumentgröße reduzieren", @@ -840,7 +840,7 @@ "DE.Views.DocumentHolder.txtDeleteEq": "Formel löschen\t", "DE.Views.DocumentHolder.txtDeleteGroupChar": "Zeichen löschen", "DE.Views.DocumentHolder.txtDeleteRadical": "Wurzel löschen", - "DE.Views.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern\n", + "DE.Views.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern", "DE.Views.DocumentHolder.txtFractionSkewed": "Zu verzerrter Bruchrechnung ändern", "DE.Views.DocumentHolder.txtFractionStacked": "Zu verzerrter Bruchrechnung ändern", "DE.Views.DocumentHolder.txtGroup": "Gruppieren", @@ -870,7 +870,7 @@ "DE.Views.DocumentHolder.txtInsertEqBefore": "Formel vorher einfügen\t", "DE.Views.DocumentHolder.txtKeepTextOnly": "Nur Text beibehalten", "DE.Views.DocumentHolder.txtLimitChange": "Grenzwerten ändern ", - "DE.Views.DocumentHolder.txtLimitOver": "Grenzwert über den Text\n", + "DE.Views.DocumentHolder.txtLimitOver": "Grenzwert über den Text", "DE.Views.DocumentHolder.txtLimitUnder": "Grenzwert unter den Text", "DE.Views.DocumentHolder.txtMatchBrackets": "Eckige Klammern an Argumenthöhe anpassen\t", "DE.Views.DocumentHolder.txtMatrixAlign": "Matrixausrichtung", @@ -975,7 +975,7 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Absätze", "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Speicherort", "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Personen mit Berechtigungen", - "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbole mit Leerzeichen\n", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbole mit Leerzeichen", "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statistiken", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Titel des Dokuments", @@ -1184,15 +1184,15 @@ "DE.Views.MailMergeSettings.textMergeTo": "Verbindung mit", "DE.Views.MailMergeSettings.textPdf": "PDF", "DE.Views.MailMergeSettings.textPortal": "Speichern", - "DE.Views.MailMergeSettings.textPreview": "Ergebnisvorschau\n", + "DE.Views.MailMergeSettings.textPreview": "Ergebnisvorschau", "DE.Views.MailMergeSettings.textReadMore": "Weiter lesen", "DE.Views.MailMergeSettings.textSendMsg": "Alle E-Mail-Nachrichten sind bereit und werden innerhalb einiger Zeit versendet.
Die Geschwindigkeit des Email-Versands hängt von Ihrem Mail-Dienst ab. Sie können an dem Dokument weiterarbeiten oder es schließen. Nachdem Email-Versand werden Sie per E-Mail, die Sie bei der Registriering wervendeten, benachrichtigt.", "DE.Views.MailMergeSettings.textTo": "Zu", - "DE.Views.MailMergeSettings.txtFirst": "Zum ersten Datensatz\n", + "DE.Views.MailMergeSettings.txtFirst": "Zum ersten Datensatz", "DE.Views.MailMergeSettings.txtFromToError": "Der Wert \"Von\" muss kleiner als \"Zu\" sein", - "DE.Views.MailMergeSettings.txtLast": "Zum letzten Datensatz\n", - "DE.Views.MailMergeSettings.txtNext": "Zum nächsten Datensatz\n", - "DE.Views.MailMergeSettings.txtPrev": "Zu den vorherigen Rekord\n", + "DE.Views.MailMergeSettings.txtLast": "Zum letzten Datensatz", + "DE.Views.MailMergeSettings.txtNext": "Zum nächsten Datensatz", + "DE.Views.MailMergeSettings.txtPrev": "Zu den vorherigen Rekord", "DE.Views.MailMergeSettings.txtUntitled": "Unbenannt", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Merge ist fehlgeschlagen", "DE.Views.NoteSettingsDialog.textApply": "Anwenden", @@ -1297,7 +1297,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipTop": "Nur obere Rahmenlinie festlegen", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Keine Rahmen", "DE.Views.RightMenu.txtChartSettings": "Diagrammeinstellungen", - "DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen\n\n", + "DE.Views.RightMenu.txtHeaderFooterSettings": "Kopf- und Fußzeileneinstellungen", "DE.Views.RightMenu.txtImageSettings": "Bild-Einstellungen", "DE.Views.RightMenu.txtMailMergeSettings": "Seriendruckeinstellungen ", "DE.Views.RightMenu.txtParagraphSettings": "Absatzeinstellungen", @@ -1674,7 +1674,7 @@ "DE.Views.Toolbar.tipViewSettings": "Ansichts-Einstellungen", "DE.Views.Toolbar.txtScheme1": "Larissa", "DE.Views.Toolbar.txtScheme10": "Median\t", - "DE.Views.Toolbar.txtScheme11": "Metro\n", + "DE.Views.Toolbar.txtScheme11": "Metro", "DE.Views.Toolbar.txtScheme12": "Modul", "DE.Views.Toolbar.txtScheme13": "Lysithea", "DE.Views.Toolbar.txtScheme14": "Nereus", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index 421f1cfc8..0ed70d4c8 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -893,7 +893,7 @@ "DE.Views.DropcapSettingsAdvanced.textParagraph": "Párrafo", "DE.Views.DropcapSettingsAdvanced.textParameters": "Parámetros", "DE.Views.DropcapSettingsAdvanced.textPosition": "Posición", - "DE.Views.DropcapSettingsAdvanced.textRelative": "En relación a\n", + "DE.Views.DropcapSettingsAdvanced.textRelative": "En relación a", "DE.Views.DropcapSettingsAdvanced.textRight": "Derecho", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Altura en filas", "DE.Views.DropcapSettingsAdvanced.textTitle": "Letra capital - ajustes avanzados", @@ -1067,7 +1067,7 @@ "DE.Views.ImageSettingsAdvanced.textParagraph": "Párrafo", "DE.Views.ImageSettingsAdvanced.textPosition": "Posición", "DE.Views.ImageSettingsAdvanced.textPositionPc": "Posición Relativa", - "DE.Views.ImageSettingsAdvanced.textRelative": "en relación a\n", + "DE.Views.ImageSettingsAdvanced.textRelative": "en relación a", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relativo", "DE.Views.ImageSettingsAdvanced.textRight": "Derecho", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Margen derecho", @@ -1413,7 +1413,7 @@ "DE.Views.TableSettingsAdvanced.textPosition": "Posición", "DE.Views.TableSettingsAdvanced.textPrefWidth": "Anchura Preferida", "DE.Views.TableSettingsAdvanced.textPreview": "Vista previa", - "DE.Views.TableSettingsAdvanced.textRelative": "en relación a\n", + "DE.Views.TableSettingsAdvanced.textRelative": "en relación a", "DE.Views.TableSettingsAdvanced.textRight": "Derecho", "DE.Views.TableSettingsAdvanced.textRightOf": "a la derecha de", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Derecho", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index 36458f70a..251ffedd7 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -179,6 +179,7 @@ "Common.Views.OpenDialog.cancelButtonText": "Annulla", "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Codificazione", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password errata", "Common.Views.OpenDialog.txtPassword": "Password", "Common.Views.OpenDialog.txtTitle": "Seleziona parametri %1", "Common.Views.OpenDialog.txtTitleProtected": "File protetto", @@ -194,6 +195,8 @@ "Common.Views.RenameDialog.txtInvalidName": "Il nome del file non può contenere nessuno dei seguenti caratteri:", "Common.Views.ReviewChanges.hintNext": "Alla modifica successiva", "Common.Views.ReviewChanges.hintPrev": "Alla modifica precedente", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Accetta la modifica corrente", + "Common.Views.ReviewChanges.tipRejectCurrent": "Annulla la modifica attuale", "Common.Views.ReviewChanges.tipReview": "Traccia cambiamenti", "Common.Views.ReviewChanges.tipReviewView": "Selezionare il modo in cui si desidera visualizzare le modifiche", "Common.Views.ReviewChanges.tipSetDocLang": "Imposta la lingua del documento", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index 6e42e9294..f10213f4a 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -687,7 +687,7 @@ "DE.Views.DocumentHolder.spellcheckText": "スペル チェック", "DE.Views.DocumentHolder.splitCellsText": "セルの分割...", "DE.Views.DocumentHolder.splitCellTitleText": "セルの分割", - "DE.Views.DocumentHolder.styleText": "スタイルようにフォーマッティングする\n", + "DE.Views.DocumentHolder.styleText": "スタイルようにフォーマッティングする", "DE.Views.DocumentHolder.tableText": "テーブル", "DE.Views.DocumentHolder.textAlign": "配置する", "DE.Views.DocumentHolder.textArrange": "整列", @@ -1327,7 +1327,7 @@ "DE.Views.TableSettingsAdvanced.tipAll": "外部の罫線と全ての内部の線", "DE.Views.TableSettingsAdvanced.tipCellAll": "内部セルだけのために罫線を設定します。", "DE.Views.TableSettingsAdvanced.tipCellInner": "内部のセルだけのために縦線と横線を設定します。", - "DE.Views.TableSettingsAdvanced.tipCellOuter": "外部の罫線と内部のセルだけを設定します。\n", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "外部の罫線と内部のセルだけを設定します。", "DE.Views.TableSettingsAdvanced.tipInner": "内部の線だけを設定します。", "DE.Views.TableSettingsAdvanced.tipNone": "罫線の設定なし", "DE.Views.TableSettingsAdvanced.tipOuter": "外部の罫線だけを設定します。", diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index 042a924d4..6fb4ff193 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -281,7 +281,7 @@ "DE.Controllers.Main.loadingDocumentTextText": "Document wordt geladen...", "DE.Controllers.Main.loadingDocumentTitleText": "Document wordt geladen", "DE.Controllers.Main.mailMergeLoadFileText": "Gegevensbron wordt geladen...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen\n", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen", "DE.Controllers.Main.notcriticalErrorTitle": "Waarschuwing", "DE.Controllers.Main.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", "DE.Controllers.Main.openTextText": "Document wordt geopend...", diff --git a/apps/documenteditor/main/locale/pl.json b/apps/documenteditor/main/locale/pl.json new file mode 100644 index 000000000..eac3468f8 --- /dev/null +++ b/apps/documenteditor/main/locale/pl.json @@ -0,0 +1,1697 @@ +{ + "Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie", + "Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj", + "Common.Controllers.Chat.textUserLimit": "Używasz ONLYOFFICE Free Edition.
Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. Czytaj więcej ", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Gość", + "Common.Controllers.ExternalDiagramEditor.textClose": "Zamknij", + "Common.Controllers.ExternalDiagramEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Ostrzeżenie", + "Common.Controllers.ExternalMergeEditor.textAnonymous": "Gość", + "Common.Controllers.ExternalMergeEditor.textClose": "Zamknij", + "Common.Controllers.ExternalMergeEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.", + "Common.Controllers.ExternalMergeEditor.warningTitle": "Ostrzeżenie", + "Common.Controllers.History.notcriticalErrorTitle": "Ostrzeżenie", + "Common.Controllers.ReviewChanges.textAtLeast": "Co najmniej", + "Common.Controllers.ReviewChanges.textAuto": "Automatyczny", + "Common.Controllers.ReviewChanges.textBaseline": "Linia bazowa", + "Common.Controllers.ReviewChanges.textBold": "Pogrubione", + "Common.Controllers.ReviewChanges.textBreakBefore": "Przerwanie strony przed", + "Common.Controllers.ReviewChanges.textCaps": "Wszystkie duże litery", + "Common.Controllers.ReviewChanges.textCenter": "Wyrównaj do środka", + "Common.Controllers.ReviewChanges.textChart": "Wykres", + "Common.Controllers.ReviewChanges.textColor": "Kolor czcionki", + "Common.Controllers.ReviewChanges.textContextual": "Nie dodawaj odstępu między akapitami tego samego stylu", + "Common.Controllers.ReviewChanges.textDeleted": "Usunięte:", + "Common.Controllers.ReviewChanges.textDStrikeout": "Podwójne przekreślenie", + "Common.Controllers.ReviewChanges.textEquation": "Równanie", + "Common.Controllers.ReviewChanges.textExact": "Dokładnie", + "Common.Controllers.ReviewChanges.textFirstLine": "Pierwszy wiersz", + "Common.Controllers.ReviewChanges.textFontSize": "Rozmiar czcionki", + "Common.Controllers.ReviewChanges.textFormatted": "Sformatowany", + "Common.Controllers.ReviewChanges.textHighlight": "Kolor podświetlenia", + "Common.Controllers.ReviewChanges.textImage": "Obraz", + "Common.Controllers.ReviewChanges.textIndentLeft": "Wcięcie w lewo", + "Common.Controllers.ReviewChanges.textIndentRight": "Wcięcie w prawo", + "Common.Controllers.ReviewChanges.textInserted": "Wstawione:", + "Common.Controllers.ReviewChanges.textItalic": "Kursywa", + "Common.Controllers.ReviewChanges.textJustify": "Wyjustuj", + "Common.Controllers.ReviewChanges.textKeepLines": "Trzymaj wiersze razem", + "Common.Controllers.ReviewChanges.textKeepNext": "Trzymaj dalej", + "Common.Controllers.ReviewChanges.textLeft": "Wyrównaj do lewej", + "Common.Controllers.ReviewChanges.textLineSpacing": "Rozstaw wierszy:", + "Common.Controllers.ReviewChanges.textMultiple": "Mnożnik", + "Common.Controllers.ReviewChanges.textNoBreakBefore": "Żadna strona nie łamie się wcześniej", + "Common.Controllers.ReviewChanges.textNoContextual": "Dodaj odstęp między akapitami tego samego stylu", + "Common.Controllers.ReviewChanges.textNoKeepLines": "Nie trzymaj linii razem", + "Common.Controllers.ReviewChanges.textNoKeepNext": "Nie zbliżaj się do następnego", + "Common.Controllers.ReviewChanges.textNot": "Nie", + "Common.Controllers.ReviewChanges.textNoWidow": "Brak kontroli okna", + "Common.Controllers.ReviewChanges.textNum": "Zmień numerację", + "Common.Controllers.ReviewChanges.textParaDeleted": "Usunięty akapit ", + "Common.Controllers.ReviewChanges.textParaFormatted": "Sformatowany akapit", + "Common.Controllers.ReviewChanges.textParaInserted": "Wstawiony akapit ", + "Common.Controllers.ReviewChanges.textPosition": "Pozycja", + "Common.Controllers.ReviewChanges.textRight": "Wyrównaj do prawej", + "Common.Controllers.ReviewChanges.textShape": "Kształt", + "Common.Controllers.ReviewChanges.textShd": "Kolor tła", + "Common.Controllers.ReviewChanges.textSmallCaps": "Małe litery", + "Common.Controllers.ReviewChanges.textSpacing": "Rozstaw", + "Common.Controllers.ReviewChanges.textSpacingAfter": "Rozstaw po", + "Common.Controllers.ReviewChanges.textSpacingBefore": "Rozstaw przed", + "Common.Controllers.ReviewChanges.textStrikeout": "Skreślenie", + "Common.Controllers.ReviewChanges.textSubScript": "Indeks", + "Common.Controllers.ReviewChanges.textSuperScript": "Indeks górny", + "Common.Controllers.ReviewChanges.textTabs": "Zmień zakładki", + "Common.Controllers.ReviewChanges.textUnderline": "Podkreśl", + "Common.Controllers.ReviewChanges.textWidow": "Kontrola okna", + "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi", + "Common.UI.ComboDataView.emptyComboText": "Brak styli", + "Common.UI.ExtendedColorDialog.addButtonText": "Dodaj", + "Common.UI.ExtendedColorDialog.cancelButtonText": "Anuluj", + "Common.UI.ExtendedColorDialog.textCurrent": "Obecny", + "Common.UI.ExtendedColorDialog.textHexErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 000000 do FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Nowy", + "Common.UI.ExtendedColorDialog.textRGBErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość liczbową w zakresie od 0 do 255.", + "Common.UI.HSBColorPicker.textNoColor": "Brak koloru", + "Common.UI.SearchDialog.textHighlight": "Podświetl wyniki", + "Common.UI.SearchDialog.textMatchCase": "Rozróżniana wielkość liter", + "Common.UI.SearchDialog.textReplaceDef": "Wprowadź tekst zastępczy", + "Common.UI.SearchDialog.textSearchStart": "Wprowadź tekst tutaj", + "Common.UI.SearchDialog.textTitle": "Znajdź i zamień", + "Common.UI.SearchDialog.textTitle2": "Znajdź", + "Common.UI.SearchDialog.textWholeWords": "Tylko całe słowa", + "Common.UI.SearchDialog.txtBtnHideReplace": "Ukryj Zamień", + "Common.UI.SearchDialog.txtBtnReplace": "Zamień", + "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.textStandartColors": "Kolory standardowe", + "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.UI.Window.cancelButtonText": "Anuluj", + "Common.UI.Window.closeButtonText": "Zamknij", + "Common.UI.Window.noButtonText": "Nie", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Potwierdzenie", + "Common.UI.Window.textDontShow": "Nie pokazuj tej wiadomości ponownie", + "Common.UI.Window.textError": "Błąd", + "Common.UI.Window.textInformation": "Informacja", + "Common.UI.Window.textWarning": "Ostrzeżenie", + "Common.UI.Window.yesButtonText": "Tak", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "adres:", + "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021", + "Common.Views.About.txtLicensee": "LICENCJOBIORCA", + "Common.Views.About.txtLicensor": "LICENCJODAWCA", + "Common.Views.About.txtMail": "e-mail:", + "Common.Views.About.txtPoweredBy": "zasilany przez", + "Common.Views.About.txtTel": "tel.:", + "Common.Views.About.txtVersion": "Wersja", + "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Anuluj", + "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", + "Common.Views.Chat.textSend": "Wyślij", + "Common.Views.Comments.textAdd": "Dodaj", + "Common.Views.Comments.textAddComment": "Dodaj komentarz", + "Common.Views.Comments.textAddCommentToDoc": "Dodaj komentarz do", + "Common.Views.Comments.textAddReply": "Dodaj odpowiedź", + "Common.Views.Comments.textAnonym": "Gość", + "Common.Views.Comments.textCancel": "Anuluj", + "Common.Views.Comments.textClose": "Zamknij", + "Common.Views.Comments.textComments": "Komentarze", + "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEnterCommentHint": "Wprowadź twój komentarz tutaj", + "Common.Views.Comments.textHintAddComment": "Dodaj komentarz", + "Common.Views.Comments.textOpenAgain": "Otwórz ponownie", + "Common.Views.Comments.textReply": "Odpowiedz", + "Common.Views.Comments.textResolve": "Rozwiąż", + "Common.Views.Comments.textResolved": "Rozwiązany", + "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", + "Common.Views.CopyWarningDialog.textToCopy": "dla kopiowania", + "Common.Views.CopyWarningDialog.textToCut": "dla wycięcia", + "Common.Views.CopyWarningDialog.textToPaste": "do wklejenia", + "Common.Views.DocumentAccessDialog.textLoading": "Ładowanie...", + "Common.Views.DocumentAccessDialog.textTitle": "Ustawienia udostępniania", + "Common.Views.ExternalDiagramEditor.textClose": "Zamknij", + "Common.Views.ExternalDiagramEditor.textSave": "Zapisz i wyjdź", + "Common.Views.ExternalDiagramEditor.textTitle": "Edytor wykresu", + "Common.Views.ExternalMergeEditor.textClose": "Zamknij", + "Common.Views.ExternalMergeEditor.textSave": "Zapisz i wyjdź", + "Common.Views.ExternalMergeEditor.textTitle": "Odbiorcy korespondencji seryjnej", + "Common.Views.Header.labelCoUsersDescr": "Dokument jest obecnie edytowany przez kilku użytkowników.", + "Common.Views.Header.textBack": "Idź do dokumentów", + "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.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.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": "Ukryj", + "Common.Views.History.textHideAll": "Ukryj szczegółowe zmiany", + "Common.Views.History.textRestore": "Przywróć", + "Common.Views.History.textShow": "Rozszerz", + "Common.Views.History.textShowAll": "Pokaż szczegółowe zmiany", + "Common.Views.ImageFromUrlDialog.cancelButtonText": "Anuluj", + "Common.Views.ImageFromUrlDialog.okButtonText": "OK", + "Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", + "Common.Views.InsertTableDialog.cancelButtonText": "Anuluj", + "Common.Views.InsertTableDialog.okButtonText": "OK", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Musisz podać liczby wierszy i kolumn.", + "Common.Views.InsertTableDialog.txtColumns": "Ilość kolumn", + "Common.Views.InsertTableDialog.txtMaxText": "Maksymalna wartość dla tego pola to {0}", + "Common.Views.InsertTableDialog.txtMinText": "Minimalna wartość dla tego pola to {0}", + "Common.Views.InsertTableDialog.txtRows": "Liczba wierszy", + "Common.Views.InsertTableDialog.txtTitle": "Rozmiar tablicy", + "Common.Views.InsertTableDialog.txtTitleSplit": "Podziel komórkę", + "Common.Views.LanguageDialog.btnCancel": "Anuluj", + "Common.Views.LanguageDialog.btnOk": "OK", + "Common.Views.LanguageDialog.labelSelect": "Wybierz język dokumentu", + "Common.Views.OpenDialog.cancelButtonText": "Anuluj", + "Common.Views.OpenDialog.okButtonText": "OK", + "Common.Views.OpenDialog.txtEncoding": "Kodowanie", + "Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.", + "Common.Views.OpenDialog.txtPassword": "Hasło", + "Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji", + "Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony", + "Common.Views.PluginDlg.textLoading": "Ładowanie", + "Common.Views.Plugins.groupCaption": "Wtyczki", + "Common.Views.Plugins.strPlugins": "Wtyczki", + "Common.Views.Plugins.textLoading": "Ładowanie", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.Plugins.textStop": "Zatrzymać", + "Common.Views.RenameDialog.cancelButtonText": "Anuluj", + "Common.Views.RenameDialog.okButtonText": "OK", + "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.tipAcceptCurrent": "Zaakceptuj bieżącą zmianę", + "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.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.txtClose": "Zamknij", + "Common.Views.ReviewChanges.txtDocLang": "Język", + "Common.Views.ReviewChanges.txtFinal": "Wszystkie zmiany zostały zaakceptowane (podgląd)", + "Common.Views.ReviewChanges.txtMarkup": "Wszystkie zmiany (edycja)", + "Common.Views.ReviewChanges.txtNext": "Do następnej zmiany", + "Common.Views.ReviewChanges.txtOriginal": "Wszystkie zmiany odrzucone (podgląd)", + "Common.Views.ReviewChanges.txtPrev": "Do poprzedniej zmiany", + "Common.Views.ReviewChanges.txtReject": "Odrzuć", + "Common.Views.ReviewChanges.txtRejectAll": "Odrzuć wszystkie zmiany", + "Common.Views.ReviewChanges.txtRejectChanges": "Odrzuć zmiany", + "Common.Views.ReviewChanges.txtRejectCurrent": "Odrzuć bieżącą zmianę", + "Common.Views.ReviewChanges.txtSpelling": "Sprawdzanie pisowni", + "Common.Views.ReviewChanges.txtTurnon": "Śledzenie zmian", + "Common.Views.ReviewChanges.txtView": "Tryb wyświetlania", + "Common.Views.ReviewChangesDialog.textTitle": "Przejrzyj zmiany", + "Common.Views.ReviewChangesDialog.txtAccept": "Akceptuj", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Zaakceptuj wszystkie zmiany", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Zaakceptuj bieżącą zmianę", + "Common.Views.ReviewChangesDialog.txtNext": "Do następnej zmiany", + "Common.Views.ReviewChangesDialog.txtPrev": "Do poprzedniej zmiany", + "Common.Views.ReviewChangesDialog.txtReject": "Odrzuć", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Odrzuć wszystkie zmiany", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Odrzuć bieżącą zmianę", + "DE.Controllers.LeftMenu.leavePageText": "Wszystkie niezapisane zmiany w tym dokumencie zostaną utracone. Kliknij przycisk \"Anuluj\", a następnie \"Zapisz\", aby je zapisać. Kliknij \"OK\", aby usunąć wszystkie niezapisane zmiany.", + "DE.Controllers.LeftMenu.newDocumentTitle": "Nienazwany dokument", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Controllers.LeftMenu.requestEditRightsText": "Żądanie praw do edycji...", + "DE.Controllers.LeftMenu.textLoadHistory": "Wczytywanie historii wersji...", + "DE.Controllers.LeftMenu.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "DE.Controllers.LeftMenu.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.", + "DE.Controllers.LeftMenu.textReplaceSuccess": "Wyszukiwanie zakończone. Zastąpiono {0}", + "DE.Controllers.LeftMenu.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
Czy na pewno chcesz kontynuować?", + "DE.Controllers.Main.applyChangesTextText": "Załaduj zmiany...", + "DE.Controllers.Main.applyChangesTitleText": "Załaduj zmiany", + "DE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", + "DE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\", aby powrócić do listy dokumentów.", + "DE.Controllers.Main.criticalErrorTitle": "Błąd", + "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor dokumentów", + "DE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", + "DE.Controllers.Main.downloadMergeText": "Pobieranie...", + "DE.Controllers.Main.downloadMergeTitle": "Pobieranie", + "DE.Controllers.Main.downloadTextText": "Pobieranie dokumentu...", + "DE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu", + "DE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
Proszę skontaktować się z administratorem serwera dokumentów.", + "DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.", + "DE.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.

Dowiedz się więcej o połączeniu serwera dokumentów tutaj", + "DE.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ą.", + "DE.Controllers.Main.errorDataRange": "Błędny zakres danych.", + "DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "DE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", + "DE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", + "DE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", + "DE.Controllers.Main.errorMailMergeLoadFile": "Wczytywanie nie powiodło się", + "DE.Controllers.Main.errorMailMergeSaveFile": "Scalanie nie powiodło się.", + "DE.Controllers.Main.errorProcessSaveResult": "Zapisywanie nie powiodło się.", + "DE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", + "DE.Controllers.Main.errorSessionAbsolute": "Sesja edycji dokumentu wygasła. Proszę ponownie załadować stronę.", + "DE.Controllers.Main.errorSessionIdle": "Dokument nie był edytowany przez długi czas. Proszę ponownie załadować stronę.", + "DE.Controllers.Main.errorSessionToken": "Połączenie z serwerem zostało przerwane. Proszę ponownie załadować stronę.", + "DE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "DE.Controllers.Main.errorToken": "Token bezpieczeństwa dokumentu jest nieprawidłowo uformowany.
Prosimy o kontakt z administratorem serwera dokumentów.", + "DE.Controllers.Main.errorTokenExpire": "Token zabezpieczeń dokumentu wygasł.
Prosimy o kontakt z administratorem serwera dokumentów.", + "DE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", + "DE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", + "DE.Controllers.Main.errorUsersExceed": "Przekroczono liczbę dozwolonych użytkowników określonych przez plan cenowy wersji", + "DE.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.", + "DE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk \"Zostań na tej stronie\", a następnie \"Zapisz\", aby je zapisać. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "DE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", + "DE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", + "DE.Controllers.Main.loadFontTextText": "Ładowanie danych...", + "DE.Controllers.Main.loadFontTitleText": "Ładowanie danych", + "DE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", + "DE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", + "DE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", + "DE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", + "DE.Controllers.Main.loadingDocumentTextText": "Ładowanie dokumentu...", + "DE.Controllers.Main.loadingDocumentTitleText": "Ładowanie dokumentu", + "DE.Controllers.Main.mailMergeLoadFileText": "Ładowanie źródła danych", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Ładowanie źródła danych", + "DE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", + "DE.Controllers.Main.openTextText": "Otwieranie dokumentu...", + "DE.Controllers.Main.openTitleText": "Otwieranie dokumentu", + "DE.Controllers.Main.printTextText": "Drukowanie dokumentu...", + "DE.Controllers.Main.printTitleText": "Drukowanie dokumentu", + "DE.Controllers.Main.reloadButtonText": "Przeładuj stronę", + "DE.Controllers.Main.requestEditFailedMessageText": "Ktoś właśnie edytuje ten dokument. Proszę spróbuj później.", + "DE.Controllers.Main.requestEditFailedTitleText": "Odmowa dostępu", + "DE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliku", + "DE.Controllers.Main.savePreparingText": "Przygotowywanie do zapisu", + "DE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", + "DE.Controllers.Main.saveTextText": "Zapisywanie dokumentu...", + "DE.Controllers.Main.saveTitleText": "Zapisywanie dokumentu", + "DE.Controllers.Main.sendMergeText": "Wysyłanie korespondencji seryjnej...", + "DE.Controllers.Main.sendMergeTitle": "Wysyłanie korespondencji seryjnej...", + "DE.Controllers.Main.splitDividerErrorText": "Liczba wierszy musi być dzielnikiem %1.", + "DE.Controllers.Main.splitMaxColsErrorText": "Liczba kolumn musi być mniejsza niż %1.", + "DE.Controllers.Main.splitMaxRowsErrorText": "Liczba wierszy musi być mniejsza niż %1.", + "DE.Controllers.Main.textAnonymous": "Gość", + "DE.Controllers.Main.textBuyNow": "Odwiedź stronę web", + "DE.Controllers.Main.textChangesSaved": "Wszystkie zmiany zapisane", + "DE.Controllers.Main.textCloseTip": "Kliknij, żeby zamknąć wskazówkę", + "DE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "DE.Controllers.Main.textLoadingDocument": "Ładowanie dokumentu", + "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", + "DE.Controllers.Main.textShape": "Kształt", + "DE.Controllers.Main.textStrict": "Tryb ścisły", + "DE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie \"Szybki\" współtworzenia.
Kliknij przycisk \"Tryb ścisły\", aby przejść do trybu ścisłego edytowania, aby edytować plik bez ingerencji innych użytkowników i wysyłać zmiany tylko po zapisaniu. Możesz przełączać się między trybami współtworzenia, używając edytora Ustawienia zaawansowane.", + "DE.Controllers.Main.titleLicenseExp": "Upłynął okres ważności licencji", + "DE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "DE.Controllers.Main.titleUpdateVersion": "Wersja uległa zmianie", + "DE.Controllers.Main.txtArt": "Twój tekst tutaj", + "DE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", + "DE.Controllers.Main.txtButtons": "Przyciski", + "DE.Controllers.Main.txtCallouts": "Objaśnienia", + "DE.Controllers.Main.txtCharts": "Wykresy", + "DE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", + "DE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", + "DE.Controllers.Main.txtErrorLoadHistory": "Ładowanie historii nie powiodło się", + "DE.Controllers.Main.txtFiguredArrows": "Strzałki", + "DE.Controllers.Main.txtLines": "Linie", + "DE.Controllers.Main.txtMath": "Matematyczne", + "DE.Controllers.Main.txtNeedSynchronize": "Masz aktualizacje", + "DE.Controllers.Main.txtRectangles": "Prostokąty", + "DE.Controllers.Main.txtSeries": "Serie", + "DE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", + "DE.Controllers.Main.txtStyle_Heading_1": "Nagłówek 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Nagłówek 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Nagłówek 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Nagłówek 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Nagłówek 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Nagłówek 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Nagłówek 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Nagłówek 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Nagłówek 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Intensywny cytat", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Lista akapitów", + "DE.Controllers.Main.txtStyle_No_Spacing": "Brak przerw", + "DE.Controllers.Main.txtStyle_Normal": "Normalny", + "DE.Controllers.Main.txtStyle_Quote": "Cytuj", + "DE.Controllers.Main.txtStyle_Subtitle": "Podtytuł", + "DE.Controllers.Main.txtStyle_Title": "Tytuł", + "DE.Controllers.Main.txtXAxis": "Oś X", + "DE.Controllers.Main.txtYAxis": "Oś Y", + "DE.Controllers.Main.unknownErrorText": "Nieznany błąd.", + "DE.Controllers.Main.unsupportedBrowserErrorText ": "Twoja przeglądarka nie jest wspierana.", + "DE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", + "DE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu", + "DE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", + "DE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", + "DE.Controllers.Main.warnBrowserIE9": "Aplikacja ma małe możliwości w IE9. Użyj przeglądarki IE10 lub nowszej.", + "DE.Controllers.Main.warnBrowserZoom": "Aktualne ustawienie powiększenia przeglądarki nie jest w pełni obsługiwane. Zresetuj domyślny zoom, naciskając Ctrl + 0.", + "DE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "DE.Controllers.Main.warnNoLicense": "Używasz wersji ONLYOFFICE 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.", + "DE.Controllers.Main.warnProcessRightsChange": "Nie masz prawa edytować tego pliku.", + "DE.Controllers.Statusbar.textHasChanges": "Nowe zmiany zostały śledzone", + "DE.Controllers.Statusbar.textTrackChanges": "Dokument jest otwarty przy włączonym trybie śledzenia zmian", + "DE.Controllers.Statusbar.tipReview": "Śledzenie zmian", + "DE.Controllers.Statusbar.zoomText": "Powiększenie {0}%", + "DE.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ć?", + "DE.Controllers.Toolbar.confirmDeleteFootnotes": "Czy chcesz usunąć wszystkie przypisy?", + "DE.Controllers.Toolbar.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Controllers.Toolbar.textAccent": "Akcenty", + "DE.Controllers.Toolbar.textBracket": "Klamry", + "DE.Controllers.Toolbar.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "DE.Controllers.Toolbar.textFontSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość numeryczną w zakresie od 1 do 100", + "DE.Controllers.Toolbar.textFraction": "Ułamki", + "DE.Controllers.Toolbar.textFunction": "Funkcje", + "DE.Controllers.Toolbar.textIntegral": "Całki", + "DE.Controllers.Toolbar.textLargeOperator": "Duże operatory", + "DE.Controllers.Toolbar.textLimitAndLog": "Limity i algorytmy", + "DE.Controllers.Toolbar.textMatrix": "Macierze", + "DE.Controllers.Toolbar.textOperator": "Operatory", + "DE.Controllers.Toolbar.textRadical": "Pierwiastki", + "DE.Controllers.Toolbar.textScript": "Pisma", + "DE.Controllers.Toolbar.textSymbols": "Symbole", + "DE.Controllers.Toolbar.textWarning": "Ostrzeżenie", + "DE.Controllers.Toolbar.txtAccent_Accent": "Ostry", + "DE.Controllers.Toolbar.txtAccent_ArrowD": "Strzałka w lewo - w prawo powyżej", + "DE.Controllers.Toolbar.txtAccent_ArrowL": "Lewa strzałka powyżej", + "DE.Controllers.Toolbar.txtAccent_ArrowR": "Strzałka w prawo powyżej", + "DE.Controllers.Toolbar.txtAccent_Bar": "Paskowy", + "DE.Controllers.Toolbar.txtAccent_BarBot": " Kreska na dole", + "DE.Controllers.Toolbar.txtAccent_BarTop": "Kreska od góry", + "DE.Controllers.Toolbar.txtAccent_BorderBox": "Formuła w ramce (z wypełnieniem)", + "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Forma zamknięta (przykład)", + "DE.Controllers.Toolbar.txtAccent_Check": "Sprawdź", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Nawias klamrowy na dole", + "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Nawias klamrowy", + "DE.Controllers.Toolbar.txtAccent_Custom_1": "Wektor A", + "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Z Nadwymiarem", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y z cechą góry", + "DE.Controllers.Toolbar.txtAccent_DDDot": "Wielokropek", + "DE.Controllers.Toolbar.txtAccent_DDot": "Podwójna kropka", + "DE.Controllers.Toolbar.txtAccent_Dot": "Kropka", + "DE.Controllers.Toolbar.txtAccent_DoubleBar": "Podwójna kreska od góry", + "DE.Controllers.Toolbar.txtAccent_Grave": "Grawerować", + "DE.Controllers.Toolbar.txtAccent_GroupBot": "Grupowanie znaków poniżej", + "DE.Controllers.Toolbar.txtAccent_GroupTop": "Grupowanie znaków powyżej", + "DE.Controllers.Toolbar.txtAccent_HarpoonL": "Harpun w lewo do góry", + "DE.Controllers.Toolbar.txtAccent_HarpoonR": "Prawy Harpun Powyżej", + "DE.Controllers.Toolbar.txtAccent_Hat": "Okładka", + "DE.Controllers.Toolbar.txtAccent_Smile": "krótki", + "DE.Controllers.Toolbar.txtAccent_Tilde": "Tylda", + "DE.Controllers.Toolbar.txtBracket_Angle": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Klamry z separatorami", + "DE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Klamry z separatorami", + "DE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Curve": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Klamry z separatorami", + "DE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Custom_1": "Przypadek (dwa warunki)", + "DE.Controllers.Toolbar.txtBracket_Custom_2": "Przypadek (trzy warunki)", + "DE.Controllers.Toolbar.txtBracket_Custom_3": "Obiekt stosu", + "DE.Controllers.Toolbar.txtBracket_Custom_4": "Obiekt stosu", + "DE.Controllers.Toolbar.txtBracket_Custom_5": "Przykłady przypadków", + "DE.Controllers.Toolbar.txtBracket_Custom_6": "Współczynnik dwumianowy", + "DE.Controllers.Toolbar.txtBracket_Custom_7": "Współczynnik dwumianowy", + "DE.Controllers.Toolbar.txtBracket_Line": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_LineDouble": "Klamry", + "DE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_LowLim": "Klamry", + "DE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Round": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Klamry z separatorami", + "DE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Pojedyńcza klamra", + "DE.Controllers.Toolbar.txtBracket_Square": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Klamry", + "DE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Klamry", + "DE.Controllers.Toolbar.txtBracket_SquareDouble": "Klamry", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_UppLim": "Klamry", + "DE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Pojedyncza klamra", + "DE.Controllers.Toolbar.txtFractionDiagonal": "Skrzywiona frakcja", + "DE.Controllers.Toolbar.txtFractionDifferential_1": "Zróżnicowany", + "DE.Controllers.Toolbar.txtFractionDifferential_2": "Zróżnicowany", + "DE.Controllers.Toolbar.txtFractionDifferential_3": "Zróżnicowany", + "DE.Controllers.Toolbar.txtFractionDifferential_4": "Zróżnicowany", + "DE.Controllers.Toolbar.txtFractionHorizontal": "Ułamek liniowy", + "DE.Controllers.Toolbar.txtFractionPi_2": "Pi ponad 2", + "DE.Controllers.Toolbar.txtFractionSmall": "Mała frakcja", + "DE.Controllers.Toolbar.txtFractionVertical": "Skumulowany fragment", + "DE.Controllers.Toolbar.txtFunction_1_Cos": "Funkcja Inverse Cosine", + "DE.Controllers.Toolbar.txtFunction_1_Cosh": "Arccosinus hiperboliczny", + "DE.Controllers.Toolbar.txtFunction_1_Cot": "Funkcja Inverse Cotangent", + "DE.Controllers.Toolbar.txtFunction_1_Coth": "Hiperboliczna Funkcja Inverse Cotangent", + "DE.Controllers.Toolbar.txtFunction_1_Csc": "Funkcja Odwrotna Cosecans", + "DE.Controllers.Toolbar.txtFunction_1_Csch": "Hiperboliczny arcus cosecans", + "DE.Controllers.Toolbar.txtFunction_1_Sec": "Odwrotna funkcja sekantna", + "DE.Controllers.Toolbar.txtFunction_1_Sech": "Hiperboliczna odwrotna funkcja sekretna", + "DE.Controllers.Toolbar.txtFunction_1_Sin": "Funkcja Inverse Sine", + "DE.Controllers.Toolbar.txtFunction_1_Sinh": "Funkcja odwrotnej sinusoidy hiperbolicznej", + "DE.Controllers.Toolbar.txtFunction_1_Tan": "Odwrotna funkcja arcus tangens", + "DE.Controllers.Toolbar.txtFunction_1_Tanh": "Funkcja hiperboliczna odwrotna", + "DE.Controllers.Toolbar.txtFunction_Cos": "Funkcja cosinus", + "DE.Controllers.Toolbar.txtFunction_Cosh": "Cosinus hiperboliczny", + "DE.Controllers.Toolbar.txtFunction_Cot": "Funkcja ctg", + "DE.Controllers.Toolbar.txtFunction_Coth": "Cotangens hiperboliczny", + "DE.Controllers.Toolbar.txtFunction_Csc": "Funkcja Cosecant", + "DE.Controllers.Toolbar.txtFunction_Csch": "Funkcja hipotonii hiperbola", + "DE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus theta", + "DE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "DE.Controllers.Toolbar.txtFunction_Custom_3": "Wzór styczny", + "DE.Controllers.Toolbar.txtFunction_Sec": "Funkcja sekant", + "DE.Controllers.Toolbar.txtFunction_Sech": "Hiperboliczna funkcja sekretna", + "DE.Controllers.Toolbar.txtFunction_Sin": "Funkcja Sine", + "DE.Controllers.Toolbar.txtFunction_Sinh": "Funkcja hiperboliczna Sine", + "DE.Controllers.Toolbar.txtFunction_Tan": "Tangens", + "DE.Controllers.Toolbar.txtFunction_Tanh": "Tangens hiperboliczny", + "DE.Controllers.Toolbar.txtIntegral": "Całka", + "DE.Controllers.Toolbar.txtIntegral_dtheta": "Mechanizm różnicowy", + "DE.Controllers.Toolbar.txtIntegral_dx": "Mechanizm różnicowy x", + "DE.Controllers.Toolbar.txtIntegral_dy": "Mechanizm różnicowy y", + "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "Całka", + "DE.Controllers.Toolbar.txtIntegralDouble": "Całka podwójna", + "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Całka podwójna", + "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Całka podwójna", + "DE.Controllers.Toolbar.txtIntegralOriented": "Całka krzywej", + "DE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Całka krzywej", + "DE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral powierzchni", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral powierzchni", + "DE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral powierzchni", + "DE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Całka krzywej", + "DE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integralna objętość", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integralna objętość", + "DE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integralna objętość", + "DE.Controllers.Toolbar.txtIntegralSubSup": "Całka", + "DE.Controllers.Toolbar.txtIntegralTriple": "Potrójny integral", + "DE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Potrójny integral", + "DE.Controllers.Toolbar.txtIntegralTripleSubSup": "Potrójny integral", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Zaklinuj", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Zaklinuj", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Zaklinuj", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Zaklinuj", + "DE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Zaklinuj", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd": "Współprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Współprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Współprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Współprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Współprodukt", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", + "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Unia", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Przecięcie", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Przecięcie", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Przecięcie", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Przecięcie", + "DE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Przecięcie", + "DE.Controllers.Toolbar.txtLargeOperator_Prod": "Produkt", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produkt", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produkt", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produkt", + "DE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produkt", + "DE.Controllers.Toolbar.txtLargeOperator_Sum": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Podsumowanie", + "DE.Controllers.Toolbar.txtLargeOperator_Union": "Unia", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Unia", + "DE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Unia", + "DE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Unia", + "DE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Unia", + "DE.Controllers.Toolbar.txtLimitLog_Custom_1": "Przykładowy limit", + "DE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maksymalny przykład", + "DE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "DE.Controllers.Toolbar.txtLimitLog_Ln": "Logarytm naturalny", + "DE.Controllers.Toolbar.txtLimitLog_Log": "Logarytm", + "DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarytm", + "DE.Controllers.Toolbar.txtLimitLog_Max": "Maksymalny", + "DE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "DE.Controllers.Toolbar.txtMarginsH": "Górne i dolne marginesy są za wysokie dla danej wysokości strony", + "DE.Controllers.Toolbar.txtMarginsW": "Lewe i prawe marginesy są zbyt szerokie dla danej szerokości strony", + "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Pusta macierz z nawiasami", + "DE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Pusta macierz z nawiasami", + "DE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Pusta macierz z nawiasami", + "DE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Pusta macierz z nawiasami", + "DE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Pusta macierz", + "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Kropki bazowe", + "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punkty pomocnicze", + "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punkty po przekątnej", + "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Pionowe kropki", + "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Rozrzedzona matryca", + "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Rozrzedzona matryca", + "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Macierz jednostkowa", + "DE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Macierz jednostkowa", + "DE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Macierz jednostkowa", + "DE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Macierz jednostkowa", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Strzałka w lewo - w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Strzałka w lewo - w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Lewa strzałka poniżej", + "DE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Lewa strzałka powyżej", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Strzałka w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Strzałka w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_ColonEquals": "Dwukropek jest równy", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "Wydajność", + "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta wyjścia", + "DE.Controllers.Toolbar.txtOperator_Definition": "Równe definicji", + "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta równa się", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Strzałka w lewo - w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Strzałka w lewo - w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Lewa strzałka poniżej", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Lewa strzałka powyżej", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Strzałka w prawo Poniżej", + "DE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Strzałka w prawo powyżej", + "DE.Controllers.Toolbar.txtOperator_EqualsEquals": "Równy równy", + "DE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus równy", + "DE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Równy", + "DE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Zmierzone przez", + "DE.Controllers.Toolbar.txtRadicalCustom_1": "Pierwiastek", + "DE.Controllers.Toolbar.txtRadicalCustom_2": "Pierwiastek", + "DE.Controllers.Toolbar.txtRadicalRoot_2": "Pierwiastek drugiego stopnia", + "DE.Controllers.Toolbar.txtRadicalRoot_3": "Pierwiastek sześcienny", + "DE.Controllers.Toolbar.txtRadicalRoot_n": "Pierwiastek ze stopniem", + "DE.Controllers.Toolbar.txtRadicalSqrt": "Pierwiastek kwadratowy", + "DE.Controllers.Toolbar.txtScriptCustom_1": "Pismo", + "DE.Controllers.Toolbar.txtScriptCustom_2": "Pismo", + "DE.Controllers.Toolbar.txtScriptCustom_3": "Pismo", + "DE.Controllers.Toolbar.txtScriptCustom_4": "Pismo", + "DE.Controllers.Toolbar.txtScriptSub": "Indeks", + "DE.Controllers.Toolbar.txtScriptSubSup": "Indeks dolny", + "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Lewy indeks dolny", + "DE.Controllers.Toolbar.txtScriptSup": "Indeks górny", + "DE.Controllers.Toolbar.txtSymbol_about": "W przybliżeniu", + "DE.Controllers.Toolbar.txtSymbol_additional": "Uzupełnienie", + "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "DE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "DE.Controllers.Toolbar.txtSymbol_approx": "Prawie równe do", + "DE.Controllers.Toolbar.txtSymbol_ast": "Operator gwiazdek", + "DE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "DE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "DE.Controllers.Toolbar.txtSymbol_bullet": "Symbol kuli", + "DE.Controllers.Toolbar.txtSymbol_cap": "Przecięcie", + "DE.Controllers.Toolbar.txtSymbol_cbrt": "Pierwiastek sześcienny", + "DE.Controllers.Toolbar.txtSymbol_cdots": "Poziome kropki w środku", + "DE.Controllers.Toolbar.txtSymbol_celsius": "Stopnie Celcjusza", + "DE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "DE.Controllers.Toolbar.txtSymbol_cong": "W przybliżeniu równe", + "DE.Controllers.Toolbar.txtSymbol_cup": "Unia", + "DE.Controllers.Toolbar.txtSymbol_ddots": "Przekątny wielokropek w dół w prawo", + "DE.Controllers.Toolbar.txtSymbol_degree": "Stopnie", + "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "DE.Controllers.Toolbar.txtSymbol_div": "Znak dzielenia", + "DE.Controllers.Toolbar.txtSymbol_downarrow": "Strzałka w dół", + "DE.Controllers.Toolbar.txtSymbol_emptyset": "Pusty zestaw", + "DE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "DE.Controllers.Toolbar.txtSymbol_equals": "Równy", + "DE.Controllers.Toolbar.txtSymbol_equiv": "Identyczny do", + "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "DE.Controllers.Toolbar.txtSymbol_exists": "Tam jest", + "DE.Controllers.Toolbar.txtSymbol_factorial": "Czynność", + "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Stopnie Fahrenheit", + "DE.Controllers.Toolbar.txtSymbol_forall": "Dla wszystkich", + "DE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "DE.Controllers.Toolbar.txtSymbol_geq": "Większy lub równy niż", + "DE.Controllers.Toolbar.txtSymbol_gg": "Dużo większy niż", + "DE.Controllers.Toolbar.txtSymbol_greater": "Większy niż", + "DE.Controllers.Toolbar.txtSymbol_in": "Element", + "DE.Controllers.Toolbar.txtSymbol_inc": "Przyrost", + "DE.Controllers.Toolbar.txtSymbol_infinity": "Nieskończoność", + "DE.Controllers.Toolbar.txtSymbol_iota": "odrobina", + "DE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "DE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "DE.Controllers.Toolbar.txtSymbol_leftarrow": "Lewa strzałka", + "DE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Lewa-Prawa strzałka", + "DE.Controllers.Toolbar.txtSymbol_leq": "Mniejszy lub równy niż", + "DE.Controllers.Toolbar.txtSymbol_less": "Mniejszy niż", + "DE.Controllers.Toolbar.txtSymbol_ll": "Dużo mniejszy niż", + "DE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "DE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "DE.Controllers.Toolbar.txtSymbol_neq": "Różny od", + "DE.Controllers.Toolbar.txtSymbol_ni": "Zawiera jako członek", + "DE.Controllers.Toolbar.txtSymbol_not": "Znak negacji", + "DE.Controllers.Toolbar.txtSymbol_notexists": "Tam nie ma", + "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "DE.Controllers.Toolbar.txtSymbol_partial": "Częściowe różnice", + "DE.Controllers.Toolbar.txtSymbol_percent": "Procentowo", + "DE.Controllers.Toolbar.txtSymbol_phi": "Fi", + "DE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "DE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "DE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", + "DE.Controllers.Toolbar.txtSymbol_propto": "Proporcjonalny do", + "DE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "DE.Controllers.Toolbar.txtSymbol_qdrt": "Pierwiastek poczwórny", + "DE.Controllers.Toolbar.txtSymbol_qed": "Koniec dowodu", + "DE.Controllers.Toolbar.txtSymbol_rddots": "Przekątny wielokropek w górę w prawo", + "DE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Strzałka w prawo", + "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "DE.Controllers.Toolbar.txtSymbol_sqrt": "Znak pierwiastka", + "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "DE.Controllers.Toolbar.txtSymbol_therefore": "W związku z tym", + "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "DE.Controllers.Toolbar.txtSymbol_times": "Znak mnożenia", + "DE.Controllers.Toolbar.txtSymbol_uparrow": "Strzałka w górę", + "DE.Controllers.Toolbar.txtSymbol_upsilon": "Ypsilon", + "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon (opcja)", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Phi Wariant", + "DE.Controllers.Toolbar.txtSymbol_varpi": "Pi Wariant", + "DE.Controllers.Toolbar.txtSymbol_varrho": "Wariant Rho", + "DE.Controllers.Toolbar.txtSymbol_varsigma": "Wariacja Sigma", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Wariant Theta", + "DE.Controllers.Toolbar.txtSymbol_vdots": "Pionowe wyskakiwanie", + "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "DE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "DE.Views.ChartSettings.textArea": "Obszar", + "DE.Views.ChartSettings.textBar": "Pasek", + "DE.Views.ChartSettings.textChartType": "Zmień typ wykresu", + "DE.Views.ChartSettings.textColumn": "Kolumna", + "DE.Views.ChartSettings.textEditData": "Edytuj dane", + "DE.Views.ChartSettings.textHeight": "Wysokość", + "DE.Views.ChartSettings.textLine": "Liniowy", + "DE.Views.ChartSettings.textOriginalSize": "Domyślny rozmiar", + "DE.Views.ChartSettings.textPie": "Kołowe", + "DE.Views.ChartSettings.textPoint": "XY (Punktowy)", + "DE.Views.ChartSettings.textSize": "Rozmiar", + "DE.Views.ChartSettings.textStock": "Zbiory", + "DE.Views.ChartSettings.textStyle": "Styl", + "DE.Views.ChartSettings.textSurface": "Powierzchnia", + "DE.Views.ChartSettings.textUndock": "Odepnij od panelu", + "DE.Views.ChartSettings.textWidth": "Szerokość", + "DE.Views.ChartSettings.textWrap": "Styl zawijania", + "DE.Views.ChartSettings.txtBehind": "Za", + "DE.Views.ChartSettings.txtInFront": "Z przodu", + "DE.Views.ChartSettings.txtInline": "W tekście", + "DE.Views.ChartSettings.txtSquare": "Kwadratowy", + "DE.Views.ChartSettings.txtThrough": "Przez", + "DE.Views.ChartSettings.txtTight": "szczelnie", + "DE.Views.ChartSettings.txtTitle": "Wykres", + "DE.Views.ChartSettings.txtTopAndBottom": "Góra i dół", + "DE.Views.CustomColumnsDialog.cancelButtonText": "Anuluj", + "DE.Views.CustomColumnsDialog.okButtonText": "OK", + "DE.Views.CustomColumnsDialog.textColumns": "Ilość kolumn", + "DE.Views.CustomColumnsDialog.textSeparator": "Podział kolumn", + "DE.Views.CustomColumnsDialog.textSpacing": "Przerwa między kolumnami", + "DE.Views.CustomColumnsDialog.textTitle": "Kolumny", + "DE.Views.DocumentHolder.aboveText": "Powyżej", + "DE.Views.DocumentHolder.addCommentText": "Dodaj komentarz", + "DE.Views.DocumentHolder.advancedFrameText": "Zaawansowane ustawienia ramki", + "DE.Views.DocumentHolder.advancedParagraphText": "Zaawansowane ustawienia akapitu", + "DE.Views.DocumentHolder.advancedTableText": "Zaawansowane ustawienia tabeli", + "DE.Views.DocumentHolder.advancedText": "Zaawansowane ustawienia", + "DE.Views.DocumentHolder.alignmentText": "Wyrównanie", + "DE.Views.DocumentHolder.belowText": "Poniżej", + "DE.Views.DocumentHolder.breakBeforeText": "Przerwanie strony przed", + "DE.Views.DocumentHolder.cellAlignText": "Wyrównanie pionowe komórki", + "DE.Views.DocumentHolder.cellText": "Komórka", + "DE.Views.DocumentHolder.centerText": "Środek", + "DE.Views.DocumentHolder.chartText": "Zaawansowane ustawienia wykresu", + "DE.Views.DocumentHolder.columnText": "Kolumna", + "DE.Views.DocumentHolder.deleteColumnText": "Usuń kolumnę", + "DE.Views.DocumentHolder.deleteRowText": "Usuń wiersz", + "DE.Views.DocumentHolder.deleteTableText": "Usuń tabelę", + "DE.Views.DocumentHolder.deleteText": "Usuń", + "DE.Views.DocumentHolder.direct270Text": "Obróć tekst w górę", + "DE.Views.DocumentHolder.direct90Text": "Obróć tekst w dół", + "DE.Views.DocumentHolder.directHText": "Poziomy", + "DE.Views.DocumentHolder.directionText": "Kierunek tekstu", + "DE.Views.DocumentHolder.editChartText": "Edytuj dane", + "DE.Views.DocumentHolder.editFooterText": "Edytuj stopkę", + "DE.Views.DocumentHolder.editHeaderText": "Edytuj nagłówek", + "DE.Views.DocumentHolder.editHyperlinkText": "Edytuj hiperlink", + "DE.Views.DocumentHolder.flowoverText": "Styl zawijania - Przepływ", + "DE.Views.DocumentHolder.guestText": "Gość", + "DE.Views.DocumentHolder.hyperlinkText": "Hiperlink", + "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignoruj wszystko", + "DE.Views.DocumentHolder.ignoreSpellText": "Ignoruj", + "DE.Views.DocumentHolder.imageText": "Zaawansowane ustawienia obrazu", + "DE.Views.DocumentHolder.inlineText": "Styl zawijania - Linia wewnętrzna", + "DE.Views.DocumentHolder.insertColumnLeftText": "Kolumna lewa", + "DE.Views.DocumentHolder.insertColumnRightText": "Kolumna prawa", + "DE.Views.DocumentHolder.insertColumnText": "Wstaw kolumnę", + "DE.Views.DocumentHolder.insertRowAboveText": "Wiersz powyżej", + "DE.Views.DocumentHolder.insertRowBelowText": "Wiersz poniżej", + "DE.Views.DocumentHolder.insertRowText": "Wstaw wiersz", + "DE.Views.DocumentHolder.insertText": "Wstaw", + "DE.Views.DocumentHolder.keepLinesText": "Trzymaj wiersze razem", + "DE.Views.DocumentHolder.langText": "Wybierz język", + "DE.Views.DocumentHolder.leftText": "Lewy", + "DE.Views.DocumentHolder.loadSpellText": "Ładowanie wariantów...", + "DE.Views.DocumentHolder.mergeCellsText": "Scal komórki", + "DE.Views.DocumentHolder.moreText": "Więcej wariantów...", + "DE.Views.DocumentHolder.noSpellVariantsText": "Brak wariantów", + "DE.Views.DocumentHolder.originalSizeText": "Domyślny rozmiar", + "DE.Views.DocumentHolder.paragraphText": "Akapit", + "DE.Views.DocumentHolder.removeHyperlinkText": "Usuń hiperlink", + "DE.Views.DocumentHolder.rightText": "Prawy", + "DE.Views.DocumentHolder.rowText": "Wiersz", + "DE.Views.DocumentHolder.saveStyleText": "Utwórz nowy styl", + "DE.Views.DocumentHolder.selectCellText": "Wybierz komórkę", + "DE.Views.DocumentHolder.selectColumnText": "Wybierz kolumnę", + "DE.Views.DocumentHolder.selectRowText": "Wybierz wiersz", + "DE.Views.DocumentHolder.selectTableText": "Wybierz tabelę", + "DE.Views.DocumentHolder.selectText": "Wybierz", + "DE.Views.DocumentHolder.shapeText": "Zaawansowane ustawienia kształtu", + "DE.Views.DocumentHolder.spellcheckText": "Sprawdzanie pisowni", + "DE.Views.DocumentHolder.splitCellsText": "Podziel komórkę...", + "DE.Views.DocumentHolder.splitCellTitleText": "Podziel komórkę", + "DE.Views.DocumentHolder.styleText": "Formatowanie jako Styl", + "DE.Views.DocumentHolder.tableText": "Tabela", + "DE.Views.DocumentHolder.textAlign": "Wyrównaj", + "DE.Views.DocumentHolder.textArrange": "Zorganizować", + "DE.Views.DocumentHolder.textArrangeBack": "Wyślij do tła", + "DE.Views.DocumentHolder.textArrangeBackward": "Przenieś do tyłu", + "DE.Views.DocumentHolder.textArrangeForward": "Przenieś do przodu", + "DE.Views.DocumentHolder.textArrangeFront": "Przejdź na pierwszy plan", + "DE.Views.DocumentHolder.textCopy": "Kopiuj", + "DE.Views.DocumentHolder.textCut": "Wytnij", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Edytuj granicę owinięcia", + "DE.Views.DocumentHolder.textNextPage": "Następna strona", + "DE.Views.DocumentHolder.textPaste": "Wklej", + "DE.Views.DocumentHolder.textPrevPage": "Poprzednia strona", + "DE.Views.DocumentHolder.textShapeAlignBottom": "Wyrównaj do dołu", + "DE.Views.DocumentHolder.textShapeAlignCenter": "Wyrównaj do środka", + "DE.Views.DocumentHolder.textShapeAlignLeft": "Wyrównaj do lewej", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "Wyrównaj do środka", + "DE.Views.DocumentHolder.textShapeAlignRight": "Wyrównaj do prawej", + "DE.Views.DocumentHolder.textShapeAlignTop": "Wyrównaj do góry", + "DE.Views.DocumentHolder.textUndo": "Cofnij", + "DE.Views.DocumentHolder.textWrap": "Styl zawijania", + "DE.Views.DocumentHolder.tipIsLocked": "Ten element jest obecnie edytowany przez innego użytkownika.", + "DE.Views.DocumentHolder.txtAddBottom": "Dodaj dolną krawędź", + "DE.Views.DocumentHolder.txtAddFractionBar": "Dadaj pasek ułamka", + "DE.Views.DocumentHolder.txtAddHor": "Dodaj poziomą linie", + "DE.Views.DocumentHolder.txtAddLB": "Dodaj lewy dolny wiersz", + "DE.Views.DocumentHolder.txtAddLeft": "Dodaj lewą krawędź", + "DE.Views.DocumentHolder.txtAddLT": "Dodaj lewy górny wiersz", + "DE.Views.DocumentHolder.txtAddRight": "Dodaj prawą krawędź", + "DE.Views.DocumentHolder.txtAddTop": "Dodaj górną krawędź", + "DE.Views.DocumentHolder.txtAddVer": "Dodaj pionowy wiersz", + "DE.Views.DocumentHolder.txtAlignToChar": "Wyrównaj do znaku", + "DE.Views.DocumentHolder.txtBehind": "Za", + "DE.Views.DocumentHolder.txtBorderProps": "Ustawienia obramowania", + "DE.Views.DocumentHolder.txtBottom": "Dół", + "DE.Views.DocumentHolder.txtColumnAlign": "Wyrównanie kolumny", + "DE.Views.DocumentHolder.txtDecreaseArg": "Zmniejsz rozmiar argumentu", + "DE.Views.DocumentHolder.txtDeleteArg": "Usuń argument", + "DE.Views.DocumentHolder.txtDeleteBreak": "Usuń ręczną przerwę", + "DE.Views.DocumentHolder.txtDeleteChars": "Usuń zamknięte znaki", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Usuń zamknięte znaki i separatory", + "DE.Views.DocumentHolder.txtDeleteEq": "Usuń równanie", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "Usuń znak", + "DE.Views.DocumentHolder.txtDeleteRadical": "Usuń pierwiastek", + "DE.Views.DocumentHolder.txtFractionLinear": "Zmień na ułamek liniowy", + "DE.Views.DocumentHolder.txtFractionSkewed": "Zmienić na ukośny prosty ułamek", + "DE.Views.DocumentHolder.txtFractionStacked": "Zmień na ułożone ułamki", + "DE.Views.DocumentHolder.txtGroup": "Grupa", + "DE.Views.DocumentHolder.txtGroupCharOver": "Znak nad tekstem", + "DE.Views.DocumentHolder.txtGroupCharUnder": "Znak pod tekstem", + "DE.Views.DocumentHolder.txtHideBottom": "Ukryj dolną krawędź", + "DE.Views.DocumentHolder.txtHideBottomLimit": "Ukryj dolny limit", + "DE.Views.DocumentHolder.txtHideCloseBracket": "Ukryj uchwyt zamykający", + "DE.Views.DocumentHolder.txtHideDegree": "Ukryj stopień", + "DE.Views.DocumentHolder.txtHideHor": "Ukryj poziomy wiersz", + "DE.Views.DocumentHolder.txtHideLB": "Ukryj lewy dolny wiersz", + "DE.Views.DocumentHolder.txtHideLeft": "Ukryj lewą krawędź", + "DE.Views.DocumentHolder.txtHideLT": "Ukryj lewy górny wiersz", + "DE.Views.DocumentHolder.txtHideOpenBracket": "Ukryj uchwyt otwierający", + "DE.Views.DocumentHolder.txtHidePlaceholder": "Ukryj symbol zastępczy", + "DE.Views.DocumentHolder.txtHideRight": "Ukryj prawą krawędź", + "DE.Views.DocumentHolder.txtHideTop": "Ukryj górną krawędź", + "DE.Views.DocumentHolder.txtHideTopLimit": "Ukryj górny limit", + "DE.Views.DocumentHolder.txtHideVer": "Ukryj pionowy wiersz", + "DE.Views.DocumentHolder.txtIncreaseArg": "Zwiększ rozmiar argumentu", + "DE.Views.DocumentHolder.txtInFront": "Z przodu", + "DE.Views.DocumentHolder.txtInline": "W tekście", + "DE.Views.DocumentHolder.txtInsertArgAfter": "Wstaw argument po", + "DE.Views.DocumentHolder.txtInsertArgBefore": "Wstaw argument przed", + "DE.Views.DocumentHolder.txtInsertBreak": "Wstaw ręczną przerwę", + "DE.Views.DocumentHolder.txtInsertEqAfter": "Wstaw równanie po", + "DE.Views.DocumentHolder.txtInsertEqBefore": "Wstaw równanie przed", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Zachowaj tylko tekst", + "DE.Views.DocumentHolder.txtLimitChange": "Zmień lokalizację limitu", + "DE.Views.DocumentHolder.txtLimitOver": "Ograniczenie tekstu", + "DE.Views.DocumentHolder.txtLimitUnder": "Limit w tekście", + "DE.Views.DocumentHolder.txtMatchBrackets": "Dopasuj nawiasy do wysokości argumentu", + "DE.Views.DocumentHolder.txtMatrixAlign": "Wyrównanie macierzy", + "DE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", + "DE.Views.DocumentHolder.txtPressLink": "Naciśnij CTRL i kliknij link", + "DE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", + "DE.Views.DocumentHolder.txtRemLimit": "Usuń limit", + "DE.Views.DocumentHolder.txtRemoveAccentChar": "Usuwanie akcentu", + "DE.Views.DocumentHolder.txtRemoveBar": "Usuń pasek", + "DE.Views.DocumentHolder.txtRemScripts": "Usuń indeksy", + "DE.Views.DocumentHolder.txtRemSubscript": "Usuń indeks dolny", + "DE.Views.DocumentHolder.txtRemSuperscript": "Usuń górny indeks", + "DE.Views.DocumentHolder.txtScriptsAfter": "Pismo po tekście", + "DE.Views.DocumentHolder.txtScriptsBefore": "Pismo przed tekstem", + "DE.Views.DocumentHolder.txtShowBottomLimit": "Pokaż dolny limit", + "DE.Views.DocumentHolder.txtShowCloseBracket": "Pokaż klamrę zamykającą", + "DE.Views.DocumentHolder.txtShowDegree": "Pokaż stopień", + "DE.Views.DocumentHolder.txtShowOpenBracket": "Pokaż klamrę otwierającą", + "DE.Views.DocumentHolder.txtShowPlaceholder": "Pokaż symbol zastępczy", + "DE.Views.DocumentHolder.txtShowTopLimit": "Pokaż górny limit", + "DE.Views.DocumentHolder.txtSquare": "Kwadratowy", + "DE.Views.DocumentHolder.txtStretchBrackets": "Uchwyty rozciągające", + "DE.Views.DocumentHolder.txtThrough": "Przez", + "DE.Views.DocumentHolder.txtTight": "szczelnie", + "DE.Views.DocumentHolder.txtTop": "Góra", + "DE.Views.DocumentHolder.txtTopAndBottom": "Góra i dół", + "DE.Views.DocumentHolder.txtUnderbar": "Pasek pod tekstem", + "DE.Views.DocumentHolder.txtUngroup": "Rozgrupuj", + "DE.Views.DocumentHolder.updateStyleText": "Aktualizuj %1 styl", + "DE.Views.DocumentHolder.vertAlignText": "Wyrównaj pionowo", + "DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Anuluj", + "DE.Views.DropcapSettingsAdvanced.okButtonText": "OK", + "DE.Views.DropcapSettingsAdvanced.strBorders": "Obramowania i wypełnienie", + "DE.Views.DropcapSettingsAdvanced.strDropcap": "Inicjały", + "DE.Views.DropcapSettingsAdvanced.strMargins": "Marginesy", + "DE.Views.DropcapSettingsAdvanced.textAlign": "Wyrównanie", + "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Co najmniej", + "DE.Views.DropcapSettingsAdvanced.textAuto": "Automatyczny", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "Kolor tła", + "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Kolor obramowania", + "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać obramowania", + "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Rozmiar obramowania", + "DE.Views.DropcapSettingsAdvanced.textBottom": "Dół", + "DE.Views.DropcapSettingsAdvanced.textCenter": "Środek", + "DE.Views.DropcapSettingsAdvanced.textColumn": "Kolumna", + "DE.Views.DropcapSettingsAdvanced.textDistance": "Odległość od tekstu", + "DE.Views.DropcapSettingsAdvanced.textExact": "Dokładnie", + "DE.Views.DropcapSettingsAdvanced.textFlow": "Ramka przepływu", + "DE.Views.DropcapSettingsAdvanced.textFont": "Czcionka", + "DE.Views.DropcapSettingsAdvanced.textFrame": "Ramka", + "DE.Views.DropcapSettingsAdvanced.textHeight": "Wysokość", + "DE.Views.DropcapSettingsAdvanced.textHorizontal": "Poziomy", + "DE.Views.DropcapSettingsAdvanced.textInline": "Ramka liniowa", + "DE.Views.DropcapSettingsAdvanced.textInMargin": "W marginesie", + "DE.Views.DropcapSettingsAdvanced.textInText": "W tekście", + "DE.Views.DropcapSettingsAdvanced.textLeft": "Lewy", + "DE.Views.DropcapSettingsAdvanced.textMargin": "Margines", + "DE.Views.DropcapSettingsAdvanced.textMove": "Poruszaj się tekstem", + "DE.Views.DropcapSettingsAdvanced.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.DropcapSettingsAdvanced.textNone": "Żaden", + "DE.Views.DropcapSettingsAdvanced.textPage": "Strona", + "DE.Views.DropcapSettingsAdvanced.textParagraph": "Akapit", + "DE.Views.DropcapSettingsAdvanced.textParameters": "Parametry", + "DE.Views.DropcapSettingsAdvanced.textPosition": "Pozycja", + "DE.Views.DropcapSettingsAdvanced.textRelative": "Względny do", + "DE.Views.DropcapSettingsAdvanced.textRight": "Prawy", + "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Wysokość w wierszach", + "DE.Views.DropcapSettingsAdvanced.textTitle": "Inicjały - Ustawienia zaawansowane", + "DE.Views.DropcapSettingsAdvanced.textTitleFrame": "Ramka - Zaawansowane ustawienia", + "DE.Views.DropcapSettingsAdvanced.textTop": "Góra", + "DE.Views.DropcapSettingsAdvanced.textVertical": "Pionowy", + "DE.Views.DropcapSettingsAdvanced.textWidth": "Szerokość", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "Nazwa czcionki", + "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Bez krawędzi", + "DE.Views.FileMenu.btnBackCaption": "Idź do dokumentów", + "DE.Views.FileMenu.btnCloseMenuCaption": "Zamknij menu", + "DE.Views.FileMenu.btnCreateNewCaption": "Utwórz nowy", + "DE.Views.FileMenu.btnDownloadCaption": "Pobierz jako...", + "DE.Views.FileMenu.btnHelpCaption": "Pomoc...", + "DE.Views.FileMenu.btnHistoryCaption": "Historia wersji", + "DE.Views.FileMenu.btnInfoCaption": "Informacje o dokumencie...", + "DE.Views.FileMenu.btnPrintCaption": "Drukuj", + "DE.Views.FileMenu.btnRecentFilesCaption": "Otwórz ostatnie...", + "DE.Views.FileMenu.btnRenameCaption": "Zmień nazwę...", + "DE.Views.FileMenu.btnReturnCaption": "Powrót do dokumentu", + "DE.Views.FileMenu.btnRightsCaption": "Prawa dostępu...", + "DE.Views.FileMenu.btnSaveAsCaption": "Zapisz jako", + "DE.Views.FileMenu.btnSaveCaption": "Zapisz", + "DE.Views.FileMenu.btnSettingsCaption": "Zaawansowane ustawienia...", + "DE.Views.FileMenu.btnToEditCaption": "Edytuj dokument", + "DE.Views.FileMenu.textDownload": "Pobierz", + "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Z pustego", + "DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Z szablonu", + "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Utwórz nowy pusty dokument tekstowy, który będziesz mógł formatować po jego utworzeniu podczas edytowania. Możesz też wybrać jeden z szablonów, aby utworzyć dokument określonego typu lub celu, w którym niektóre style zostały wcześniej zastosowane.", + "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nowy dokument tekstowy", + "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Tam nie ma żadnych szablonów", + "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", + "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu", + "DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data utworzenia", + "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Ładowanie...", + "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Strony", + "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Akapity", + "DE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja", + "DE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, które mają prawa", + "DE.Views.FileMenuPanels.DocumentInfo.txtSpaces": "Symbole ze spacjami", + "DE.Views.FileMenuPanels.DocumentInfo.txtStatistics": "Statystyki", + "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Symbole", + "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tytuł dokumentu", + "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Słowa", + "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmień prawa dostępu", + "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, które mają prawa", + "DE.Views.FileMenuPanels.Settings.okButtonText": "Zatwierdź", + "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Włącz prowadnice wyrównania", + "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Włącz auto odzyskiwanie", + "DE.Views.FileMenuPanels.Settings.strAutosave": "Włącz automatyczny zapis", + "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Tryb współtworzenia", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Zobaczysz zmiany innych użytkowników od razu", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Zanim będziesz mógł zobaczyć zmiany wprowadzone przez innych użytkowników, musisz je najpierw zaakceptować.", + "DE.Views.FileMenuPanels.Settings.strFast": "Szybki", + "DE.Views.FileMenuPanels.Settings.strFontRender": "Podpowiedź czcionki", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Zawsze zapisuj na serwer (w przeciwnym razie zapisz na serwer dopiero przy zamykaniu dokumentu)", + "DE.Views.FileMenuPanels.Settings.strInputMode": "Włącz hieroglify", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "Włącz wyświetlanie komentarzy", + "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Włącz wyświetlanie rozwiązanych komentarzy", + "DE.Views.FileMenuPanels.Settings.strShowChanges": "Zmiany w czasie rzeczywistym podczas współtworzenia", + "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Włącz sprawdzanie pisowni", + "DE.Views.FileMenuPanels.Settings.strStrict": "Ścisły", + "DE.Views.FileMenuPanels.Settings.strUnit": "Jednostka miary", + "DE.Views.FileMenuPanels.Settings.strZoom": "Domyślna wartość powiększenia", + "DE.Views.FileMenuPanels.Settings.text10Minutes": "Każde 10 minut", + "DE.Views.FileMenuPanels.Settings.text30Minutes": "Każde 30 minut", + "DE.Views.FileMenuPanels.Settings.text5Minutes": "Każde 5 minut", + "DE.Views.FileMenuPanels.Settings.text60Minutes": "Każda godzina", + "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Porady wyrównania", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatyczne odzyskiwanie", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "Automatyczny zapis", + "DE.Views.FileMenuPanels.Settings.textDisabled": "Wyłączony", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Zapisz na serwer", + "DE.Views.FileMenuPanels.Settings.textMinute": "Każda minuta", + "DE.Views.FileMenuPanels.Settings.txtAll": "Pokaż wszystkie", + "DE.Views.FileMenuPanels.Settings.txtCm": "Centymetr", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Dopasuj do strony", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Dopasuj do szerokości", + "DE.Views.FileMenuPanels.Settings.txtInch": "Cale", + "DE.Views.FileMenuPanels.Settings.txtInput": "Alternatywne wejście", + "DE.Views.FileMenuPanels.Settings.txtLast": "Pokaż ostatni", + "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Widok komentarzy", + "DE.Views.FileMenuPanels.Settings.txtMac": "jak OS X", + "DE.Views.FileMenuPanels.Settings.txtNative": "Natywny", + "DE.Views.FileMenuPanels.Settings.txtNone": "Nic nie pokazuj", + "DE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Sprawdzanie pisowni", + "DE.Views.FileMenuPanels.Settings.txtWin": "jak Windows", + "DE.Views.HeaderFooterSettings.textBottomCenter": "Dolny środek", + "DE.Views.HeaderFooterSettings.textBottomLeft": "Lewy dolny", + "DE.Views.HeaderFooterSettings.textBottomRight": "Prawy dolny", + "DE.Views.HeaderFooterSettings.textDiffFirst": "Inna pierwsza strona", + "DE.Views.HeaderFooterSettings.textDiffOdd": "Różne dziwne i parzyste strony", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Stopka z dołu", + "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Nagłówek z góry", + "DE.Views.HeaderFooterSettings.textOptions": "Opcje", + "DE.Views.HeaderFooterSettings.textPageNum": "Wstaw numer strony", + "DE.Views.HeaderFooterSettings.textPosition": "Pozycja", + "DE.Views.HeaderFooterSettings.textSameAs": "Odnośnik do poprzedniego", + "DE.Views.HeaderFooterSettings.textTopCenter": "Górny środek", + "DE.Views.HeaderFooterSettings.textTopLeft": "Lewy górny", + "DE.Views.HeaderFooterSettings.textTopRight": "Prawy górny", + "DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Anuluj", + "DE.Views.HyperlinkSettingsDialog.okButtonText": "OK", + "DE.Views.HyperlinkSettingsDialog.textDefault": "Wybrany fragment tekstu", + "DE.Views.HyperlinkSettingsDialog.textDisplay": "Pokaż", + "DE.Views.HyperlinkSettingsDialog.textTitle": "Ustawienia hiperlinku", + "DE.Views.HyperlinkSettingsDialog.textTooltip": "Tekst wskazówki na ekranie", + "DE.Views.HyperlinkSettingsDialog.textUrl": "Link do", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "To pole jest wymagane", + "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", + "DE.Views.ImageSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "DE.Views.ImageSettings.textEdit": "Edytuj", + "DE.Views.ImageSettings.textEditObject": "Edytuj obiekt", + "DE.Views.ImageSettings.textFitMargins": "Dopasuj do marginesu", + "DE.Views.ImageSettings.textFromFile": "Z pliku", + "DE.Views.ImageSettings.textFromUrl": "Z adresu URL", + "DE.Views.ImageSettings.textHeight": "Wysokość", + "DE.Views.ImageSettings.textInsert": "Zamień obraz", + "DE.Views.ImageSettings.textOriginalSize": "Domyślny rozmiar", + "DE.Views.ImageSettings.textSize": "Rozmiar", + "DE.Views.ImageSettings.textWidth": "Szerokość", + "DE.Views.ImageSettings.textWrap": "Styl zawijania", + "DE.Views.ImageSettings.txtBehind": "Za", + "DE.Views.ImageSettings.txtInFront": "Z przodu", + "DE.Views.ImageSettings.txtInline": "W tekście", + "DE.Views.ImageSettings.txtSquare": "Kwadratowy", + "DE.Views.ImageSettings.txtThrough": "Przez", + "DE.Views.ImageSettings.txtTight": "szczelnie", + "DE.Views.ImageSettings.txtTopAndBottom": "Góra i dół", + "DE.Views.ImageSettingsAdvanced.cancelButtonText": "Anuluj", + "DE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "DE.Views.ImageSettingsAdvanced.strMargins": "Wypełnienie tekstem", + "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Bezwzględny", + "DE.Views.ImageSettingsAdvanced.textAlignment": "Wyrównanie", + "DE.Views.ImageSettingsAdvanced.textAlt": "Tekst alternatywny", + "DE.Views.ImageSettingsAdvanced.textAltDescription": "Opis", + "DE.Views.ImageSettingsAdvanced.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.", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "Tytuł", + "DE.Views.ImageSettingsAdvanced.textArrows": "Strzałki", + "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Zablokuj współczynnik kształtu", + "DE.Views.ImageSettingsAdvanced.textBeginSize": "Początkowy rozmiar", + "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Styl początkowy", + "DE.Views.ImageSettingsAdvanced.textBelow": "Poniżej", + "DE.Views.ImageSettingsAdvanced.textBevel": "Ukos", + "DE.Views.ImageSettingsAdvanced.textBottom": "Dół", + "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Dolny margines", + "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Zawijanie tekstu", + "DE.Views.ImageSettingsAdvanced.textCapType": "Typ czapki", + "DE.Views.ImageSettingsAdvanced.textCenter": "Środek", + "DE.Views.ImageSettingsAdvanced.textCharacter": "Znak", + "DE.Views.ImageSettingsAdvanced.textColumn": "Kolumna", + "DE.Views.ImageSettingsAdvanced.textDistance": "Odległość od tekstu", + "DE.Views.ImageSettingsAdvanced.textEndSize": "Rozmiar końcowy", + "DE.Views.ImageSettingsAdvanced.textEndStyle": "Styl końcowy", + "DE.Views.ImageSettingsAdvanced.textFlat": "Płaski", + "DE.Views.ImageSettingsAdvanced.textHeight": "Wysokość", + "DE.Views.ImageSettingsAdvanced.textHorizontal": "Poziomy", + "DE.Views.ImageSettingsAdvanced.textJoinType": "Dołącz typ", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Stałe proporcje", + "DE.Views.ImageSettingsAdvanced.textLeft": "Lewy", + "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Lewy margines", + "DE.Views.ImageSettingsAdvanced.textLine": "Wiersz", + "DE.Views.ImageSettingsAdvanced.textLineStyle": "Styl wierszy", + "DE.Views.ImageSettingsAdvanced.textMargin": "Margines", + "DE.Views.ImageSettingsAdvanced.textMiter": "prosty", + "DE.Views.ImageSettingsAdvanced.textMove": "Przesuń obiekt z tekstem", + "DE.Views.ImageSettingsAdvanced.textOptions": "Opcje", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Domyślny rozmiar", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Włącz nakładkę", + "DE.Views.ImageSettingsAdvanced.textPage": "Strona", + "DE.Views.ImageSettingsAdvanced.textParagraph": "Akapit", + "DE.Views.ImageSettingsAdvanced.textPosition": "Pozycja", + "DE.Views.ImageSettingsAdvanced.textPositionPc": "Względna pozycja", + "DE.Views.ImageSettingsAdvanced.textRelative": "względny do", + "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Względny", + "DE.Views.ImageSettingsAdvanced.textRight": "Prawy", + "DE.Views.ImageSettingsAdvanced.textRightMargin": "Prawy margines", + "DE.Views.ImageSettingsAdvanced.textRightOf": "na prawo od", + "DE.Views.ImageSettingsAdvanced.textRound": "Zaokrąglij", + "DE.Views.ImageSettingsAdvanced.textShape": "Ustawienia kształtu", + "DE.Views.ImageSettingsAdvanced.textSize": "Rozmiar", + "DE.Views.ImageSettingsAdvanced.textSquare": "Kwadratowy", + "DE.Views.ImageSettingsAdvanced.textTitle": "Obraz - zaawansowane ustawienia", + "DE.Views.ImageSettingsAdvanced.textTitleChart": "Wykres - zaawansowane ustawienia", + "DE.Views.ImageSettingsAdvanced.textTitleShape": "Kształt - Zaawansowane ustawienia", + "DE.Views.ImageSettingsAdvanced.textTop": "Góra", + "DE.Views.ImageSettingsAdvanced.textTopMargin": "Margines górny", + "DE.Views.ImageSettingsAdvanced.textVertical": "Pionowy", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Wagi i strzałki", + "DE.Views.ImageSettingsAdvanced.textWidth": "Szerokość", + "DE.Views.ImageSettingsAdvanced.textWrap": "Styl zawijania", + "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Z przodu", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "W tekście", + "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Kwadratowy", + "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Przez", + "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "szczelnie", + "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Góra i dół", + "DE.Views.LeftMenu.tipAbout": "O", + "DE.Views.LeftMenu.tipChat": "Czat", + "DE.Views.LeftMenu.tipComments": "Komentarze", + "DE.Views.LeftMenu.tipPlugins": "Wtyczki", + "DE.Views.LeftMenu.tipSearch": "Szukaj", + "DE.Views.LeftMenu.tipSupport": "Opinie i wsparcie", + "DE.Views.LeftMenu.tipTitles": "Tytuły", + "DE.Views.LeftMenu.txtDeveloper": "TRYB DEWELOPERA", + "DE.Views.MailMergeEmailDlg.cancelButtonText": "Anuluj", + "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", + "DE.Views.MailMergeEmailDlg.okButtonText": "Wyślij", + "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Motyw", + "DE.Views.MailMergeEmailDlg.textAttachDocx": "Załącz jako DOCX", + "DE.Views.MailMergeEmailDlg.textAttachPdf": "Załącz jako PDF", + "DE.Views.MailMergeEmailDlg.textFileName": "Nazwa pliku", + "DE.Views.MailMergeEmailDlg.textFormat": "Format poczty elektronicznej", + "DE.Views.MailMergeEmailDlg.textFrom": "Od", + "DE.Views.MailMergeEmailDlg.textHTML": "HTML", + "DE.Views.MailMergeEmailDlg.textMessage": "Wiadomość", + "DE.Views.MailMergeEmailDlg.textSubject": "Wiersz tematu", + "DE.Views.MailMergeEmailDlg.textTitle": "Wyślij do e-maila", + "DE.Views.MailMergeEmailDlg.textTo": "Do", + "DE.Views.MailMergeEmailDlg.textWarning": "Uwaga!", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Należy pamiętać, że po kliknięciu przycisku \"Wyślij\" nie można zatrzymać wysyłania wiadomości.", + "DE.Views.MailMergeRecepients.textLoading": "Ładowanie", + "DE.Views.MailMergeRecepients.textTitle": "Wybierz źródło danych", + "DE.Views.MailMergeSaveDlg.textLoading": "Ładowanie", + "DE.Views.MailMergeSaveDlg.textTitle": "Folder do zapisu", + "DE.Views.MailMergeSettings.downloadMergeTitle": "Scalanie", + "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Scalanie nie powiodło się.", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Views.MailMergeSettings.textAddRecipients": "Najpierw dodaj do listy odbiorców", + "DE.Views.MailMergeSettings.textAll": "Wszystkie rekordy", + "DE.Views.MailMergeSettings.textCurrent": "Obecny rekord", + "DE.Views.MailMergeSettings.textDataSource": "Źródło danych", + "DE.Views.MailMergeSettings.textDocx": "Docx", + "DE.Views.MailMergeSettings.textDownload": "Pobierz", + "DE.Views.MailMergeSettings.textEditData": "Edytuj listę odbiorców", + "DE.Views.MailMergeSettings.textEmail": "E-mail", + "DE.Views.MailMergeSettings.textFrom": "Od", + "DE.Views.MailMergeSettings.textGoToMail": "Idź do Mail", + "DE.Views.MailMergeSettings.textHighlight": "Podświetl scalone pola", + "DE.Views.MailMergeSettings.textInsertField": "Wstaw scalone pole", + "DE.Views.MailMergeSettings.textMaxRecepients": "Maksymalnie 100 odbiorców.", + "DE.Views.MailMergeSettings.textMerge": "Scal", + "DE.Views.MailMergeSettings.textMergeFields": "Scal pola", + "DE.Views.MailMergeSettings.textMergeTo": "Scal do", + "DE.Views.MailMergeSettings.textPdf": "PDF", + "DE.Views.MailMergeSettings.textPortal": "Zapisz", + "DE.Views.MailMergeSettings.textPreview": "Wyniki podglądu", + "DE.Views.MailMergeSettings.textReadMore": "Czytaj więcej", + "DE.Views.MailMergeSettings.textSendMsg": "Wszystkie wiadomości są gotowe i zostaną wysłane w ciągu pewnego czasu.
Szybkość wysyłki zależy od usługi poczty.
Możesz kontynuować pracę z dokumentem lub zamknąć go. Po zakończeniu operacji powiadomienie zostanie wysłane na twój rejestracyjny adres e-mail.", + "DE.Views.MailMergeSettings.textTo": "Do", + "DE.Views.MailMergeSettings.txtFirst": "Do pierwszego rekordu", + "DE.Views.MailMergeSettings.txtFromToError": "Wartość \"Od\" musi być mniejsza niż wartość \"Do\"", + "DE.Views.MailMergeSettings.txtLast": "Do ostatniego rekordu", + "DE.Views.MailMergeSettings.txtNext": "Do następnego rekordu", + "DE.Views.MailMergeSettings.txtPrev": "Do poprzedniego rekordu", + "DE.Views.MailMergeSettings.txtUntitled": "Niezatytułowany", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "Rozpoczęcie scalania nie powiodło się", + "DE.Views.NoteSettingsDialog.textApply": "Zatwierdź", + "DE.Views.NoteSettingsDialog.textApplyTo": "Zatwierdź zmiany do", + "DE.Views.NoteSettingsDialog.textCancel": "Anuluj", + "DE.Views.NoteSettingsDialog.textContinue": "Ciągły", + "DE.Views.NoteSettingsDialog.textCustom": "Znak niestandardowy", + "DE.Views.NoteSettingsDialog.textDocument": "Cały dokument", + "DE.Views.NoteSettingsDialog.textEachPage": "Uruchom ponownie każdą stronę", + "DE.Views.NoteSettingsDialog.textEachSection": "Uruchom ponownie każdą sekcję", + "DE.Views.NoteSettingsDialog.textFootnote": "Ruchoma tablica", + "DE.Views.NoteSettingsDialog.textFormat": "Formatowanie", + "DE.Views.NoteSettingsDialog.textInsert": "Wstaw", + "DE.Views.NoteSettingsDialog.textLocation": "Lokalizacja", + "DE.Views.NoteSettingsDialog.textNumbering": "Numeracja", + "DE.Views.NoteSettingsDialog.textNumFormat": "Format numeru", + "DE.Views.NoteSettingsDialog.textPageBottom": "Dół strony", + "DE.Views.NoteSettingsDialog.textSection": "Aktualna sekcja", + "DE.Views.NoteSettingsDialog.textStart": "Zacznij w", + "DE.Views.NoteSettingsDialog.textTextBottom": "Poniżej tekstu", + "DE.Views.NoteSettingsDialog.textTitle": "Ustawienia notatek", + "DE.Views.PageMarginsDialog.cancelButtonText": "Anuluj", + "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Views.PageMarginsDialog.okButtonText": "OK", + "DE.Views.PageMarginsDialog.textBottom": "Dół", + "DE.Views.PageMarginsDialog.textLeft": "Lewy", + "DE.Views.PageMarginsDialog.textRight": "Prawy", + "DE.Views.PageMarginsDialog.textTitle": "Marginesy", + "DE.Views.PageMarginsDialog.textTop": "Góra", + "DE.Views.PageMarginsDialog.txtMarginsH": "Górne i dolne marginesy są za wysokie dla danej wysokości strony", + "DE.Views.PageMarginsDialog.txtMarginsW": "Lewe i prawe marginesy są zbyt szerokie dla danej szerokości strony", + "DE.Views.PageSizeDialog.cancelButtonText": "Anuluj", + "DE.Views.PageSizeDialog.okButtonText": "OK", + "DE.Views.PageSizeDialog.textHeight": "Wysokość", + "DE.Views.PageSizeDialog.textTitle": "Rozmiar strony", + "DE.Views.PageSizeDialog.textWidth": "Szerokość", + "DE.Views.ParagraphSettings.strLineHeight": "Rozstaw wierszy", + "DE.Views.ParagraphSettings.strParagraphSpacing": "Odstępy akapitu", + "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Nie dodawaj odstępu między akapitami tego samego stylu", + "DE.Views.ParagraphSettings.strSpacingAfter": "Po", + "DE.Views.ParagraphSettings.strSpacingBefore": "Przed", + "DE.Views.ParagraphSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "DE.Views.ParagraphSettings.textAt": "W", + "DE.Views.ParagraphSettings.textAtLeast": "Co najmniej", + "DE.Views.ParagraphSettings.textAuto": "Mnożnik", + "DE.Views.ParagraphSettings.textBackColor": "Kolor tła", + "DE.Views.ParagraphSettings.textExact": "Dokładnie", + "DE.Views.ParagraphSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.ParagraphSettings.txtAutoText": "Automatyczny", + "DE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Anuluj", + "DE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty", + "DE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", + "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże litery", + "DE.Views.ParagraphSettingsAdvanced.strBorders": "Obramowania i wypełnienie", + "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Przerwanie strony przed", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie", + "DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Pierwszy wiersz", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy", + "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy", + "DE.Views.ParagraphSettingsAdvanced.strKeepLines": "Trzymaj wiersze razem", + "DE.Views.ParagraphSettingsAdvanced.strKeepNext": "Trzymaj dalej", + "DE.Views.ParagraphSettingsAdvanced.strMargins": "Wewnętrzne pola", + "DE.Views.ParagraphSettingsAdvanced.strOrphan": "Zakaz bękartów", + "DE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Czcionka", + "DE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Wcięcia i miejsca docelowe", + "DE.Views.ParagraphSettingsAdvanced.strParagraphPosition": "Umieszczenie", + "DE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Małe litery", + "DE.Views.ParagraphSettingsAdvanced.strStrike": "Przekreślony", + "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Indeks", + "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Indeks górny", + "DE.Views.ParagraphSettingsAdvanced.strTabs": "Karta", + "DE.Views.ParagraphSettingsAdvanced.textAlign": "Wyrównanie", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Kolor tła", + "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Kolor obramowania", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać granice i zastosuj do nich wybrany styl", + "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Rozmiar obramowania", + "DE.Views.ParagraphSettingsAdvanced.textBottom": "Dół", + "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Rozstaw znaków", + "DE.Views.ParagraphSettingsAdvanced.textDefault": "Domyślna zakładka", + "DE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", + "DE.Views.ParagraphSettingsAdvanced.textLeft": "Lewy", + "DE.Views.ParagraphSettingsAdvanced.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.ParagraphSettingsAdvanced.textPosition": "Pozycja", + "DE.Views.ParagraphSettingsAdvanced.textRemove": "Usuń", + "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Usuń wszystko", + "DE.Views.ParagraphSettingsAdvanced.textRight": "Prawy", + "DE.Views.ParagraphSettingsAdvanced.textSet": "Określ", + "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Rozstaw", + "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Środek", + "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "Lewy", + "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozycja karty", + "DE.Views.ParagraphSettingsAdvanced.textTabRight": "Prawy", + "DE.Views.ParagraphSettingsAdvanced.textTitle": "Akapit - Ustawienia zaawansowane", + "DE.Views.ParagraphSettingsAdvanced.textTop": "Góra", + "DE.Views.ParagraphSettingsAdvanced.tipAll": "Ustaw krawędź zewnętrzną i wszystkie wewnętrzne linie", + "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Ustaw tylko dolną krawędź", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "Ustawić tylko poziome linie wewnętrzne", + "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Ustaw tylko lewą krawędź", + "DE.Views.ParagraphSettingsAdvanced.tipNone": "Wyłącz krawędzie", + "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Ustaw tylko obramowanie zewnętrzne", + "DE.Views.ParagraphSettingsAdvanced.tipRight": "Ustaw tylko obramowanie prawej krawędzi", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "Ustaw tylko górną krawędź", + "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Bez krawędzi", + "DE.Views.RightMenu.txtChartSettings": "Ustawienia wykresu", + "DE.Views.RightMenu.txtHeaderFooterSettings": "Ustawienia nagłówka i stopki", + "DE.Views.RightMenu.txtImageSettings": "Ustawienia obrazu", + "DE.Views.RightMenu.txtMailMergeSettings": "Ustawienia korespondencji seryjnej", + "DE.Views.RightMenu.txtParagraphSettings": "Ustawienia akapitu", + "DE.Views.RightMenu.txtShapeSettings": "Ustawienia kształtu", + "DE.Views.RightMenu.txtTableSettings": "Ustawienia tabeli", + "DE.Views.RightMenu.txtTextArtSettings": "Ustawienia tekstu", + "DE.Views.ShapeSettings.strBackground": "Kolor tła", + "DE.Views.ShapeSettings.strChange": "Zmień kształt", + "DE.Views.ShapeSettings.strColor": "Kolor", + "DE.Views.ShapeSettings.strFill": "Wypełnij", + "DE.Views.ShapeSettings.strForeground": "Kolor pierwszoplanowy", + "DE.Views.ShapeSettings.strPattern": "Wzór", + "DE.Views.ShapeSettings.strSize": "Rozmiar", + "DE.Views.ShapeSettings.strStroke": "Obrys", + "DE.Views.ShapeSettings.strTransparency": "Nieprzezroczystość", + "DE.Views.ShapeSettings.strType": "Typ", + "DE.Views.ShapeSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "DE.Views.ShapeSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "DE.Views.ShapeSettings.textColor": "Kolor wypełnienia", + "DE.Views.ShapeSettings.textDirection": "Kierunek", + "DE.Views.ShapeSettings.textEmptyPattern": "Brak wzorca", + "DE.Views.ShapeSettings.textFromFile": "Z pliku", + "DE.Views.ShapeSettings.textFromUrl": "Z adresu URL", + "DE.Views.ShapeSettings.textGradient": "Gradient", + "DE.Views.ShapeSettings.textGradientFill": "Wypełnienie gradientem", + "DE.Views.ShapeSettings.textImageTexture": "Obraz lub tekstura", + "DE.Views.ShapeSettings.textLinear": "Liniowy", + "DE.Views.ShapeSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.ShapeSettings.textNoFill": "Brak wypełnienia", + "DE.Views.ShapeSettings.textPatternFill": "Wzór", + "DE.Views.ShapeSettings.textRadial": "Promieniowy", + "DE.Views.ShapeSettings.textSelectTexture": "Wybierz", + "DE.Views.ShapeSettings.textStretch": "Rozciągnij", + "DE.Views.ShapeSettings.textStyle": "Styl", + "DE.Views.ShapeSettings.textTexture": "Z tekstury", + "DE.Views.ShapeSettings.textTile": "Płytka", + "DE.Views.ShapeSettings.textWrap": "Styl zawijania", + "DE.Views.ShapeSettings.txtBehind": "Za", + "DE.Views.ShapeSettings.txtBrownPaper": "Brązowy papier", + "DE.Views.ShapeSettings.txtCanvas": "Płótno", + "DE.Views.ShapeSettings.txtCarton": "Karton", + "DE.Views.ShapeSettings.txtDarkFabric": "Ciemna tkanina", + "DE.Views.ShapeSettings.txtGrain": "Ziarno", + "DE.Views.ShapeSettings.txtGranite": "Granit", + "DE.Views.ShapeSettings.txtGreyPaper": "Szary papier", + "DE.Views.ShapeSettings.txtInFront": "Z przodu", + "DE.Views.ShapeSettings.txtInline": "W tekście", + "DE.Views.ShapeSettings.txtKnit": "Szydełkowanie", + "DE.Views.ShapeSettings.txtLeather": "Skórzany", + "DE.Views.ShapeSettings.txtNoBorders": "Brak krawędzi", + "DE.Views.ShapeSettings.txtPapyrus": "Papirus", + "DE.Views.ShapeSettings.txtSquare": "Kwadratowy", + "DE.Views.ShapeSettings.txtThrough": "Przez", + "DE.Views.ShapeSettings.txtTight": "szczelnie", + "DE.Views.ShapeSettings.txtTopAndBottom": "Góra i dół", + "DE.Views.ShapeSettings.txtWood": "Drewno", + "DE.Views.Statusbar.goToPageText": "Idź do strony", + "DE.Views.Statusbar.pageIndexText": "Strona {0} z {1}", + "DE.Views.Statusbar.tipFitPage": "Dopasuj do strony", + "DE.Views.Statusbar.tipFitWidth": "Dopasuj do szerokości", + "DE.Views.Statusbar.tipSetLang": "Ustaw język tekstu", + "DE.Views.Statusbar.tipZoomFactor": "Powiększenie", + "DE.Views.Statusbar.tipZoomIn": "Powiększ", + "DE.Views.Statusbar.tipZoomOut": "Pomniejsz", + "DE.Views.Statusbar.txtPageNumInvalid": "Błędny numer strony", + "DE.Views.StyleTitleDialog.textHeader": "Utwórz nowy styl", + "DE.Views.StyleTitleDialog.textNextStyle": "Następny styl akapitu", + "DE.Views.StyleTitleDialog.textTitle": "Tytuł", + "DE.Views.StyleTitleDialog.txtEmpty": "To pole jest wymagane", + "DE.Views.StyleTitleDialog.txtNotEmpty": "Pole nie może być puste", + "DE.Views.TableSettings.deleteColumnText": "Usuń kolumnę", + "DE.Views.TableSettings.deleteRowText": "Usuń wiersz", + "DE.Views.TableSettings.deleteTableText": "Usuń tabelę", + "DE.Views.TableSettings.insertColumnLeftText": "Wstaw kolumnę z lewej", + "DE.Views.TableSettings.insertColumnRightText": "Wstaw kolumnę z prawej", + "DE.Views.TableSettings.insertRowAboveText": "Wstaw wiersz powyżej", + "DE.Views.TableSettings.insertRowBelowText": "Wstaw wiersz poniżej", + "DE.Views.TableSettings.mergeCellsText": "Scal komórki", + "DE.Views.TableSettings.selectCellText": "Wybierz komórkę", + "DE.Views.TableSettings.selectColumnText": "Wybierz kolumnę", + "DE.Views.TableSettings.selectRowText": "Wybierz wiersz", + "DE.Views.TableSettings.selectTableText": "Wybierz tabelę", + "DE.Views.TableSettings.splitCellsText": "Podziel komórkę...", + "DE.Views.TableSettings.splitCellTitleText": "Podziel komórkę", + "DE.Views.TableSettings.strRepeatRow": "Powtarzaj jako wiersz nagłówka u góry każdej strony", + "DE.Views.TableSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "DE.Views.TableSettings.textBackColor": "Kolor tła", + "DE.Views.TableSettings.textBanded": "Na przemian", + "DE.Views.TableSettings.textBorderColor": "Kolor", + "DE.Views.TableSettings.textBorders": "Style obramowań", + "DE.Views.TableSettings.textCancel": "Anuluj", + "DE.Views.TableSettings.textColumns": "Kolumny", + "DE.Views.TableSettings.textEdit": "Wiersze i Kolumny", + "DE.Views.TableSettings.textEmptyTemplate": "Brak szablonów", + "DE.Views.TableSettings.textFirst": "Pierwszy", + "DE.Views.TableSettings.textHeader": "Nagłówek", + "DE.Views.TableSettings.textLast": "Ostatni", + "DE.Views.TableSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.TableSettings.textOK": "OK", + "DE.Views.TableSettings.textRows": "Wiersze", + "DE.Views.TableSettings.textSelectBorders": "Wybierz obramowania, które chcesz zmienić stosując styl wybrany powyżej", + "DE.Views.TableSettings.textTemplate": "Wybierz z szablonu", + "DE.Views.TableSettings.textTotal": "Wszystkie", + "DE.Views.TableSettings.textWrap": "Styl zawijania", + "DE.Views.TableSettings.textWrapNoneTooltip": "Tabela liniowa", + "DE.Views.TableSettings.textWrapParallelTooltip": "Ruchoma tablica", + "DE.Views.TableSettings.tipAll": "Ustaw krawędź zewnętrzną i wszystkie wewnętrzne linie", + "DE.Views.TableSettings.tipBottom": "Ustaw tylko obramowanie dolnej krawędzi", + "DE.Views.TableSettings.tipInner": "Ustawić tylko linie wewnętrzne", + "DE.Views.TableSettings.tipInnerHor": "Ustawić tylko poziome linie wewnętrzne", + "DE.Views.TableSettings.tipInnerVert": "Ustaw tylko wewnętrzne pionowe linie", + "DE.Views.TableSettings.tipLeft": "Ustaw tylko obramowanie lewej krawędzi", + "DE.Views.TableSettings.tipNone": "Wyłącz krawędzie", + "DE.Views.TableSettings.tipOuter": "Ustaw tylko obramowanie zewnętrzne", + "DE.Views.TableSettings.tipRight": "Ustaw tylko obramowanie prawej krawędzi", + "DE.Views.TableSettings.tipTop": "Ustaw tylko obramowanie górnej krawędzi", + "DE.Views.TableSettings.txtNoBorders": "Bez krawędzi", + "DE.Views.TableSettingsAdvanced.cancelButtonText": "Anuluj", + "DE.Views.TableSettingsAdvanced.okButtonText": "OK", + "DE.Views.TableSettingsAdvanced.textAlign": "Wyrównanie", + "DE.Views.TableSettingsAdvanced.textAlignment": "Wyrównanie", + "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Rozstaw między komórkami", + "DE.Views.TableSettingsAdvanced.textAlt": "Tekst alternatywny", + "DE.Views.TableSettingsAdvanced.textAltDescription": "Opis", + "DE.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.", + "DE.Views.TableSettingsAdvanced.textAltTitle": "Tytuł", + "DE.Views.TableSettingsAdvanced.textAnchorText": "Tekst", + "DE.Views.TableSettingsAdvanced.textAutofit": "Automatycznie zmień rozmiar, aby pasował do zawartości", + "DE.Views.TableSettingsAdvanced.textBackColor": "Tło komórki", + "DE.Views.TableSettingsAdvanced.textBelow": "Poniżej", + "DE.Views.TableSettingsAdvanced.textBorderColor": "Kolor obramowania", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Kliknij na diagram lub użyj przycisków, aby wybrać granice i zastosuj do nich wybrany styl", + "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Obramowania i tła", + "DE.Views.TableSettingsAdvanced.textBorderWidth": "Rozmiar obramowania", + "DE.Views.TableSettingsAdvanced.textBottom": "Dół", + "DE.Views.TableSettingsAdvanced.textCellOptions": "Opcje komórki", + "DE.Views.TableSettingsAdvanced.textCellProps": "Komórka", + "DE.Views.TableSettingsAdvanced.textCellSize": "Rozmiar komórki", + "DE.Views.TableSettingsAdvanced.textCenter": "Środek", + "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Środek", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "Użyj domyślnych marginesów", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Domyślne marginesy komórki", + "DE.Views.TableSettingsAdvanced.textDistance": "Odległość od tekstu", + "DE.Views.TableSettingsAdvanced.textHorizontal": "Poziomy", + "DE.Views.TableSettingsAdvanced.textIndLeft": "Wcięcie od lewej", + "DE.Views.TableSettingsAdvanced.textLeft": "Lewy", + "DE.Views.TableSettingsAdvanced.textLeftTooltip": "Lewy", + "DE.Views.TableSettingsAdvanced.textMargin": "Margines", + "DE.Views.TableSettingsAdvanced.textMargins": "Marginesy komórki", + "DE.Views.TableSettingsAdvanced.textMeasure": "Zmierz w", + "DE.Views.TableSettingsAdvanced.textMove": "Przesuń obiekt z tekstem", + "DE.Views.TableSettingsAdvanced.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.TableSettingsAdvanced.textOnlyCells": "Tylko dla wybranych komórek", + "DE.Views.TableSettingsAdvanced.textOptions": "Opcje", + "DE.Views.TableSettingsAdvanced.textOverlap": "Włącz nakładkę", + "DE.Views.TableSettingsAdvanced.textPage": "Strona", + "DE.Views.TableSettingsAdvanced.textPosition": "Pozycja", + "DE.Views.TableSettingsAdvanced.textPrefWidth": "Zalecana szerokość", + "DE.Views.TableSettingsAdvanced.textPreview": "Podgląd", + "DE.Views.TableSettingsAdvanced.textRelative": "względny do", + "DE.Views.TableSettingsAdvanced.textRight": "Prawy", + "DE.Views.TableSettingsAdvanced.textRightOf": "na prawo od", + "DE.Views.TableSettingsAdvanced.textRightTooltip": "Prawy", + "DE.Views.TableSettingsAdvanced.textTable": "Tabela", + "DE.Views.TableSettingsAdvanced.textTableBackColor": "Tło tabeli", + "DE.Views.TableSettingsAdvanced.textTablePosition": "Pozycja tabeli", + "DE.Views.TableSettingsAdvanced.textTableSize": "Rozmiar tablicy", + "DE.Views.TableSettingsAdvanced.textTitle": "Tabela - zaawansowane ustawienia", + "DE.Views.TableSettingsAdvanced.textTop": "Góra", + "DE.Views.TableSettingsAdvanced.textVertical": "Pionowy", + "DE.Views.TableSettingsAdvanced.textWidth": "Szerokość", + "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Szerokość i przestrzeń", + "DE.Views.TableSettingsAdvanced.textWrap": "Zawijanie tekstu", + "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Tabela liniowa", + "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Ruchoma tablica", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Styl zawijania", + "DE.Views.TableSettingsAdvanced.textWrapText": "Zawijaj tekst", + "DE.Views.TableSettingsAdvanced.tipAll": "Ustaw krawędź zewnętrzną i wszystkie wewnętrzne linie", + "DE.Views.TableSettingsAdvanced.tipCellAll": "Ustaw krawędzie tylko dla komórek wewnętrznych", + "DE.Views.TableSettingsAdvanced.tipCellInner": "Ustaw pionowe i poziome linie dla wewnętrznych komórek", + "DE.Views.TableSettingsAdvanced.tipCellOuter": "Ustaw krawędzie zewnętrzne tylko dla wewnętrznych komórek", + "DE.Views.TableSettingsAdvanced.tipInner": "Ustawić tylko linie wewnętrzne", + "DE.Views.TableSettingsAdvanced.tipNone": "Wyłącz krawędzie", + "DE.Views.TableSettingsAdvanced.tipOuter": "Ustaw tylko obramowanie zewnętrzne", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Ustaw krawędź zewnętrzną i obramowanie dla wszystkich wewnętrznych komórek", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Ustaw linie zewnętrzne i linie pionowe i poziome dla komórek wewnętrznych", + "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Zestaw stołowych zewnętrznej granicy i na granicy zewnętrznej do wewnętrznej komórki", + "DE.Views.TableSettingsAdvanced.txtCm": "Centymetr", + "DE.Views.TableSettingsAdvanced.txtInch": "Cale", + "DE.Views.TableSettingsAdvanced.txtNoBorders": "Bez krawędzi", + "DE.Views.TableSettingsAdvanced.txtPercent": "Procent", + "DE.Views.TableSettingsAdvanced.txtPt": "Punkt", + "DE.Views.TextArtSettings.strColor": "Kolor", + "DE.Views.TextArtSettings.strFill": "Wypełnij", + "DE.Views.TextArtSettings.strSize": "Rozmiar", + "DE.Views.TextArtSettings.strStroke": "Obrys", + "DE.Views.TextArtSettings.strTransparency": "Nieprzezroczystość", + "DE.Views.TextArtSettings.strType": "Typ", + "DE.Views.TextArtSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "DE.Views.TextArtSettings.textColor": "Kolor wypełnienia", + "DE.Views.TextArtSettings.textDirection": "Kierunek", + "DE.Views.TextArtSettings.textGradient": "Gradient", + "DE.Views.TextArtSettings.textGradientFill": "Wypełnienie gradientem", + "DE.Views.TextArtSettings.textLinear": "Liniowy", + "DE.Views.TextArtSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.TextArtSettings.textNoFill": "Brak wypełnienia", + "DE.Views.TextArtSettings.textRadial": "Promieniowy", + "DE.Views.TextArtSettings.textSelectTexture": "Wybierz", + "DE.Views.TextArtSettings.textStyle": "Styl", + "DE.Views.TextArtSettings.textTemplate": "Szablon", + "DE.Views.TextArtSettings.textTransform": "Przekształcenie", + "DE.Views.TextArtSettings.txtNoBorders": "Brak krawędzi", + "DE.Views.Toolbar.capBtnColumns": "Kolumny", + "DE.Views.Toolbar.capBtnComment": "Komentarz", + "DE.Views.Toolbar.capBtnInsChart": "Wykres", + "DE.Views.Toolbar.capBtnInsDropcap": "Inicjały", + "DE.Views.Toolbar.capBtnInsEquation": "Równanie", + "DE.Views.Toolbar.capBtnInsFootnote": "Ruchoma tablica", + "DE.Views.Toolbar.capBtnInsHeader": "Nagłówek stopka", + "DE.Views.Toolbar.capBtnInsImage": "Obraz", + "DE.Views.Toolbar.capBtnInsLink": "Hiperlink", + "DE.Views.Toolbar.capBtnInsPagebreak": "Przerwy", + "DE.Views.Toolbar.capBtnInsShape": "Kształt", + "DE.Views.Toolbar.capBtnInsTable": "Tabela", + "DE.Views.Toolbar.capBtnInsTextart": "Text Art", + "DE.Views.Toolbar.capBtnInsTextbox": "Tekst", + "DE.Views.Toolbar.capBtnMargins": "Marginesy", + "DE.Views.Toolbar.capBtnPageOrient": "Orientacja", + "DE.Views.Toolbar.capBtnPageSize": "Rozmiar", + "DE.Views.Toolbar.capImgAlign": "Wyrównaj", + "DE.Views.Toolbar.capImgBackward": "Przenieś do tyłu", + "DE.Views.Toolbar.capImgForward": "Przenieś do przodu", + "DE.Views.Toolbar.capImgGroup": "Grupa", + "DE.Views.Toolbar.capImgWrapping": "Zawijanie", + "DE.Views.Toolbar.mniCustomTable": "Wstaw tabelę niestandardową", + "DE.Views.Toolbar.mniDelFootnote": "Usuń wszystkie przypisy", + "DE.Views.Toolbar.mniEditDropCap": "Inicjały Ustawienia", + "DE.Views.Toolbar.mniEditFooter": "Edytuj stopkę", + "DE.Views.Toolbar.mniEditHeader": "Edytuj nagłówek", + "DE.Views.Toolbar.mniHiddenBorders": "Ukryte obramowanie tabeli", + "DE.Views.Toolbar.mniHiddenChars": "Znaki niedrukowane", + "DE.Views.Toolbar.mniImageFromFile": "Obraz z pliku", + "DE.Views.Toolbar.mniImageFromUrl": "Obraz z URL", + "DE.Views.Toolbar.mniInsFootnote": "Wstaw dopisek", + "DE.Views.Toolbar.mniNoteSettings": "Ustawienia notatek", + "DE.Views.Toolbar.strMenuNoFill": "Brak wypełnienia", + "DE.Views.Toolbar.textArea": "Obszar", + "DE.Views.Toolbar.textAutoColor": "Automatyczny", + "DE.Views.Toolbar.textBar": "Pasek", + "DE.Views.Toolbar.textBold": "Pogrubienie", + "DE.Views.Toolbar.textBottom": "Dół:", + "DE.Views.Toolbar.textCharts": "Wykresy", + "DE.Views.Toolbar.textColumn": "Kolumna", + "DE.Views.Toolbar.textColumnsCustom": "Niestandardowe kolumny", + "DE.Views.Toolbar.textColumnsLeft": "Lewy", + "DE.Views.Toolbar.textColumnsOne": "Jeden", + "DE.Views.Toolbar.textColumnsRight": "Prawy", + "DE.Views.Toolbar.textColumnsThree": "Trzy", + "DE.Views.Toolbar.textColumnsTwo": "Dwa", + "DE.Views.Toolbar.textCompactView": "Wyświetl kompaktowy pasek narzędzi", + "DE.Views.Toolbar.textContPage": "Ciągła strona", + "DE.Views.Toolbar.textEvenPage": "Z parzystej strony", + "DE.Views.Toolbar.textFitPage": "Dopasuj do strony", + "DE.Views.Toolbar.textFitWidth": "Dopasuj do szerokości", + "DE.Views.Toolbar.textGotoFootnote": "Idź do przypisów", + "DE.Views.Toolbar.textHideLines": "Ukryj linijki", + "DE.Views.Toolbar.textHideStatusBar": "Ukryj pasek stanu", + "DE.Views.Toolbar.textHideTitleBar": "Ukryj pasek tytułowy", + "DE.Views.Toolbar.textInMargin": "W marginesie", + "DE.Views.Toolbar.textInsColumnBreak": "Wstaw podział kolumny", + "DE.Views.Toolbar.textInsertPageCount": "Wstaw liczbę stron", + "DE.Views.Toolbar.textInsertPageNumber": "Wstaw numer strony", + "DE.Views.Toolbar.textInsPageBreak": "Wstaw podział strony", + "DE.Views.Toolbar.textInsSectionBreak": "Wstaw podział sekcji", + "DE.Views.Toolbar.textInText": "W tekście", + "DE.Views.Toolbar.textItalic": "Kursywa", + "DE.Views.Toolbar.textLandscape": "Krajobraz", + "DE.Views.Toolbar.textLeft": "Lewo:", + "DE.Views.Toolbar.textLine": "Wiersz", + "DE.Views.Toolbar.textMarginsLast": "Ostatni niestandardowy", + "DE.Views.Toolbar.textMarginsModerate": "Umiarkowany", + "DE.Views.Toolbar.textMarginsNarrow": "Wąski", + "DE.Views.Toolbar.textMarginsNormal": "Normalny", + "DE.Views.Toolbar.textMarginsUsNormal": "Normalny US", + "DE.Views.Toolbar.textMarginsWide": "Szeroki", + "DE.Views.Toolbar.textNewColor": "Dodaj nowy niestandardowy kolor", + "DE.Views.Toolbar.textNextPage": "Następna strona", + "DE.Views.Toolbar.textNone": "Żaden", + "DE.Views.Toolbar.textOddPage": "Nieparzysta strona", + "DE.Views.Toolbar.textPageMarginsCustom": "Niestandardowe marginesy", + "DE.Views.Toolbar.textPageSizeCustom": "Własny rozmiar strony", + "DE.Views.Toolbar.textPie": "Kołowe", + "DE.Views.Toolbar.textPoint": "XY (Punktowy)", + "DE.Views.Toolbar.textPortrait": "Portret", + "DE.Views.Toolbar.textRight": "Prawo:", + "DE.Views.Toolbar.textStock": "Zbiory", + "DE.Views.Toolbar.textStrikeout": "Skreślenie", + "DE.Views.Toolbar.textStyleMenuDelete": "Usuń styl", + "DE.Views.Toolbar.textStyleMenuDeleteAll": "Usuń wszystkie niestandardowe style", + "DE.Views.Toolbar.textStyleMenuNew": "Nowy styl od wyboru", + "DE.Views.Toolbar.textStyleMenuRestore": "Przywróć domyślne", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "Przywróć wszystko do domyślnych stylów", + "DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizuj z wyboru", + "DE.Views.Toolbar.textSubscript": "Indeks", + "DE.Views.Toolbar.textSuperscript": "Indeks górny", + "DE.Views.Toolbar.textSurface": "Powierzchnia", + "DE.Views.Toolbar.textTabFile": "Plik", + "DE.Views.Toolbar.textTabHome": "Start", + "DE.Views.Toolbar.textTabInsert": "Wstawić", + "DE.Views.Toolbar.textTabLayout": "Układ", + "DE.Views.Toolbar.textTabReview": "Przegląd", + "DE.Views.Toolbar.textTitleError": "Błąd", + "DE.Views.Toolbar.textToCurrent": "Do aktualnej pozycji", + "DE.Views.Toolbar.textTop": "Góra:", + "DE.Views.Toolbar.textUnderline": "Podkreśl", + "DE.Views.Toolbar.textZoom": "Powiększenie", + "DE.Views.Toolbar.tipAdvSettings": "Zaawansowane ustawienia", + "DE.Views.Toolbar.tipAlignCenter": "Wyrównaj do środka", + "DE.Views.Toolbar.tipAlignJust": "Wyjustowany", + "DE.Views.Toolbar.tipAlignLeft": "Wyrównaj do lewej", + "DE.Views.Toolbar.tipAlignRight": "Wyrównaj do prawej", + "DE.Views.Toolbar.tipBack": "Powrót", + "DE.Views.Toolbar.tipChangeChart": "Zmień typ wykresu", + "DE.Views.Toolbar.tipClearStyle": "Wyczyść style", + "DE.Views.Toolbar.tipColorSchemas": "Zmień schemat kolorów", + "DE.Views.Toolbar.tipColumns": "Wstaw kolumny", + "DE.Views.Toolbar.tipCopy": "Kopiuj", + "DE.Views.Toolbar.tipCopyStyle": "Kopiuj styl", + "DE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki", + "DE.Views.Toolbar.tipDecPrLeft": "Zmniejsz wcięcie", + "DE.Views.Toolbar.tipDropCap": "Wstaw dużą pierwszą literę", + "DE.Views.Toolbar.tipEditHeader": "Edytuj nagłówek lub stopkę", + "DE.Views.Toolbar.tipFontColor": "Kolor czcionki", + "DE.Views.Toolbar.tipFontName": "Czcionka", + "DE.Views.Toolbar.tipFontSize": "Rozmiar czcionki", + "DE.Views.Toolbar.tipHAligh": "Wyrównaj poziomo", + "DE.Views.Toolbar.tipHighlightColor": "Kolor podświetlenia", + "DE.Views.Toolbar.tipImgAlign": "Wyrównaj obiekty", + "DE.Views.Toolbar.tipImgGroup": "Grupuj obiekty", + "DE.Views.Toolbar.tipImgWrapping": "Zawijaj tekst", + "DE.Views.Toolbar.tipIncFont": "Zwiększ rozmiar czcionki", + "DE.Views.Toolbar.tipIncPrLeft": "Zwiększ wcięcie", + "DE.Views.Toolbar.tipInsertChart": "Wstaw wykres", + "DE.Views.Toolbar.tipInsertEquation": "Wstaw równanie", + "DE.Views.Toolbar.tipInsertHyperlink": "Dodaj hiperlink", + "DE.Views.Toolbar.tipInsertImage": "Wstaw obraz", + "DE.Views.Toolbar.tipInsertNum": "Wstaw numer strony", + "DE.Views.Toolbar.tipInsertShape": "Wstaw kształt", + "DE.Views.Toolbar.tipInsertTable": "Wstaw tabelę", + "DE.Views.Toolbar.tipInsertText": "Wstaw tekst", + "DE.Views.Toolbar.tipInsertTextArt": "Wstaw tekst", + "DE.Views.Toolbar.tipLineSpace": "Rozstaw wierszy akapitu", + "DE.Views.Toolbar.tipMailRecepients": "Korespondencja seryjna", + "DE.Views.Toolbar.tipMarkers": "Lista punktowa", + "DE.Views.Toolbar.tipMultilevels": "Lista wielopoziomowa", + "DE.Views.Toolbar.tipNotes": "Notatki", + "DE.Views.Toolbar.tipNumbers": "Lista numeryczna", + "DE.Views.Toolbar.tipPageBreak": "Wstawianie strony lub podziału sekcji", + "DE.Views.Toolbar.tipPageMargins": "Marginesy strony", + "DE.Views.Toolbar.tipPageOrient": "Orientacja strony", + "DE.Views.Toolbar.tipPageSize": "Rozmiar strony", + "DE.Views.Toolbar.tipParagraphStyle": "Styl akapitu", + "DE.Views.Toolbar.tipPaste": "Wklej", + "DE.Views.Toolbar.tipPrColor": "Kolor tła akapitu", + "DE.Views.Toolbar.tipPrint": "Drukuj", + "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.tipSendBackward": "Przenieś do tyłu", + "DE.Views.Toolbar.tipSendForward": "Przenieś do przodu", + "DE.Views.Toolbar.tipShowHiddenChars": "Znaki niedrukowane", + "DE.Views.Toolbar.tipSynchronize": "Dokument został zmieniony przez innego użytkownika. Kliknij, aby zapisać swoje zmiany i ponownie załadować zmiany.", + "DE.Views.Toolbar.tipUndo": "Cofnij", + "DE.Views.Toolbar.tipViewSettings": "Wyświetl ustawienia", + "DE.Views.Toolbar.txtScheme1": "Biuro", + "DE.Views.Toolbar.txtScheme10": "Mediana", + "DE.Views.Toolbar.txtScheme11": "Metro", + "DE.Views.Toolbar.txtScheme12": "Moduł", + "DE.Views.Toolbar.txtScheme13": "Zasobny", + "DE.Views.Toolbar.txtScheme14": "Oriel", + "DE.Views.Toolbar.txtScheme15": "Początek", + "DE.Views.Toolbar.txtScheme16": "Papier", + "DE.Views.Toolbar.txtScheme17": "Przesilenie", + "DE.Views.Toolbar.txtScheme18": "Techniczny", + "DE.Views.Toolbar.txtScheme19": "Trek", + "DE.Views.Toolbar.txtScheme2": "Skala szarości", + "DE.Views.Toolbar.txtScheme20": "Miejski", + "DE.Views.Toolbar.txtScheme21": "Rozmach", + "DE.Views.Toolbar.txtScheme3": "Apex", + "DE.Views.Toolbar.txtScheme4": "Aspekt", + "DE.Views.Toolbar.txtScheme5": "Obywatelski", + "DE.Views.Toolbar.txtScheme6": "Zbiegowisko", + "DE.Views.Toolbar.txtScheme7": "Kapitał", + "DE.Views.Toolbar.txtScheme8": "Przepływ", + "DE.Views.Toolbar.txtScheme9": "Odlewnia" +} \ No newline at end of file diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 216b44011..ee236917a 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -1577,7 +1577,7 @@ "DE.Views.Toolbar.textLine": "Linha", "DE.Views.Toolbar.textMarginsLast": "Últimos personalizados", "DE.Views.Toolbar.textMarginsModerate": "Moderado", - "DE.Views.Toolbar.textMarginsNarrow": "Estreito\n", + "DE.Views.Toolbar.textMarginsNarrow": "Estreito", "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Amplo", diff --git a/apps/documenteditor/main/locale/ru.json b/apps/documenteditor/main/locale/ru.json index 50eb18270..38276cd66 100644 --- a/apps/documenteditor/main/locale/ru.json +++ b/apps/documenteditor/main/locale/ru.json @@ -179,6 +179,7 @@ "Common.Views.OpenDialog.cancelButtonText": "Отмена", "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Кодировка", + "Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.", "Common.Views.OpenDialog.txtPassword": "Пароль", "Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1", "Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл", diff --git a/apps/documenteditor/main/locale/sk.json b/apps/documenteditor/main/locale/sk.json index 287dbfecc..de0eaa506 100644 --- a/apps/documenteditor/main/locale/sk.json +++ b/apps/documenteditor/main/locale/sk.json @@ -1,19 +1,19 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie", "Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu", - "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.
Iba dvaja používatelia dokážu spolueditovať dokument súčasne.
Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.
Read more\n\n\n\n", + "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.
Iba dvaja používatelia dokážu spolueditovať dokument súčasne.
Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.
Read more", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymný", "Common.Controllers.ExternalDiagramEditor.textClose": "Zatvoriť", - "Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.\n\n", + "Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Upozornenie", "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anonymný", "Common.Controllers.ExternalMergeEditor.textClose": "Zatvoriť", - "Common.Controllers.ExternalMergeEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.\n", + "Common.Controllers.ExternalMergeEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Upozornenie", "Common.Controllers.History.notcriticalErrorTitle": "Upozornenie", "Common.Controllers.ReviewChanges.textAtLeast": "najmenej", "Common.Controllers.ReviewChanges.textAuto": "Automaticky", - "Common.Controllers.ReviewChanges.textBaseline": "Základná linka/základný\n", + "Common.Controllers.ReviewChanges.textBaseline": "Základná linka/základný", "Common.Controllers.ReviewChanges.textBold": "Tučné", "Common.Controllers.ReviewChanges.textBreakBefore": "Zlom strany pred", "Common.Controllers.ReviewChanges.textCaps": "Všetko veľkým", @@ -25,7 +25,7 @@ "Common.Controllers.ReviewChanges.textDStrikeout": "Dvojité preškrtnutie", "Common.Controllers.ReviewChanges.textEquation": "Rovnica", "Common.Controllers.ReviewChanges.textExact": "presne", - "Common.Controllers.ReviewChanges.textFirstLine": "Prvý riadok\n\n", + "Common.Controllers.ReviewChanges.textFirstLine": "Prvý riadok", "Common.Controllers.ReviewChanges.textFontSize": "Veľkosť písma", "Common.Controllers.ReviewChanges.textFormatted": "Formátované", "Common.Controllers.ReviewChanges.textHighlight": "Farba zvýraznenia", @@ -42,10 +42,10 @@ "Common.Controllers.ReviewChanges.textMultiple": "Viacnásobný", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Nevložiť zlom strany pred", "Common.Controllers.ReviewChanges.textNoContextual": "Pridať medzeru medzi odseky s rovnakým štýlom", - "Common.Controllers.ReviewChanges.textNoKeepLines": "Neudržujte riadky/čiary dohromady\n\n", + "Common.Controllers.ReviewChanges.textNoKeepLines": "Neudržujte riadky/čiary dohromady", "Common.Controllers.ReviewChanges.textNoKeepNext": "Nepokračovať s ďalším", "Common.Controllers.ReviewChanges.textNot": "Nie", - "Common.Controllers.ReviewChanges.textNoWidow": "Žiadne ovládanie okien\n\n", + "Common.Controllers.ReviewChanges.textNoWidow": "Žiadne ovládanie okien", "Common.Controllers.ReviewChanges.textNum": "Zmeniť číslovanie", "Common.Controllers.ReviewChanges.textParaDeleted": "Odstránený odsek", "Common.Controllers.ReviewChanges.textParaFormatted": "Formátovaný odsek", @@ -63,24 +63,24 @@ "Common.Controllers.ReviewChanges.textSuperScript": "Horný index", "Common.Controllers.ReviewChanges.textTabs": "Zmeniť tabuľky", "Common.Controllers.ReviewChanges.textUnderline": "Podčiarknuť", - "Common.Controllers.ReviewChanges.textWidow": "Ovládanie okien\n\n", + "Common.Controllers.ReviewChanges.textWidow": "Ovládanie okien", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", - "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly\n\n", + "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", "Common.UI.ExtendedColorDialog.addButtonText": "Pridať", "Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušiť", "Common.UI.ExtendedColorDialog.textCurrent": "Aktuálny", - "Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.\n", + "Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nový", - "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.\n\n\n\n", + "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez farby", "Common.UI.SearchDialog.textHighlight": "Zvýrazniť výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovať veľkosť písmen", - "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text\n\n", + "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text", "Common.UI.SearchDialog.textSearchStart": "Zadať svoj text tu", "Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť", "Common.UI.SearchDialog.textTitle2": "Nájsť", - "Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n", + "Common.UI.SearchDialog.textWholeWords": "Len celé slová", "Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu", "Common.UI.SearchDialog.txtBtnReplace": "Nahradiť", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko", @@ -103,8 +103,8 @@ "Common.Views.About.txtAddress": "adresa:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Lotyšsko, EU, LV-1021", "Common.Views.About.txtLicensee": "DRŽITEĽ LICENCIE", - "Common.Views.About.txtLicensor": "UDEĽOVATEĽ LICENCIE\n", - "Common.Views.About.txtMail": "e-mail: \n", + "Common.Views.About.txtLicensor": "UDEĽOVATEĽ LICENCIE", + "Common.Views.About.txtMail": "e-mail: ", "Common.Views.About.txtPoweredBy": "Poháňaný ", "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verzia", @@ -139,8 +139,8 @@ "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", "Common.Views.ExternalMergeEditor.textClose": "Zatvoriť", "Common.Views.ExternalMergeEditor.textSave": "Uložiť a Zavrieť", - "Common.Views.ExternalMergeEditor.textTitle": "Príjemcovia hromadnej korešpondencie\n\n", - "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n", + "Common.Views.ExternalMergeEditor.textTitle": "Príjemcovia hromadnej korešpondencie", + "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.", "Common.Views.Header.textBack": "Prejsť do Dokumentov", "Common.Views.Header.textSaveBegin": "Ukladanie...", "Common.Views.Header.textSaveChanged": "Modifikovaný", @@ -150,26 +150,26 @@ "Common.Views.Header.tipDownload": "Stiahnuť súbor", "Common.Views.Header.tipGoEdit": "Editovať aktuálny súbor", "Common.Views.Header.tipPrint": "Vytlačiť súbor", - "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n", + "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom", "Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva", "Common.Views.Header.txtRename": "Premenovať", "Common.Views.History.textCloseHistory": "Zavrieť históriu", "Common.Views.History.textHide": "Stiahnuť/zbaliť/zvinúť", - "Common.Views.History.textHideAll": "Skryť podrobné zmeny\n\n", + "Common.Views.History.textHideAll": "Skryť podrobné zmeny", "Common.Views.History.textRestore": "Obnoviť", "Common.Views.History.textShow": "Expandovať/rozšíriť", - "Common.Views.History.textShowAll": "Zobraziť detailné zmeny\n", + "Common.Views.History.textShowAll": "Zobraziť detailné zmeny", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť", "Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte obrázok URL:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "Common.Views.InsertTableDialog.cancelButtonText": "Zrušiť", "Common.Views.InsertTableDialog.okButtonText": "OK", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte zadať počet platných riadkov a stĺpcov.\n\n", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte zadať počet platných riadkov a stĺpcov.", "Common.Views.InsertTableDialog.txtColumns": "Počet stĺpcov", - "Common.Views.InsertTableDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}.\n\n", - "Common.Views.InsertTableDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}.\n\n", + "Common.Views.InsertTableDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}.", + "Common.Views.InsertTableDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}.", "Common.Views.InsertTableDialog.txtRows": "Počet riadkov", "Common.Views.InsertTableDialog.txtTitle": "Veľkosť tabuľky", "Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku", @@ -179,6 +179,7 @@ "Common.Views.OpenDialog.cancelButtonText": "Zrušiť", "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Kódovanie", + "Common.Views.OpenDialog.txtIncorrectPwd": "Heslo je nesprávne.", "Common.Views.OpenDialog.txtPassword": "Heslo", "Common.Views.OpenDialog.txtTitle": "Vyberte %1 možností", "Common.Views.OpenDialog.txtTitleProtected": "Chránený súbor", @@ -191,10 +192,12 @@ "Common.Views.RenameDialog.cancelButtonText": "Zrušiť", "Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.textName": "Názov súboru", - "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:\n\n", - "Common.Views.ReviewChanges.hintNext": "K ďalšej zmene\n\n", + "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:", + "Common.Views.ReviewChanges.hintNext": "K ďalšej zmene", "Common.Views.ReviewChanges.hintPrev": "K predošlej zmene", - "Common.Views.ReviewChanges.tipReview": "Sledovať zmeny\n\n", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Akceptovať aktuálnu zmenu", + "Common.Views.ReviewChanges.tipRejectCurrent": "Odmietnuť aktuálnu zmenu", + "Common.Views.ReviewChanges.tipReview": "Sledovať zmeny", "Common.Views.ReviewChanges.tipReviewView": "Vyberte režim, v ktorom chcete zobraziť zmeny", "Common.Views.ReviewChanges.tipSetDocLang": "Nastaviť jazyk dokumentov", "Common.Views.ReviewChanges.tipSetSpelling": "Kontrola pravopisu", @@ -214,29 +217,29 @@ "Common.Views.ReviewChanges.txtRejectChanges": "Odmietnuť zmeny", "Common.Views.ReviewChanges.txtRejectCurrent": "Odmietnuť aktuálne zmeny", "Common.Views.ReviewChanges.txtSpelling": "Kontrola pravopisu", - "Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny\n\n", + "Common.Views.ReviewChanges.txtTurnon": "Sledovať zmeny", "Common.Views.ReviewChanges.txtView": "Režim zobrazenia", - "Common.Views.ReviewChangesDialog.textTitle": "Skontrolovať zmeny\n\n", + "Common.Views.ReviewChangesDialog.textTitle": "Skontrolovať zmeny", "Common.Views.ReviewChangesDialog.txtAccept": "Prijať", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Akceptovať všetky zmeny", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Akceptovať aktuálnu zmenu", - "Common.Views.ReviewChangesDialog.txtNext": "K ďalšej zmene\n\n", + "Common.Views.ReviewChangesDialog.txtNext": "K ďalšej zmene", "Common.Views.ReviewChangesDialog.txtPrev": "K predošlej zmene", "Common.Views.ReviewChangesDialog.txtReject": "Odmietnuť", "Common.Views.ReviewChangesDialog.txtRejectAll": "Odmietnuť všetky zmeny", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Odmietnuť aktuálnu zmenu", "DE.Controllers.LeftMenu.leavePageText": "Všetky neuložené zmeny v tomto dokumente sa stratia.
Kliknutím na tlačidlo \"Zrušiť\" a potom na \"Uložiť\" ich uložíte. Kliknutím na \"OK\" zahodíte všetky neuložené zmeny.", - "DE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaný dokument\n\n", + "DE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaný dokument", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...\n\n", + "DE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...", "DE.Controllers.LeftMenu.textLoadHistory": "Načítavanie histórie verzií ...", - "DE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré hľadáte sa nedajú nájsť. Prosím, upravte svoje možnosti vyhľadávania.\n\n", - "DE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.\n\n", + "DE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré hľadáte sa nedajú nájsť. Prosím, upravte svoje možnosti vyhľadávania.", + "DE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", "DE.Controllers.LeftMenu.textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", - "DE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?\n\n", + "DE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", "DE.Controllers.Main.applyChangesTextText": "Načítavanie zmien...", - "DE.Controllers.Main.applyChangesTitleText": "Načítavanie zmien\n\n", - "DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n", + "DE.Controllers.Main.applyChangesTitleText": "Načítavanie zmien", + "DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", "DE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.", "DE.Controllers.Main.criticalErrorTitle": "Chyba", "DE.Controllers.Main.defaultTitleText": "Dokumentový editor ONLYOFFICE ", @@ -245,31 +248,31 @@ "DE.Controllers.Main.downloadMergeTitle": "Sťahovanie", "DE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", "DE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", - "DE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", + "DE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.\n\n", - "DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu\n\n\n\n\n\n", - "DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. \n\n", - "DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", + "DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu", + "DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", + "DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", - "DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n", - "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n", + "DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "DE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo", "DE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", "DE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo.", - "DE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n", - "DE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.\n\n", - "DE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.\n\n", - "DE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.\n\n", - "DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", - "DE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", - "DE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. \n\n", - "DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n", - "DE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n", - "DE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený\n\n", + "DE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "DE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", + "DE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", + "DE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "DE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "DE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "DE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "DE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", "DE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", - "DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknite na \"Zostať na tejto stránke\", potom \"Uložiť\" aby ste zmeny uložili. Kliknutím na \"Odísť z tejto stránky\" zrušíte všetky neuložené zmeny. \n\n", + "DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknite na \"Zostať na tejto stránke\", potom \"Uložiť\" aby ste zmeny uložili. Kliknutím na \"Odísť z tejto stránky\" zrušíte všetky neuložené zmeny. ", "DE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "DE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "DE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -277,11 +280,11 @@ "DE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", "DE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "DE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "DE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n", + "DE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", "DE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...", "DE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu", - "DE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...\n\n", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov\n\n", + "DE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov", "DE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", "DE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", "DE.Controllers.Main.openTextText": "Otváranie dokumentu...", @@ -289,46 +292,46 @@ "DE.Controllers.Main.printTextText": "Tlač dokumentu...", "DE.Controllers.Main.printTitleText": "Tlač dokumentu", "DE.Controllers.Main.reloadButtonText": "Obnoviť stránku", - "DE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.\n\n", + "DE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", "DE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", "DE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "DE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n", - "DE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n", + "DE.Controllers.Main.savePreparingText": "Príprava na uloženie", + "DE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", "DE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", "DE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", - "DE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...\n\n", - "DE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia\n\n", - "DE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľný %1.\n\n", - "DE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1.\n\n", - "DE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1.\n\n", + "DE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...", + "DE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia", + "DE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľný %1.", + "DE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1.", + "DE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1.", "DE.Controllers.Main.textAnonymous": "Anonymný", "DE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "DE.Controllers.Main.textChangesSaved": "Všetky zmeny boli uložené", - "DE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip\n\n", - "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n", + "DE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", + "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu", "DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n", + "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom", "DE.Controllers.Main.textShape": "Tvar", - "DE.Controllers.Main.textStrict": "Prísny režim\n\n", + "DE.Controllers.Main.textStrict": "Prísny režim", "DE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", - "DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n", - "DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n", - "DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená\n\n", + "DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", + "DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", + "DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", "DE.Controllers.Main.txtArt": "Váš text tu", - "DE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n", + "DE.Controllers.Main.txtBasicShapes": "Základné tvary", "DE.Controllers.Main.txtButtons": "Tlačidlá", "DE.Controllers.Main.txtCallouts": "Popisky obrázku", "DE.Controllers.Main.txtCharts": "Grafy", "DE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n", - "DE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo\n\n", + "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", + "DE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", "DE.Controllers.Main.txtFiguredArrows": "Šipky", "DE.Controllers.Main.txtLines": "Riadky", "DE.Controllers.Main.txtMath": "Matematika", - "DE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie\n\n", + "DE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", "DE.Controllers.Main.txtRectangles": "Obdĺžniky", "DE.Controllers.Main.txtSeries": "Rady", - "DE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n", + "DE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", "DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", "DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", "DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", @@ -339,37 +342,37 @@ "DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8", "DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9", "DE.Controllers.Main.txtStyle_Intense_Quote": "Zvýraznená citácia", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Odsek zoznamu\n\n", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Odsek zoznamu", "DE.Controllers.Main.txtStyle_No_Spacing": "Bez riadkovania", "DE.Controllers.Main.txtStyle_Normal": "Normálny", - "DE.Controllers.Main.txtStyle_Quote": "Citácia\n", + "DE.Controllers.Main.txtStyle_Quote": "Citácia", "DE.Controllers.Main.txtStyle_Subtitle": "Podtitul", "DE.Controllers.Main.txtStyle_Title": "Názov", - "DE.Controllers.Main.txtXAxis": "Os X\n\n", - "DE.Controllers.Main.txtYAxis": "Os Y\n\n", - "DE.Controllers.Main.unknownErrorText": "Neznáma chyba.\n\n", - "DE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.\n\n", - "DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n", - "DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n", + "DE.Controllers.Main.txtXAxis": "Os X", + "DE.Controllers.Main.txtYAxis": "Os Y", + "DE.Controllers.Main.unknownErrorText": "Neznáma chyba.", + "DE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.", + "DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", "DE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka", "DE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "DE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "DE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.\n\n", + "DE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.", "DE.Controllers.Main.warnBrowserZoom": "Súčasné nastavenie priblíženia nie je plne podporované prehliadačom. Obnovte štandardné priblíženie stlačením klávesov Ctrl+0.", - "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n", - "DE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n", + "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "DE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.", "DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", - "DE.Controllers.Statusbar.textHasChanges": "Boli sledované nové zmeny\n\n", - "DE.Controllers.Statusbar.textTrackChanges": "Dokument je otvorený so zapnutým režimom sledovania zmien.\n\n", - "DE.Controllers.Statusbar.tipReview": "Sledovať zmeny\n\n", + "DE.Controllers.Statusbar.textHasChanges": "Boli sledované nové zmeny", + "DE.Controllers.Statusbar.textTrackChanges": "Dokument je otvorený so zapnutým režimom sledovania zmien.", + "DE.Controllers.Statusbar.tipReview": "Sledovať zmeny", "DE.Controllers.Statusbar.zoomText": "Priblíženie {0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?\n\n\n\n", - "DE.Controllers.Toolbar.confirmDeleteFootnotes": "Chcete odstrániť všetky poznámky pod čiarou?\n\n", + "DE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?", + "DE.Controllers.Toolbar.confirmDeleteFootnotes": "Chcete odstrániť všetky poznámky pod čiarou?", "DE.Controllers.Toolbar.notcriticalErrorTitle": "Upozornenie", "DE.Controllers.Toolbar.textAccent": "Akcenty", "DE.Controllers.Toolbar.textBracket": "Zátvorky", "DE.Controllers.Toolbar.textEmptyImgUrl": "Musíte upresniť URL obrázka.", - "DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 100.\n", + "DE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 100.", "DE.Controllers.Toolbar.textFraction": "Zlomky", "DE.Controllers.Toolbar.textFunction": "Funkcie", "DE.Controllers.Toolbar.textIntegral": "Integrály", @@ -421,7 +424,7 @@ "DE.Controllers.Toolbar.txtBracket_Custom_2": "Prípady (Tri podmienky)", "DE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt", "DE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt", - "DE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n", + "DE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov", "DE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient", "DE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient", "DE.Controllers.Toolbar.txtBracket_Line": "Zátvorky", @@ -456,7 +459,7 @@ "DE.Controllers.Toolbar.txtFractionDifferential_4": "Diferenciál", "DE.Controllers.Toolbar.txtFractionHorizontal": "Lineárny zlomok", "DE.Controllers.Toolbar.txtFractionPi_2": "Pí lomeno dvoma", - "DE.Controllers.Toolbar.txtFractionSmall": "Malý zlomok\n", + "DE.Controllers.Toolbar.txtFractionSmall": "Malý zlomok", "DE.Controllers.Toolbar.txtFractionVertical": "Lomený výraz", "DE.Controllers.Toolbar.txtFunction_1_Cos": "Inverzná funkcia kosínus", "DE.Controllers.Toolbar.txtFunction_1_Cosh": "Inverzná funkcia hyperbolický kosínus", @@ -554,8 +557,8 @@ "DE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritmus", "DE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", "DE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", - "DE.Controllers.Toolbar.txtMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké\n\n", - "DE.Controllers.Toolbar.txtMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky\n\n", + "DE.Controllers.Toolbar.txtMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké", + "DE.Controllers.Toolbar.txtMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky", "DE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Prázdna matica", "DE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Prázdna matica", "DE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Prázdna matica", @@ -611,7 +614,7 @@ "DE.Controllers.Toolbar.txtScriptCustom_4": "Skript", "DE.Controllers.Toolbar.txtScriptSub": "Dolný index", "DE.Controllers.Toolbar.txtScriptSubSup": "Dolný index - Horný index", - "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Ľavý dolný index - horný index\n\n", + "DE.Controllers.Toolbar.txtScriptSubSupLeft": "Ľavý dolný index - horný index", "DE.Controllers.Toolbar.txtScriptSup": "Horný index", "DE.Controllers.Toolbar.txtSymbol_about": "Približne", "DE.Controllers.Toolbar.txtSymbol_additional": "Doplnok/doplnenie", @@ -624,21 +627,21 @@ "DE.Controllers.Toolbar.txtSymbol_bullet": "Operátor odrážka ", "DE.Controllers.Toolbar.txtSymbol_cap": "Prienik", "DE.Controllers.Toolbar.txtSymbol_cbrt": "Tretia odmocnina", - "DE.Controllers.Toolbar.txtSymbol_cdots": "Strednica horizontálnej elipsy\n", + "DE.Controllers.Toolbar.txtSymbol_cdots": "Strednica horizontálnej elipsy", "DE.Controllers.Toolbar.txtSymbol_celsius": "Stupne Celzia", "DE.Controllers.Toolbar.txtSymbol_chi": "Chí ", "DE.Controllers.Toolbar.txtSymbol_cong": "Približne sa rovná", "DE.Controllers.Toolbar.txtSymbol_cup": "Zjednotenie", - "DE.Controllers.Toolbar.txtSymbol_ddots": "Dolná pravá diagonálna elipsa \n\n", + "DE.Controllers.Toolbar.txtSymbol_ddots": "Dolná pravá diagonálna elipsa ", "DE.Controllers.Toolbar.txtSymbol_degree": "Stupeň", "DE.Controllers.Toolbar.txtSymbol_delta": "Delta", "DE.Controllers.Toolbar.txtSymbol_div": "Znak delenia", "DE.Controllers.Toolbar.txtSymbol_downarrow": "Šípka dole", "DE.Controllers.Toolbar.txtSymbol_emptyset": "Prázdna množina", - "DE.Controllers.Toolbar.txtSymbol_epsilon": "epsilon (grécke písmeno E)\n", + "DE.Controllers.Toolbar.txtSymbol_epsilon": "epsilon (grécke písmeno E)", "DE.Controllers.Toolbar.txtSymbol_equals": "Rovná sa", - "DE.Controllers.Toolbar.txtSymbol_equiv": "Rovnaké ako\n\n", - "DE.Controllers.Toolbar.txtSymbol_eta": "H (grécke písmeno)\n", + "DE.Controllers.Toolbar.txtSymbol_equiv": "Rovnaké ako", + "DE.Controllers.Toolbar.txtSymbol_eta": "H (grécke písmeno)", "DE.Controllers.Toolbar.txtSymbol_exists": "Existuje", "DE.Controllers.Toolbar.txtSymbol_factorial": "Faktoriál", "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Stupňov Fahrenheita", @@ -661,13 +664,13 @@ "DE.Controllers.Toolbar.txtSymbol_minus": "Mínus", "DE.Controllers.Toolbar.txtSymbol_mp": "Mínus plus", "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", - "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla\n", + "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", "DE.Controllers.Toolbar.txtSymbol_neq": "Nerovná sa", - "DE.Controllers.Toolbar.txtSymbol_ni": "Obsahuje ako člena\n\n", - "DE.Controllers.Toolbar.txtSymbol_not": "Nepopísať/bez znaku\n\n", - "DE.Controllers.Toolbar.txtSymbol_notexists": "Tam neexistuje\n\n", + "DE.Controllers.Toolbar.txtSymbol_ni": "Obsahuje ako člena", + "DE.Controllers.Toolbar.txtSymbol_not": "Nepopísať/bez znaku", + "DE.Controllers.Toolbar.txtSymbol_notexists": "Tam neexistuje", "DE.Controllers.Toolbar.txtSymbol_nu": "Nu", - "DE.Controllers.Toolbar.txtSymbol_o": "Omicron\n\n", + "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", "DE.Controllers.Toolbar.txtSymbol_partial": "Parciálny diferenciál", "DE.Controllers.Toolbar.txtSymbol_percent": "Percentuálny podiel", @@ -679,7 +682,7 @@ "DE.Controllers.Toolbar.txtSymbol_psi": "Psí", "DE.Controllers.Toolbar.txtSymbol_qdrt": "Štvrtá odmocnina", "DE.Controllers.Toolbar.txtSymbol_qed": "Znak koniec dôkazu", - "DE.Controllers.Toolbar.txtSymbol_rddots": "Horná pravá diagonálna elipsa/vypustenie\n\n", + "DE.Controllers.Toolbar.txtSymbol_rddots": "Horná pravá diagonálna elipsa/vypustenie", "DE.Controllers.Toolbar.txtSymbol_rho": "Ró", "DE.Controllers.Toolbar.txtSymbol_rightarrow": "Pravá šípka", "DE.Controllers.Toolbar.txtSymbol_sigma": "Sigma ", @@ -691,12 +694,12 @@ "DE.Controllers.Toolbar.txtSymbol_uparrow": "Šípka hore", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Ypsilon", "DE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant epsilonu", - "DE.Controllers.Toolbar.txtSymbol_varphi": "Fí Variant\n\n", + "DE.Controllers.Toolbar.txtSymbol_varphi": "Fí Variant", "DE.Controllers.Toolbar.txtSymbol_varpi": "Pí variant", "DE.Controllers.Toolbar.txtSymbol_varrho": "Ró variant", "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", "DE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Theta", - "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie\n\n", + "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie", "DE.Controllers.Toolbar.txtSymbol_xsi": "Ksí ", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", "DE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia", @@ -714,7 +717,7 @@ "DE.Views.ChartSettings.textStock": "Akcie/burzový graf", "DE.Views.ChartSettings.textStyle": "Štýl", "DE.Views.ChartSettings.textSurface": "Povrch", - "DE.Views.ChartSettings.textUndock": "Odpojiť z panelu\n\n", + "DE.Views.ChartSettings.textUndock": "Odpojiť z panelu", "DE.Views.ChartSettings.textWidth": "Šírka", "DE.Views.ChartSettings.textWrap": "Obtekanie textu", "DE.Views.ChartSettings.txtBehind": "Za", @@ -727,9 +730,9 @@ "DE.Views.ChartSettings.txtTopAndBottom": "Hore a dole", "DE.Views.CustomColumnsDialog.cancelButtonText": "Zrušiť", "DE.Views.CustomColumnsDialog.okButtonText": "Ok", - "DE.Views.CustomColumnsDialog.textColumns": "Počet stĺpcov\n\n", - "DE.Views.CustomColumnsDialog.textSeparator": "Rozdeľovač stĺpcov\n\n", - "DE.Views.CustomColumnsDialog.textSpacing": "Medzera medzi stĺpcami\n\n", + "DE.Views.CustomColumnsDialog.textColumns": "Počet stĺpcov", + "DE.Views.CustomColumnsDialog.textSeparator": "Rozdeľovač stĺpcov", + "DE.Views.CustomColumnsDialog.textSpacing": "Medzera medzi stĺpcami", "DE.Views.CustomColumnsDialog.textTitle": "Stĺpce", "DE.Views.DocumentHolder.aboveText": "Nad", "DE.Views.DocumentHolder.addCommentText": "Pridať komentár", @@ -757,15 +760,15 @@ "DE.Views.DocumentHolder.editFooterText": "Upraviť pätu", "DE.Views.DocumentHolder.editHeaderText": "Upraviť hlavičku", "DE.Views.DocumentHolder.editHyperlinkText": "Upraviť hypertextový odkaz", - "DE.Views.DocumentHolder.flowoverText": "Štýl obtekania - okolo\n\n", + "DE.Views.DocumentHolder.flowoverText": "Štýl obtekania - okolo", "DE.Views.DocumentHolder.guestText": "Návštevník/Hosť", "DE.Views.DocumentHolder.hyperlinkText": "Hypertextový odkaz", "DE.Views.DocumentHolder.ignoreAllSpellText": "Ignorovať všetko", "DE.Views.DocumentHolder.ignoreSpellText": "Ignorovať", "DE.Views.DocumentHolder.imageText": "Pokročilé nastavenia obrázku", - "DE.Views.DocumentHolder.inlineText": "Štýl obtekania - rovnobežne\n", - "DE.Views.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo\n\n", - "DE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo\n\n", + "DE.Views.DocumentHolder.inlineText": "Štýl obtekania - rovnobežne", + "DE.Views.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo", + "DE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo", "DE.Views.DocumentHolder.insertColumnText": "Vložiť stĺpec", "DE.Views.DocumentHolder.insertRowAboveText": "Riadok nad", "DE.Views.DocumentHolder.insertRowBelowText": "Riadok pod", @@ -777,7 +780,7 @@ "DE.Views.DocumentHolder.loadSpellText": "Načítavanie variantov ...", "DE.Views.DocumentHolder.mergeCellsText": "Zlúčiť bunky", "DE.Views.DocumentHolder.moreText": "Viac variantov...", - "DE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty\n\n", + "DE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty", "DE.Views.DocumentHolder.originalSizeText": "Predvolená veľkosť", "DE.Views.DocumentHolder.paragraphText": "Odsek", "DE.Views.DocumentHolder.removeHyperlinkText": "Odstrániť hypertextový odkaz", @@ -803,7 +806,7 @@ "DE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia", "DE.Views.DocumentHolder.textCopy": "Kopírovať", "DE.Views.DocumentHolder.textCut": "Vystrihnúť", - "DE.Views.DocumentHolder.textEditWrapBoundary": "Upraviť okrajovú obálku\n\n", + "DE.Views.DocumentHolder.textEditWrapBoundary": "Upraviť okrajovú obálku", "DE.Views.DocumentHolder.textNextPage": "Ďalšia stránka", "DE.Views.DocumentHolder.textPaste": "Vložiť", "DE.Views.DocumentHolder.textPrevPage": "Predchádzajúca strana", @@ -815,32 +818,32 @@ "DE.Views.DocumentHolder.textShapeAlignTop": "Zarovnať nahor", "DE.Views.DocumentHolder.textUndo": "Krok späť", "DE.Views.DocumentHolder.textWrap": "Obtekanie textu", - "DE.Views.DocumentHolder.tipIsLocked": "Túto časť momentálne upravuje iný používateľ.\n\n", + "DE.Views.DocumentHolder.tipIsLocked": "Túto časť momentálne upravuje iný používateľ.", "DE.Views.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie", "DE.Views.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov", "DE.Views.DocumentHolder.txtAddHor": "Pridať vodorovnú čiaru", - "DE.Views.DocumentHolder.txtAddLB": "Pridať ľavý spodný riadok\n\n", + "DE.Views.DocumentHolder.txtAddLB": "Pridať ľavý spodný riadok", "DE.Views.DocumentHolder.txtAddLeft": "Pridať ľavé orámovanie", - "DE.Views.DocumentHolder.txtAddLT": "Pridať ľavý horný riadok\n", + "DE.Views.DocumentHolder.txtAddLT": "Pridať ľavý horný riadok", "DE.Views.DocumentHolder.txtAddRight": "Pridať pravé orámovanie", "DE.Views.DocumentHolder.txtAddTop": "Pridať horné orámovanie", "DE.Views.DocumentHolder.txtAddVer": "Pridať zvislú čiaru", - "DE.Views.DocumentHolder.txtAlignToChar": "Zarovnať znak\n\n", + "DE.Views.DocumentHolder.txtAlignToChar": "Zarovnať znak", "DE.Views.DocumentHolder.txtBehind": "Za", "DE.Views.DocumentHolder.txtBorderProps": "Vlastnosti orámovania", "DE.Views.DocumentHolder.txtBottom": "Dole", - "DE.Views.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov\n\n", - "DE.Views.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu\n\n", - "DE.Views.DocumentHolder.txtDeleteArg": "Odstrániť obsah\n\n", + "DE.Views.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov", + "DE.Views.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu", + "DE.Views.DocumentHolder.txtDeleteArg": "Odstrániť obsah", "DE.Views.DocumentHolder.txtDeleteBreak": "Odstrániť manuálny rozdeľovač", - "DE.Views.DocumentHolder.txtDeleteChars": "Odstrániť uzatváracie znaky\n\n", - "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Odstrániť uzatváracie znaky a oddeľovače\n\n", - "DE.Views.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu\n\n", - "DE.Views.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak\n\n", + "DE.Views.DocumentHolder.txtDeleteChars": "Odstrániť uzatváracie znaky", + "DE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Odstrániť uzatváracie znaky a oddeľovače", + "DE.Views.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu", + "DE.Views.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak", "DE.Views.DocumentHolder.txtDeleteRadical": "Odstrániť odmocninu", - "DE.Views.DocumentHolder.txtFractionLinear": "Zmeniť na lineárny zlomok\n\n", - "DE.Views.DocumentHolder.txtFractionSkewed": "Zmeniť na skosený zlomok\n\n", - "DE.Views.DocumentHolder.txtFractionStacked": "Zmeniť na zložený zlomok\n\n", + "DE.Views.DocumentHolder.txtFractionLinear": "Zmeniť na lineárny zlomok", + "DE.Views.DocumentHolder.txtFractionSkewed": "Zmeniť na skosený zlomok", + "DE.Views.DocumentHolder.txtFractionStacked": "Zmeniť na zložený zlomok", "DE.Views.DocumentHolder.txtGroup": "Skupina", "DE.Views.DocumentHolder.txtGroupCharOver": "Zadať nad text", "DE.Views.DocumentHolder.txtGroupCharUnder": "Zadať pod text", @@ -849,31 +852,31 @@ "DE.Views.DocumentHolder.txtHideCloseBracket": "Skryť konečnú/záverečnú zátvorku", "DE.Views.DocumentHolder.txtHideDegree": "Skryť stupeň", "DE.Views.DocumentHolder.txtHideHor": "Skryť vodorovnú čiaru", - "DE.Views.DocumentHolder.txtHideLB": "Skryť ľavý dolný riadok\n\n\n", + "DE.Views.DocumentHolder.txtHideLB": "Skryť ľavý dolný riadok", "DE.Views.DocumentHolder.txtHideLeft": "Skryť ľavé orámovanie", - "DE.Views.DocumentHolder.txtHideLT": "Skryť ľavý horný riadok\n\n", + "DE.Views.DocumentHolder.txtHideLT": "Skryť ľavý horný riadok", "DE.Views.DocumentHolder.txtHideOpenBracket": "Skryť začiatočnú/úvodnú zátvorku", - "DE.Views.DocumentHolder.txtHidePlaceholder": "Skryť vlastníka/náhradu textu\n", + "DE.Views.DocumentHolder.txtHidePlaceholder": "Skryť vlastníka/náhradu textu", "DE.Views.DocumentHolder.txtHideRight": "Skryť pravé orámovanie", "DE.Views.DocumentHolder.txtHideTop": "Skryť horné orámovanie", "DE.Views.DocumentHolder.txtHideTopLimit": "Skryť horné ohraničenie", - "DE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru\n\n", + "DE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru", "DE.Views.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu", "DE.Views.DocumentHolder.txtInFront": "vpredu", "DE.Views.DocumentHolder.txtInline": "Zarovno s textom", - "DE.Views.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po\n\n", - "DE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred\n", + "DE.Views.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po", + "DE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred", "DE.Views.DocumentHolder.txtInsertBreak": "Vložiť manuálny rozdeľovač", "DE.Views.DocumentHolder.txtInsertEqAfter": "Vložiť rovnicu po", "DE.Views.DocumentHolder.txtInsertEqBefore": "Vložiť rovnicu pred", - "DE.Views.DocumentHolder.txtKeepTextOnly": "Ponechať iba text\n\n", - "DE.Views.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia\n\n", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Ponechať iba text", + "DE.Views.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia", "DE.Views.DocumentHolder.txtLimitOver": "Limit nad textom", "DE.Views.DocumentHolder.txtLimitUnder": "Limit pod textom", - "DE.Views.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu\n\n", + "DE.Views.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu", "DE.Views.DocumentHolder.txtMatrixAlign": "Zarovnanie matice", "DE.Views.DocumentHolder.txtOverbar": "Čiara nad textom", - "DE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz\n\n", + "DE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", "DE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "DE.Views.DocumentHolder.txtRemLimit": "Odstrániť limitu", "DE.Views.DocumentHolder.txtRemoveAccentChar": "Odstrániť znak akcentu", @@ -881,14 +884,14 @@ "DE.Views.DocumentHolder.txtRemScripts": "Odstrániť skripty", "DE.Views.DocumentHolder.txtRemSubscript": "Odstrániť dolný index", "DE.Views.DocumentHolder.txtRemSuperscript": "Odstrániť horný index", - "DE.Views.DocumentHolder.txtScriptsAfter": "Zápisy za textom\n\n", - "DE.Views.DocumentHolder.txtScriptsBefore": "Zápisy pred textom\n", - "DE.Views.DocumentHolder.txtShowBottomLimit": "Zobraziť dolnú hranicu\n\n", + "DE.Views.DocumentHolder.txtScriptsAfter": "Zápisy za textom", + "DE.Views.DocumentHolder.txtScriptsBefore": "Zápisy pred textom", + "DE.Views.DocumentHolder.txtShowBottomLimit": "Zobraziť dolnú hranicu", "DE.Views.DocumentHolder.txtShowCloseBracket": "Zobraziť konečné zátvorky", - "DE.Views.DocumentHolder.txtShowDegree": "Zobraziť stupeň\n\n", + "DE.Views.DocumentHolder.txtShowDegree": "Zobraziť stupeň", "DE.Views.DocumentHolder.txtShowOpenBracket": "Zobraziť začiatočné zátvorky", "DE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka", - "DE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n", + "DE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu", "DE.Views.DocumentHolder.txtSquare": "Štvorec", "DE.Views.DocumentHolder.txtStretchBrackets": "Zložená zátvorka", "DE.Views.DocumentHolder.txtThrough": "Cez", @@ -897,7 +900,7 @@ "DE.Views.DocumentHolder.txtTopAndBottom": "Hore a dole", "DE.Views.DocumentHolder.txtUnderbar": "Čiara pod textom", "DE.Views.DocumentHolder.txtUngroup": "Oddeliť", - "DE.Views.DocumentHolder.updateStyleText": "Aktualizovať %1 štýl\n\n", + "DE.Views.DocumentHolder.updateStyleText": "Aktualizovať %1 štýl", "DE.Views.DocumentHolder.vertAlignText": "Vertikálne zarovnanie", "DE.Views.DropcapSettingsAdvanced.cancelButtonText": "Zrušiť", "DE.Views.DropcapSettingsAdvanced.okButtonText": "OK", @@ -905,7 +908,7 @@ "DE.Views.DropcapSettingsAdvanced.strDropcap": "Iniciála", "DE.Views.DropcapSettingsAdvanced.strMargins": "Okraje", "DE.Views.DropcapSettingsAdvanced.textAlign": "Zarovnanie", - "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Najmenej\n\n", + "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Najmenej", "DE.Views.DropcapSettingsAdvanced.textAuto": "Automaticky", "DE.Views.DropcapSettingsAdvanced.textBackColor": "Farba pozadia", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Farba orámovania", @@ -922,18 +925,18 @@ "DE.Views.DropcapSettingsAdvanced.textHeight": "Výška", "DE.Views.DropcapSettingsAdvanced.textHorizontal": "Vodorovný", "DE.Views.DropcapSettingsAdvanced.textInline": "Rám rovnobežne s textom", - "DE.Views.DropcapSettingsAdvanced.textInMargin": "V okraji\n\n", + "DE.Views.DropcapSettingsAdvanced.textInMargin": "V okraji", "DE.Views.DropcapSettingsAdvanced.textInText": "V texte", "DE.Views.DropcapSettingsAdvanced.textLeft": "Vľavo", "DE.Views.DropcapSettingsAdvanced.textMargin": "Okraj", - "DE.Views.DropcapSettingsAdvanced.textMove": "Presunúť s textom\n\n", + "DE.Views.DropcapSettingsAdvanced.textMove": "Presunúť s textom", "DE.Views.DropcapSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu", "DE.Views.DropcapSettingsAdvanced.textNone": "Žiadny", "DE.Views.DropcapSettingsAdvanced.textPage": "Stránka", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Odsek", "DE.Views.DropcapSettingsAdvanced.textParameters": "Parametre", "DE.Views.DropcapSettingsAdvanced.textPosition": "Pozícia", - "DE.Views.DropcapSettingsAdvanced.textRelative": "vzhľadom ku \n\n", + "DE.Views.DropcapSettingsAdvanced.textRelative": "vzhľadom ku ", "DE.Views.DropcapSettingsAdvanced.textRight": "Vpravo", "DE.Views.DropcapSettingsAdvanced.textRowHeight": "Výška v riadkoch", "DE.Views.DropcapSettingsAdvanced.textTitle": "Iniciála - Pokročilé nastavenia", @@ -951,7 +954,7 @@ "DE.Views.FileMenu.btnHistoryCaption": "História verzií", "DE.Views.FileMenu.btnInfoCaption": "Informácie o dokumente...", "DE.Views.FileMenu.btnPrintCaption": "Tlačiť", - "DE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...\n\n", + "DE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...", "DE.Views.FileMenu.btnRenameCaption": "Premenovať ..", "DE.Views.FileMenu.btnReturnCaption": "Späť k Dokumentu", "DE.Views.FileMenu.btnRightsCaption": "Prístupové práva...", @@ -962,12 +965,12 @@ "DE.Views.FileMenu.textDownload": "Stiahnuť", "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Z prázdneho", "DE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Zo šablóny", - "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Vytvorte nový prázdny textový dokument, ktorý budete môcť štýlovať a formátovať po jeho vytvorení počas úpravy. Alebo si vyberte jednu zo šablón na spustenie dokumentu určitého typu alebo účelu, kde už niektoré štýly boli predbežne aplikované.\n\n\n\n", + "DE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Vytvorte nový prázdny textový dokument, ktorý budete môcť štýlovať a formátovať po jeho vytvorení počas úpravy. Alebo si vyberte jednu zo šablón na spustenie dokumentu určitého typu alebo účelu, kde už niektoré štýly boli predbežne aplikované.", "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nový textový dokument", - "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Neexistujú žiadne šablóny\n\n", + "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Neexistujú žiadne šablóny", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva", - "DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Dátum vytvorenia\n\n", + "DE.Views.FileMenuPanels.DocumentInfo.txtDate": "Dátum vytvorenia", "DE.Views.FileMenuPanels.DocumentInfo.txtLoading": "Nahrávanie...", "DE.Views.FileMenuPanels.DocumentInfo.txtPages": "Strany", "DE.Views.FileMenuPanels.DocumentInfo.txtParagraphs": "Odseky", @@ -983,17 +986,17 @@ "DE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Zapnúť automatické ukladanie\n\n", + "DE.Views.FileMenuPanels.Settings.strAutosave": "Zapnúť automatické ukladanie", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spoločnej úpravy", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz\n\n", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "DE.Views.FileMenuPanels.Settings.strFast": "Rýchly", "DE.Views.FileMenuPanels.Settings.strFontRender": "Náznak typu písma", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)\n\n", - "DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy\n\n", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)", + "DE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Zapnúť zobrazovanie komentárov", - "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov\n\n", - "DE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase\n\n", + "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov", + "DE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnúť kontrolu pravopisu", "DE.Views.FileMenuPanels.Settings.strStrict": "Prísny", "DE.Views.FileMenuPanels.Settings.strUnit": "Jednotka merania", @@ -1012,13 +1015,13 @@ "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Prispôsobiť na stranu", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť na šírku", - "DE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)\n", + "DE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)", "DE.Views.FileMenuPanels.Settings.txtInput": "Striedavý vstup", "DE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Zobrazenie komentárov", "DE.Views.FileMenuPanels.Settings.txtMac": "ako OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Pôvodný", - "DE.Views.FileMenuPanels.Settings.txtNone": "Zobraziť žiadne\n\n", + "DE.Views.FileMenuPanels.Settings.txtNone": "Zobraziť žiadne", "DE.Views.FileMenuPanels.Settings.txtPt": "Bod", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", "DE.Views.FileMenuPanels.Settings.txtWin": "ako Windows", @@ -1027,32 +1030,32 @@ "DE.Views.HeaderFooterSettings.textBottomRight": "Dole vpravo", "DE.Views.HeaderFooterSettings.textDiffFirst": "Odlišná prvá stránka", "DE.Views.HeaderFooterSettings.textDiffOdd": "Rozdielne nepárne a párne stránky", - "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Päta stránky z dolnej časti\n\n", + "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Päta stránky z dolnej časti", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "Hlavička/Záhlavie od vrchu", "DE.Views.HeaderFooterSettings.textOptions": "Možnosti", "DE.Views.HeaderFooterSettings.textPageNum": "Vložiť číslo stránky", "DE.Views.HeaderFooterSettings.textPosition": "Pozícia", - "DE.Views.HeaderFooterSettings.textSameAs": "Odkaz na predchádzajúci\n\n", + "DE.Views.HeaderFooterSettings.textSameAs": "Odkaz na predchádzajúci", "DE.Views.HeaderFooterSettings.textTopCenter": "Hore v strede", "DE.Views.HeaderFooterSettings.textTopLeft": "Hore vľavo", "DE.Views.HeaderFooterSettings.textTopRight": "Hore vpravo", "DE.Views.HyperlinkSettingsDialog.cancelButtonText": "Zrušiť", "DE.Views.HyperlinkSettingsDialog.okButtonText": "OK", - "DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok\n", + "DE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok", "DE.Views.HyperlinkSettingsDialog.textDisplay": "Zobraziť", "DE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Popis", "DE.Views.HyperlinkSettingsDialog.textUrl": "Odkaz na", - "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "DE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.ImageSettings.textEdit": "Upraviť", - "DE.Views.ImageSettings.textEditObject": "Upraviť objekt\n\n", - "DE.Views.ImageSettings.textFitMargins": "Prispôsobiť na okraj\n\n", + "DE.Views.ImageSettings.textEditObject": "Upraviť objekt", + "DE.Views.ImageSettings.textFitMargins": "Prispôsobiť na okraj", "DE.Views.ImageSettings.textFromFile": "Zo súboru", "DE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "DE.Views.ImageSettings.textHeight": "Výška", - "DE.Views.ImageSettings.textInsert": "Nahradiť obrázok\n\n", + "DE.Views.ImageSettings.textInsert": "Nahradiť obrázok", "DE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", "DE.Views.ImageSettings.textSize": "Veľkosť", "DE.Views.ImageSettings.textWidth": "Šírka", @@ -1066,7 +1069,7 @@ "DE.Views.ImageSettings.txtTopAndBottom": "Hore a dole", "DE.Views.ImageSettingsAdvanced.cancelButtonText": "Zrušiť", "DE.Views.ImageSettingsAdvanced.okButtonText": "OK", - "DE.Views.ImageSettingsAdvanced.strMargins": "Textová výplň\n\n", + "DE.Views.ImageSettingsAdvanced.strMargins": "Textová výplň", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolútny", "DE.Views.ImageSettingsAdvanced.textAlignment": "Zarovnanie", "DE.Views.ImageSettingsAdvanced.textAlt": "Alternatívny text", @@ -1082,7 +1085,7 @@ "DE.Views.ImageSettingsAdvanced.textBottom": "Dole", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Dolný okraj", "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Obtekanie textu", - "DE.Views.ImageSettingsAdvanced.textCapType": "Typ zakončenia\n", + "DE.Views.ImageSettingsAdvanced.textCapType": "Typ zakončenia", "DE.Views.ImageSettingsAdvanced.textCenter": "Stred", "DE.Views.ImageSettingsAdvanced.textCharacter": "Symbol", "DE.Views.ImageSettingsAdvanced.textColumn": "Stĺpec", @@ -1092,27 +1095,27 @@ "DE.Views.ImageSettingsAdvanced.textFlat": "Plochý", "DE.Views.ImageSettingsAdvanced.textHeight": "Výška", "DE.Views.ImageSettingsAdvanced.textHorizontal": "Vodorovný", - "DE.Views.ImageSettingsAdvanced.textJoinType": "Typ pripojenia\n\n", - "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n", + "DE.Views.ImageSettingsAdvanced.textJoinType": "Typ pripojenia", + "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery", "DE.Views.ImageSettingsAdvanced.textLeft": "Vľavo", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Ľavý okraj", "DE.Views.ImageSettingsAdvanced.textLine": "Čiara/líniový graf", - "DE.Views.ImageSettingsAdvanced.textLineStyle": "Štýl čiary\n\n", + "DE.Views.ImageSettingsAdvanced.textLineStyle": "Štýl čiary", "DE.Views.ImageSettingsAdvanced.textMargin": "Okraj", "DE.Views.ImageSettingsAdvanced.textMiter": "Sklon", - "DE.Views.ImageSettingsAdvanced.textMove": "Presunúť objekt s textom\n\n", + "DE.Views.ImageSettingsAdvanced.textMove": "Presunúť objekt s textom", "DE.Views.ImageSettingsAdvanced.textOptions": "Možnosti", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Predvolená veľkosť", "DE.Views.ImageSettingsAdvanced.textOverlap": "Povoliť prekrývanie", "DE.Views.ImageSettingsAdvanced.textPage": "Stránka", "DE.Views.ImageSettingsAdvanced.textParagraph": "Odsek", "DE.Views.ImageSettingsAdvanced.textPosition": "Pozícia", - "DE.Views.ImageSettingsAdvanced.textPositionPc": "Relatívna pozícia\n\n", - "DE.Views.ImageSettingsAdvanced.textRelative": "vzhľadom ku \n\n", + "DE.Views.ImageSettingsAdvanced.textPositionPc": "Relatívna pozícia", + "DE.Views.ImageSettingsAdvanced.textRelative": "vzhľadom ku ", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relatívny", "DE.Views.ImageSettingsAdvanced.textRight": "Vpravo", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Pravý okraj", - "DE.Views.ImageSettingsAdvanced.textRightOf": "Vpravo od\n\n", + "DE.Views.ImageSettingsAdvanced.textRightOf": "Vpravo od", "DE.Views.ImageSettingsAdvanced.textRound": "Zaoblené", "DE.Views.ImageSettingsAdvanced.textShape": "Nastavenia tvaru", "DE.Views.ImageSettingsAdvanced.textSize": "Veľkosť", @@ -1123,7 +1126,7 @@ "DE.Views.ImageSettingsAdvanced.textTop": "Hore", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Horný okraj", "DE.Views.ImageSettingsAdvanced.textVertical": "Zvislý", - "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Tvary a šípky\n\n", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Tvary a šípky", "DE.Views.ImageSettingsAdvanced.textWidth": "Šírka", "DE.Views.ImageSettingsAdvanced.textWrap": "Obtekanie textu", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Za", @@ -1138,14 +1141,14 @@ "DE.Views.LeftMenu.tipComments": "Komentáre", "DE.Views.LeftMenu.tipPlugins": "Pluginy", "DE.Views.LeftMenu.tipSearch": "Hľadať", - "DE.Views.LeftMenu.tipSupport": "Spätná väzba a Podpora\n\n", + "DE.Views.LeftMenu.tipSupport": "Spätná väzba a Podpora", "DE.Views.LeftMenu.tipTitles": "Nadpisy", "DE.Views.LeftMenu.txtDeveloper": "VÝVOJÁRSKY REŽIM", "DE.Views.MailMergeEmailDlg.cancelButtonText": "Zrušiť", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Poslať", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "Téma", - "DE.Views.MailMergeEmailDlg.textAttachDocx": "Pripojiť ako DOCX\n\n", + "DE.Views.MailMergeEmailDlg.textAttachDocx": "Pripojiť ako DOCX", "DE.Views.MailMergeEmailDlg.textAttachPdf": "Pripojiť ako PDF", "DE.Views.MailMergeEmailDlg.textFileName": "Názov súboru", "DE.Views.MailMergeEmailDlg.textFormat": "Formát e-mailu", @@ -1153,32 +1156,32 @@ "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "Správa", "DE.Views.MailMergeEmailDlg.textSubject": "Línia/krivka predmetu", - "DE.Views.MailMergeEmailDlg.textTitle": "Poslať na e-mail\n\n", + "DE.Views.MailMergeEmailDlg.textTitle": "Poslať na e-mail", "DE.Views.MailMergeEmailDlg.textTo": "do/komu", "DE.Views.MailMergeEmailDlg.textWarning": "Varovanie!", - "DE.Views.MailMergeEmailDlg.textWarningMsg": "Upozorňujeme, že po kliknutí na tlačidlo \"Odoslať\" nemožno poštu zastaviť.\n\n", + "DE.Views.MailMergeEmailDlg.textWarningMsg": "Upozorňujeme, že po kliknutí na tlačidlo \"Odoslať\" nemožno poštu zastaviť.", "DE.Views.MailMergeRecepients.textLoading": "Nahrávanie", - "DE.Views.MailMergeRecepients.textTitle": "Vybrať zdroj údajov\n\n", + "DE.Views.MailMergeRecepients.textTitle": "Vybrať zdroj údajov", "DE.Views.MailMergeSaveDlg.textLoading": "Nahrávanie", - "DE.Views.MailMergeSaveDlg.textTitle": "Priečinok na uloženie\n\n", + "DE.Views.MailMergeSaveDlg.textTitle": "Priečinok na uloženie", "DE.Views.MailMergeSettings.downloadMergeTitle": "Zlúčenie", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Upozornenie", - "DE.Views.MailMergeSettings.textAddRecipients": "Najskôr pridajte nejakých príjemcov do zoznamu\n\n", + "DE.Views.MailMergeSettings.textAddRecipients": "Najskôr pridajte nejakých príjemcov do zoznamu", "DE.Views.MailMergeSettings.textAll": "Všetky záznamy", - "DE.Views.MailMergeSettings.textCurrent": "Aktuálny záznam\n\n", - "DE.Views.MailMergeSettings.textDataSource": "Dátový zdroj\n\n", + "DE.Views.MailMergeSettings.textCurrent": "Aktuálny záznam", + "DE.Views.MailMergeSettings.textDataSource": "Dátový zdroj", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "Stiahnuť", "DE.Views.MailMergeSettings.textEditData": "Upraviť zoznam príjemcov", "DE.Views.MailMergeSettings.textEmail": "E-mail", "DE.Views.MailMergeSettings.textFrom": "Od", - "DE.Views.MailMergeSettings.textGoToMail": "Prejdite do pošty\n\n", - "DE.Views.MailMergeSettings.textHighlight": "Zvýrazniť oblasti zlúčenia\n\n", - "DE.Views.MailMergeSettings.textInsertField": "Vložiť pole zlúčenia\n\n", - "DE.Views.MailMergeSettings.textMaxRecepients": "Maximálne 100 príjemcov.\n\n", + "DE.Views.MailMergeSettings.textGoToMail": "Prejdite do pošty", + "DE.Views.MailMergeSettings.textHighlight": "Zvýrazniť oblasti zlúčenia", + "DE.Views.MailMergeSettings.textInsertField": "Vložiť pole zlúčenia", + "DE.Views.MailMergeSettings.textMaxRecepients": "Maximálne 100 príjemcov.", "DE.Views.MailMergeSettings.textMerge": "Zlúčiť", - "DE.Views.MailMergeSettings.textMergeFields": "Zlúčiť polia\n\n", + "DE.Views.MailMergeSettings.textMergeFields": "Zlúčiť polia", "DE.Views.MailMergeSettings.textMergeTo": "Zlúčiť do/v", "DE.Views.MailMergeSettings.textPdf": "PDF", "DE.Views.MailMergeSettings.textPortal": "Uložiť", @@ -1190,23 +1193,23 @@ "DE.Views.MailMergeSettings.txtFromToError": "Hodnota \"Od\" musí byť menšia ako hodnota \"Do\"", "DE.Views.MailMergeSettings.txtLast": "K poslednému záznamu", "DE.Views.MailMergeSettings.txtNext": "K ďalšiemu záznamu", - "DE.Views.MailMergeSettings.txtPrev": "K predchádzajúcemu záznamu\n\n", + "DE.Views.MailMergeSettings.txtPrev": "K predchádzajúcemu záznamu", "DE.Views.MailMergeSettings.txtUntitled": "Neoznačený", - "DE.Views.MailMergeSettings.warnProcessMailMerge": "Spustenie zlúčenia zlyhalo\n\n", + "DE.Views.MailMergeSettings.warnProcessMailMerge": "Spustenie zlúčenia zlyhalo", "DE.Views.NoteSettingsDialog.textApply": "Použiť", "DE.Views.NoteSettingsDialog.textApplyTo": "Použiť zmeny na", "DE.Views.NoteSettingsDialog.textCancel": "Zrušiť", "DE.Views.NoteSettingsDialog.textContinue": "Nepretržitý", - "DE.Views.NoteSettingsDialog.textCustom": "Vlastná značka\n\n", + "DE.Views.NoteSettingsDialog.textCustom": "Vlastná značka", "DE.Views.NoteSettingsDialog.textDocument": "Celý dokument", - "DE.Views.NoteSettingsDialog.textEachPage": "Reštartovať/znova spustiť každú stránku\n\n", - "DE.Views.NoteSettingsDialog.textEachSection": "Reštartovať každú sekciu\n\n", - "DE.Views.NoteSettingsDialog.textFootnote": "Poznámka pod čiarou\n", + "DE.Views.NoteSettingsDialog.textEachPage": "Reštartovať/znova spustiť každú stránku", + "DE.Views.NoteSettingsDialog.textEachSection": "Reštartovať každú sekciu", + "DE.Views.NoteSettingsDialog.textFootnote": "Poznámka pod čiarou", "DE.Views.NoteSettingsDialog.textFormat": "Formát", "DE.Views.NoteSettingsDialog.textInsert": "Vložiť", "DE.Views.NoteSettingsDialog.textLocation": "Umiestnenie", "DE.Views.NoteSettingsDialog.textNumbering": "Číslovanie", - "DE.Views.NoteSettingsDialog.textNumFormat": "Formát čísel\n\n", + "DE.Views.NoteSettingsDialog.textNumFormat": "Formát čísel", "DE.Views.NoteSettingsDialog.textPageBottom": "Spodná časť stránky", "DE.Views.NoteSettingsDialog.textSection": "Aktuálna sekcia", "DE.Views.NoteSettingsDialog.textStart": "Začať na", @@ -1220,8 +1223,8 @@ "DE.Views.PageMarginsDialog.textRight": "Vpravo", "DE.Views.PageMarginsDialog.textTitle": "Okraje", "DE.Views.PageMarginsDialog.textTop": "Hore", - "DE.Views.PageMarginsDialog.txtMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké\n\n", - "DE.Views.PageMarginsDialog.txtMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky\n\n", + "DE.Views.PageMarginsDialog.txtMarginsH": "Horné a spodné okraje sú pre danú výšku stránky príliš vysoké", + "DE.Views.PageMarginsDialog.txtMarginsW": "Ľavé a pravé okraje sú príliš široké pre danú šírku stránky", "DE.Views.PageSizeDialog.cancelButtonText": "Zrušiť", "DE.Views.PageSizeDialog.okButtonText": "OK", "DE.Views.PageSizeDialog.textHeight": "Výška", @@ -1234,7 +1237,7 @@ "DE.Views.ParagraphSettings.strSpacingBefore": "Pred", "DE.Views.ParagraphSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.ParagraphSettings.textAt": "V/na", - "DE.Views.ParagraphSettings.textAtLeast": "Najmenej\n\n", + "DE.Views.ParagraphSettings.textAtLeast": "Najmenej", "DE.Views.ParagraphSettings.textAuto": "Násobky", "DE.Views.ParagraphSettings.textBackColor": "Farba pozadia", "DE.Views.ParagraphSettings.textExact": "Presne", @@ -1246,7 +1249,7 @@ "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Orámovanie a výplň", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Zlom strany pred", - "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie\n", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", "DE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok", "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", @@ -1287,7 +1290,7 @@ "DE.Views.ParagraphSettingsAdvanced.textTop": "Hore", "DE.Views.ParagraphSettingsAdvanced.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary", "DE.Views.ParagraphSettingsAdvanced.tipBottom": "Nastaviť iba spodné orámovanie", - "DE.Views.ParagraphSettingsAdvanced.tipInner": "Nastaviť iba horizontálne vnútorné čiary\n\n", + "DE.Views.ParagraphSettingsAdvanced.tipInner": "Nastaviť iba horizontálne vnútorné čiary", "DE.Views.ParagraphSettingsAdvanced.tipLeft": "Nastaviť iba ľavé orámovanie", "DE.Views.ParagraphSettingsAdvanced.tipNone": "Nastaviť bez orámovania", "DE.Views.ParagraphSettingsAdvanced.tipOuter": "Nastaviť len vonkajšie orámovanie", @@ -1297,7 +1300,7 @@ "DE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "DE.Views.RightMenu.txtHeaderFooterSettings": "Nastavenie hlavičky a päty", "DE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", - "DE.Views.RightMenu.txtMailMergeSettings": "Nastavenia hromadnej korešpondencie\n", + "DE.Views.RightMenu.txtMailMergeSettings": "Nastavenia hromadnej korešpondencie", "DE.Views.RightMenu.txtParagraphSettings": "Nastavenia odseku", "DE.Views.RightMenu.txtShapeSettings": "Nastavenia tvaru", "DE.Views.RightMenu.txtTableSettings": "Nastavenie tabuľky", @@ -1313,7 +1316,7 @@ "DE.Views.ShapeSettings.strTransparency": "Priehľadnosť", "DE.Views.ShapeSettings.strType": "Typ", "DE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", - "DE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.\n", + "DE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.", "DE.Views.ShapeSettings.textColor": "Vyplniť farbou", "DE.Views.ShapeSettings.textDirection": "Smer", "DE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", @@ -1334,7 +1337,7 @@ "DE.Views.ShapeSettings.textTile": "Dlaždica", "DE.Views.ShapeSettings.textWrap": "Obtekanie textu", "DE.Views.ShapeSettings.txtBehind": "Za", - "DE.Views.ShapeSettings.txtBrownPaper": "Baliaci papier\n", + "DE.Views.ShapeSettings.txtBrownPaper": "Baliaci papier", "DE.Views.ShapeSettings.txtCanvas": "Plátno", "DE.Views.ShapeSettings.txtCarton": "Kartón", "DE.Views.ShapeSettings.txtDarkFabric": "Tmavá štruktúra", @@ -1356,15 +1359,15 @@ "DE.Views.Statusbar.pageIndexText": "Strana {0} z {1}", "DE.Views.Statusbar.tipFitPage": "Prispôsobiť na stranu", "DE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku", - "DE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu\n\n", + "DE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu", "DE.Views.Statusbar.tipZoomFactor": "Priblíženie", "DE.Views.Statusbar.tipZoomIn": "Priblížiť", "DE.Views.Statusbar.tipZoomOut": "Oddialiť", "DE.Views.Statusbar.txtPageNumInvalid": "Číslo stránky je neplatné", "DE.Views.StyleTitleDialog.textHeader": "Vytvoriť nový štýl", - "DE.Views.StyleTitleDialog.textNextStyle": "Štýl ďalšieho odseku\n\n", + "DE.Views.StyleTitleDialog.textNextStyle": "Štýl ďalšieho odseku", "DE.Views.StyleTitleDialog.textTitle": "Názov", - "DE.Views.StyleTitleDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "DE.Views.StyleTitleDialog.txtEmpty": "Toto pole sa vyžaduje", "DE.Views.StyleTitleDialog.txtNotEmpty": "Pole nesmie byť prázdne", "DE.Views.TableSettings.deleteColumnText": "Odstrániť stĺpec", "DE.Views.TableSettings.deleteRowText": "Odstrániť riadok", @@ -1380,7 +1383,7 @@ "DE.Views.TableSettings.selectTableText": "Vybrať tabuľku", "DE.Views.TableSettings.splitCellsText": "Rozdeliť bunku...", "DE.Views.TableSettings.splitCellTitleText": "Rozdeliť bunku", - "DE.Views.TableSettings.strRepeatRow": "Opakovať ako riadok hlavičky v hornej časti každej stránky\n\n", + "DE.Views.TableSettings.strRepeatRow": "Opakovať ako riadok hlavičky v hornej časti každej stránky", "DE.Views.TableSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "DE.Views.TableSettings.textBackColor": "Farba pozadia", "DE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný", @@ -1389,7 +1392,7 @@ "DE.Views.TableSettings.textCancel": "Zrušiť", "DE.Views.TableSettings.textColumns": "Stĺpce", "DE.Views.TableSettings.textEdit": "Riadky a stĺpce", - "DE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny\n\n", + "DE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny", "DE.Views.TableSettings.textFirst": "Prvý", "DE.Views.TableSettings.textHeader": "Hlavička", "DE.Views.TableSettings.textLast": "Trvať/posledný", @@ -1404,9 +1407,9 @@ "DE.Views.TableSettings.textWrapParallelTooltip": "Obtekať tabuľku", "DE.Views.TableSettings.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary", "DE.Views.TableSettings.tipBottom": "Nastaviť len spodné vonkajšie orámovanie", - "DE.Views.TableSettings.tipInner": "Nastaviť len vnútorné čiary\n\n", - "DE.Views.TableSettings.tipInnerHor": "Nastaviť iba horizontálne vnútorné čiary\n\n", - "DE.Views.TableSettings.tipInnerVert": "Nastaviť len vertikálne vnútorné čiary\n\n", + "DE.Views.TableSettings.tipInner": "Nastaviť len vnútorné čiary", + "DE.Views.TableSettings.tipInnerHor": "Nastaviť iba horizontálne vnútorné čiary", + "DE.Views.TableSettings.tipInnerVert": "Nastaviť len vertikálne vnútorné čiary", "DE.Views.TableSettings.tipLeft": "Nastaviť len ľavé vonkajšie orámovanie", "DE.Views.TableSettings.tipNone": "Nastaviť bez orámovania", "DE.Views.TableSettings.tipOuter": "Nastaviť len vonkajšie orámovanie", @@ -1417,13 +1420,13 @@ "DE.Views.TableSettingsAdvanced.okButtonText": "OK", "DE.Views.TableSettingsAdvanced.textAlign": "Zarovnanie", "DE.Views.TableSettingsAdvanced.textAlignment": "Zarovnanie", - "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Medzera medzi bunkami\n\n", + "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Medzera medzi bunkami", "DE.Views.TableSettingsAdvanced.textAlt": "Alternatívny text", "DE.Views.TableSettingsAdvanced.textAltDescription": "Popis", "DE.Views.TableSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Názov", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text", - "DE.Views.TableSettingsAdvanced.textAutofit": "Automaticky zmeniť veľkosť tak, aby zodpovedala obsahu\n\n", + "DE.Views.TableSettingsAdvanced.textAutofit": "Automaticky zmeniť veľkosť tak, aby zodpovedala obsahu", "DE.Views.TableSettingsAdvanced.textBackColor": "Pozadie bunky", "DE.Views.TableSettingsAdvanced.textBelow": "pod", "DE.Views.TableSettingsAdvanced.textBorderColor": "Farba orámovania", @@ -1436,8 +1439,8 @@ "DE.Views.TableSettingsAdvanced.textCellSize": "Veľkosť bunky", "DE.Views.TableSettingsAdvanced.textCenter": "Stred", "DE.Views.TableSettingsAdvanced.textCenterTooltip": "Stred", - "DE.Views.TableSettingsAdvanced.textCheckMargins": "Použiť predvolené okraje\n\n", - "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Predvolené bunkové okraje\n\n", + "DE.Views.TableSettingsAdvanced.textCheckMargins": "Použiť predvolené okraje", + "DE.Views.TableSettingsAdvanced.textDefaultMargins": "Predvolené bunkové okraje", "DE.Views.TableSettingsAdvanced.textDistance": "Vzdialenosť od textu", "DE.Views.TableSettingsAdvanced.textHorizontal": "Vodorovný", "DE.Views.TableSettingsAdvanced.textIndLeft": "Odsadiť zľava", @@ -1446,7 +1449,7 @@ "DE.Views.TableSettingsAdvanced.textMargin": "Okraj", "DE.Views.TableSettingsAdvanced.textMargins": "Okraje bunky", "DE.Views.TableSettingsAdvanced.textMeasure": "Merať v", - "DE.Views.TableSettingsAdvanced.textMove": "Presunúť objekt s textom\n\n", + "DE.Views.TableSettingsAdvanced.textMove": "Presunúť objekt s textom", "DE.Views.TableSettingsAdvanced.textNewColor": "Pridať novú vlastnú farbu", "DE.Views.TableSettingsAdvanced.textOnlyCells": "Len pre vybrané bunky", "DE.Views.TableSettingsAdvanced.textOptions": "Možnosti", @@ -1455,9 +1458,9 @@ "DE.Views.TableSettingsAdvanced.textPosition": "Pozícia", "DE.Views.TableSettingsAdvanced.textPrefWidth": "Preferovaná šírka", "DE.Views.TableSettingsAdvanced.textPreview": "Náhľad", - "DE.Views.TableSettingsAdvanced.textRelative": "vzhľadom ku \n\n", + "DE.Views.TableSettingsAdvanced.textRelative": "vzhľadom ku ", "DE.Views.TableSettingsAdvanced.textRight": "Vpravo", - "DE.Views.TableSettingsAdvanced.textRightOf": "Vpravo od\n\n", + "DE.Views.TableSettingsAdvanced.textRightOf": "Vpravo od", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Vpravo", "DE.Views.TableSettingsAdvanced.textTable": "Tabuľka", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Pozadie tabuľky", @@ -1475,9 +1478,9 @@ "DE.Views.TableSettingsAdvanced.textWrapText": "Obtekanie textu", "DE.Views.TableSettingsAdvanced.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary", "DE.Views.TableSettingsAdvanced.tipCellAll": "Nastaviť orámovanie iba pre vnútorné bunky", - "DE.Views.TableSettingsAdvanced.tipCellInner": "Nastaviť vertikálne a horizontálne čiary iba pre vnútorné bunky\n\n", + "DE.Views.TableSettingsAdvanced.tipCellInner": "Nastaviť vertikálne a horizontálne čiary iba pre vnútorné bunky", "DE.Views.TableSettingsAdvanced.tipCellOuter": "Nastaviť len vonkajšie orámovanie pre vnútorné bunky", - "DE.Views.TableSettingsAdvanced.tipInner": "Nastaviť len vnútorné čiary\n\n", + "DE.Views.TableSettingsAdvanced.tipInner": "Nastaviť len vnútorné čiary", "DE.Views.TableSettingsAdvanced.tipNone": "Nastaviť bez orámovania", "DE.Views.TableSettingsAdvanced.tipOuter": "Nastaviť len vonkajšie orámovanie", "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Nastaviť vonkajšie orámovanie a orámovanie pre všetky vnútorné bunky", @@ -1494,7 +1497,7 @@ "DE.Views.TextArtSettings.strStroke": "Obrys", "DE.Views.TextArtSettings.strTransparency": "Priehľadnosť", "DE.Views.TextArtSettings.strType": "Typ", - "DE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.\n", + "DE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.", "DE.Views.TextArtSettings.textColor": "Vyplniť farbou", "DE.Views.TextArtSettings.textDirection": "Smer", "DE.Views.TextArtSettings.textGradient": "Prechod", @@ -1513,11 +1516,11 @@ "DE.Views.Toolbar.capBtnInsChart": "Graf", "DE.Views.Toolbar.capBtnInsDropcap": "Iniciála", "DE.Views.Toolbar.capBtnInsEquation": "Rovnica", - "DE.Views.Toolbar.capBtnInsFootnote": "Poznámka pod čiarou\n", - "DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta \n\n", + "DE.Views.Toolbar.capBtnInsFootnote": "Poznámka pod čiarou", + "DE.Views.Toolbar.capBtnInsHeader": "Záhlavie/päta ", "DE.Views.Toolbar.capBtnInsImage": "Obrázok", "DE.Views.Toolbar.capBtnInsLink": "Hypertextový odkaz", - "DE.Views.Toolbar.capBtnInsPagebreak": "Oddeľovač stránky/zlom strany\n\n\n", + "DE.Views.Toolbar.capBtnInsPagebreak": "Oddeľovač stránky/zlom strany", "DE.Views.Toolbar.capBtnInsShape": "Tvar", "DE.Views.Toolbar.capBtnInsTable": "Tabuľka", "DE.Views.Toolbar.capBtnInsTextart": "Technika/grafika textu", @@ -1531,7 +1534,7 @@ "DE.Views.Toolbar.capImgGroup": "Skupina", "DE.Views.Toolbar.capImgWrapping": "Obal", "DE.Views.Toolbar.mniCustomTable": "Vložiť vlastnú tabuľku", - "DE.Views.Toolbar.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou\n\n", + "DE.Views.Toolbar.mniDelFootnote": "Odstrániť všetky poznámky pod čiarou", "DE.Views.Toolbar.mniEditDropCap": "Nastavenie Iniciály", "DE.Views.Toolbar.mniEditFooter": "Upraviť pätu", "DE.Views.Toolbar.mniEditHeader": "Upraviť hlavičku", @@ -1539,17 +1542,17 @@ "DE.Views.Toolbar.mniHiddenChars": "Formátovacie značky", "DE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "DE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", - "DE.Views.Toolbar.mniInsFootnote": "Vložiť poznámku pod čiarou\n\n", + "DE.Views.Toolbar.mniInsFootnote": "Vložiť poznámku pod čiarou", "DE.Views.Toolbar.mniNoteSettings": "Nastavenia poznámok", "DE.Views.Toolbar.strMenuNoFill": "Bez výplne", "DE.Views.Toolbar.textArea": "Plošný graf", "DE.Views.Toolbar.textAutoColor": "Automaticky", "DE.Views.Toolbar.textBar": "Pruhový graf", "DE.Views.Toolbar.textBold": "Tučné", - "DE.Views.Toolbar.textBottom": "Dole\n", + "DE.Views.Toolbar.textBottom": "Dole", "DE.Views.Toolbar.textCharts": "Grafy", "DE.Views.Toolbar.textColumn": "Stĺpec", - "DE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce\n\n", + "DE.Views.Toolbar.textColumnsCustom": "Vlastné stĺpce", "DE.Views.Toolbar.textColumnsLeft": "Vľavo", "DE.Views.Toolbar.textColumnsOne": "Jeden", "DE.Views.Toolbar.textColumnsRight": "Vpravo", @@ -1560,11 +1563,11 @@ "DE.Views.Toolbar.textEvenPage": "Párna stránka", "DE.Views.Toolbar.textFitPage": "Prispôsobiť na stranu", "DE.Views.Toolbar.textFitWidth": "Prispôsobiť na šírku", - "DE.Views.Toolbar.textGotoFootnote": "Prejdite na Poznámky pod čiarou\n\n", - "DE.Views.Toolbar.textHideLines": "Skryť pravítka\n\n", + "DE.Views.Toolbar.textGotoFootnote": "Prejdite na Poznámky pod čiarou", + "DE.Views.Toolbar.textHideLines": "Skryť pravítka", "DE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok", - "DE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu\n\n", - "DE.Views.Toolbar.textInMargin": "V okraji\n\n", + "DE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu", + "DE.Views.Toolbar.textInMargin": "V okraji", "DE.Views.Toolbar.textInsColumnBreak": "Vložiť stĺpcové zalomenie ", "DE.Views.Toolbar.textInsertPageCount": "Zadajte počet strán", "DE.Views.Toolbar.textInsertPageNumber": "Vložiť číslo stránky", @@ -1575,18 +1578,18 @@ "DE.Views.Toolbar.textLandscape": "Na šírku", "DE.Views.Toolbar.textLeft": "Vľavo:", "DE.Views.Toolbar.textLine": "Čiara/líniový graf", - "DE.Views.Toolbar.textMarginsLast": "Posledná úprava\n\n", - "DE.Views.Toolbar.textMarginsModerate": "Primeraný/pomerne malý\n\n", + "DE.Views.Toolbar.textMarginsLast": "Posledná úprava", + "DE.Views.Toolbar.textMarginsModerate": "Primeraný/pomerne malý", "DE.Views.Toolbar.textMarginsNarrow": "Úzky", "DE.Views.Toolbar.textMarginsNormal": "Normálny", "DE.Views.Toolbar.textMarginsUsNormal": "US Štandard", - "DE.Views.Toolbar.textMarginsWide": "Široký\n\n", + "DE.Views.Toolbar.textMarginsWide": "Široký", "DE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu", "DE.Views.Toolbar.textNextPage": "Ďalšia stránka", "DE.Views.Toolbar.textNone": "Žiadny", "DE.Views.Toolbar.textOddPage": "Nepárna strana", - "DE.Views.Toolbar.textPageMarginsCustom": "Vlastné okraje\n\n", - "DE.Views.Toolbar.textPageSizeCustom": "Vlastná veľkosť stránky\n\n", + "DE.Views.Toolbar.textPageMarginsCustom": "Vlastné okraje", + "DE.Views.Toolbar.textPageSizeCustom": "Vlastná veľkosť stránky", "DE.Views.Toolbar.textPie": "Koláčový graf", "DE.Views.Toolbar.textPoint": "Bodový graf", "DE.Views.Toolbar.textPortrait": "Na výšku", @@ -1595,17 +1598,17 @@ "DE.Views.Toolbar.textStrikeout": "Prečiarknuť", "DE.Views.Toolbar.textStyleMenuDelete": "Odstrániť štýl", "DE.Views.Toolbar.textStyleMenuDeleteAll": "Odstrániť všetky vlastné štýly", - "DE.Views.Toolbar.textStyleMenuNew": "Nový štýl z výberu\n\n", + "DE.Views.Toolbar.textStyleMenuNew": "Nový štýl z výberu", "DE.Views.Toolbar.textStyleMenuRestore": "Obnoviť na predvolené", - "DE.Views.Toolbar.textStyleMenuRestoreAll": "Obnoviť všetko do predvolených štýlov\n\n", - "DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovať z výberu\n\n", + "DE.Views.Toolbar.textStyleMenuRestoreAll": "Obnoviť všetko do predvolených štýlov", + "DE.Views.Toolbar.textStyleMenuUpdate": "Aktualizovať z výberu", "DE.Views.Toolbar.textSubscript": "Dolný index", "DE.Views.Toolbar.textSuperscript": "Horný index", "DE.Views.Toolbar.textSurface": "Povrch", "DE.Views.Toolbar.textTabFile": "Súbor", "DE.Views.Toolbar.textTabHome": "Hlavná stránka", "DE.Views.Toolbar.textTabInsert": "Vložiť", - "DE.Views.Toolbar.textTabLayout": "Rozloženie stránky\n\n", + "DE.Views.Toolbar.textTabLayout": "Rozloženie stránky", "DE.Views.Toolbar.textTabReview": "Prehľad", "DE.Views.Toolbar.textTitleError": "Chyba", "DE.Views.Toolbar.textToCurrent": "Na aktuálnu pozíciu", @@ -1634,7 +1637,7 @@ "DE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie", "DE.Views.Toolbar.tipHighlightColor": "Farba zvýraznenia", "DE.Views.Toolbar.tipImgAlign": "Zoradiť/usporiadať objekty", - "DE.Views.Toolbar.tipImgGroup": "Skupinové objekty\n\n", + "DE.Views.Toolbar.tipImgGroup": "Skupinové objekty", "DE.Views.Toolbar.tipImgWrapping": "Obtekanie textu", "DE.Views.Toolbar.tipIncFont": "Zväčšiť veľkosť písma", "DE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku", @@ -1651,7 +1654,7 @@ "DE.Views.Toolbar.tipMailRecepients": "Zlúčenie pošty", "DE.Views.Toolbar.tipMarkers": "Odrážky", "DE.Views.Toolbar.tipMultilevels": "Viacúrovňový zoznam", - "DE.Views.Toolbar.tipNotes": "Poznámky pod čiarou\n", + "DE.Views.Toolbar.tipNotes": "Poznámky pod čiarou", "DE.Views.Toolbar.tipNumbers": "Číslovanie", "DE.Views.Toolbar.tipPageBreak": "Vložiť zlom strany alebo sekcie", "DE.Views.Toolbar.tipPageMargins": "Okraje stránky", @@ -1663,11 +1666,11 @@ "DE.Views.Toolbar.tipPrint": "Tlačiť", "DE.Views.Toolbar.tipRedo": "Krok vpred", "DE.Views.Toolbar.tipSave": "Uložiť", - "DE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.\n\n", - "DE.Views.Toolbar.tipSendBackward": "Odoslať späť\n\n", + "DE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.", + "DE.Views.Toolbar.tipSendBackward": "Odoslať späť", "DE.Views.Toolbar.tipSendForward": "Posunúť vpred", "DE.Views.Toolbar.tipShowHiddenChars": "Formátovacie značky", - "DE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.\n\n", + "DE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "DE.Views.Toolbar.tipUndo": "Krok späť", "DE.Views.Toolbar.tipViewSettings": "Zobraziť nastavenia", "DE.Views.Toolbar.txtScheme1": "Kancelária", @@ -1675,16 +1678,16 @@ "DE.Views.Toolbar.txtScheme11": "Metro", "DE.Views.Toolbar.txtScheme12": "Modul", "DE.Views.Toolbar.txtScheme13": "Výnos", - "DE.Views.Toolbar.txtScheme14": "Výklenok\n", + "DE.Views.Toolbar.txtScheme14": "Výklenok", "DE.Views.Toolbar.txtScheme15": "Pôvod", "DE.Views.Toolbar.txtScheme16": "Papier", "DE.Views.Toolbar.txtScheme17": "Slnovrat", "DE.Views.Toolbar.txtScheme18": "Technika", "DE.Views.Toolbar.txtScheme19": "Cestovanie", - "DE.Views.Toolbar.txtScheme2": "Odtiene sivej\n", + "DE.Views.Toolbar.txtScheme2": "Odtiene sivej", "DE.Views.Toolbar.txtScheme20": "Mestský", "DE.Views.Toolbar.txtScheme21": "Elán", - "DE.Views.Toolbar.txtScheme3": "Vrchol\n", + "DE.Views.Toolbar.txtScheme3": "Vrchol", "DE.Views.Toolbar.txtScheme4": "Aspekt", "DE.Views.Toolbar.txtScheme5": "Občiansky", "DE.Views.Toolbar.txtScheme6": "Dav", diff --git a/apps/documenteditor/main/locale/sl.json b/apps/documenteditor/main/locale/sl.json index 101579578..b8f42b7fa 100644 --- a/apps/documenteditor/main/locale/sl.json +++ b/apps/documenteditor/main/locale/sl.json @@ -1111,7 +1111,7 @@ "DE.Views.ParagraphSettingsAdvanced.textAlign": "Poravnava", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Barva ozadja", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Barva obrobe", - "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Pritisni na diagram, ali pa uporabi gumbe za izbiro mej in potrditev njihovega izbranega stila\n", + "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Pritisni na diagram, ali pa uporabi gumbe za izbiro mej in potrditev njihovega izbranega stila", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Velikost obrobe", "DE.Views.ParagraphSettingsAdvanced.textBottom": "Dno", "DE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Razmak znaka", @@ -1268,7 +1268,7 @@ "DE.Views.TableSettingsAdvanced.textBackColor": "Ozadje celice", "DE.Views.TableSettingsAdvanced.textBelow": "pod", "DE.Views.TableSettingsAdvanced.textBorderColor": "Barva obrobe", - "DE.Views.TableSettingsAdvanced.textBorderDesc": "Pritisni na diagram, ali pa uporabi gumbe za izbiro mej in potrditev njihovega izbranega stila\n", + "DE.Views.TableSettingsAdvanced.textBorderDesc": "Pritisni na diagram, ali pa uporabi gumbe za izbiro mej in potrditev njihovega izbranega stila", "DE.Views.TableSettingsAdvanced.textBordersBackgroung": "Obrobe & Ozadje", "DE.Views.TableSettingsAdvanced.textBorderWidth": "Velikost obrobe", "DE.Views.TableSettingsAdvanced.textBottom": "Dno", diff --git a/apps/documenteditor/main/locale/tr.json b/apps/documenteditor/main/locale/tr.json index e00cadb10..c88a0b3da 100644 --- a/apps/documenteditor/main/locale/tr.json +++ b/apps/documenteditor/main/locale/tr.json @@ -50,7 +50,7 @@ "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraph Deleted ", "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraph Formatted", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraph Inserted ", - "Common.Controllers.ReviewChanges.textPosition": "Position", + "Common.Controllers.ReviewChanges.textPosition": "Pozisyon", "Common.Controllers.ReviewChanges.textRight": "Align right", "Common.Controllers.ReviewChanges.textShape": "Shape", "Common.Controllers.ReviewChanges.textShd": "Background color", @@ -86,6 +86,8 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir", "Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", + "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -119,6 +121,7 @@ "Common.Views.Comments.textComments": "Yorumlar", "Common.Views.Comments.textEdit": "Düzenle", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", + "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", "Common.Views.Comments.textReply": "Yanıtla", "Common.Views.Comments.textResolve": "Çöz", @@ -137,8 +140,23 @@ "Common.Views.ExternalMergeEditor.textClose": "Close", "Common.Views.ExternalMergeEditor.textSave": "Save & Exit", "Common.Views.ExternalMergeEditor.textTitle": "Mail Merge Recipients", + "Common.Views.Header.labelCoUsersDescr": "Belge şu an bir kaç kullanıcı tarafından düzenleniyor.", "Common.Views.Header.textBack": "Dökümanlara Git", + "Common.Views.Header.textSaveBegin": "Kaydediliyor...", + "Common.Views.Header.textSaveChanged": "Modifiyeli", + "Common.Views.Header.textSaveEnd": "Tüm değişiklikler kaydedildi", + "Common.Views.Header.textSaveExpander": "Tüm değişiklikler kaydedildi", + "Common.Views.Header.tipAccessRights": "Belge erişim haklarını yönet", + "Common.Views.Header.tipDownload": "Dosyayı indir", + "Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle", + "Common.Views.Header.tipPrint": "Sayfayı yazdır", + "Common.Views.Header.tipViewUsers": "Kullanıcıları görüntüle ve belge erişim haklarını yönet", + "Common.Views.Header.txtAccessRights": "Erişim haklarını değiştir", + "Common.Views.Header.txtRename": "Yeniden adlandır", + "Common.Views.History.textCloseHistory": "Geçmişi kapat", + "Common.Views.History.textHide": "Daralt", "Common.Views.History.textHideAll": "Detaylı değişiklikleri sakla", + "Common.Views.History.textRestore": "Geri yükle", "Common.Views.History.textShow": "Genişlet", "Common.Views.History.textShowAll": "Ayrıntılı değişiklikleri göster", "Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et", @@ -154,23 +172,62 @@ "Common.Views.InsertTableDialog.txtMinText": "Bu alan için minimum değer: {0}.", "Common.Views.InsertTableDialog.txtRows": "Sıra Sayısı", "Common.Views.InsertTableDialog.txtTitle": "Tablo Boyutu", + "Common.Views.InsertTableDialog.txtTitleSplit": "Hücreyi Böl", + "Common.Views.LanguageDialog.btnCancel": "İptal", + "Common.Views.LanguageDialog.btnOk": "Tamam", + "Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin", "Common.Views.OpenDialog.cancelButtonText": "Cancel", "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", + "Common.Views.OpenDialog.txtPassword": "Şifre", "Common.Views.OpenDialog.txtTitle": "Choose %1 options", "Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya", + "Common.Views.PluginDlg.textLoading": "Yükleniyor", + "Common.Views.Plugins.groupCaption": "Eklentiler", "Common.Views.Plugins.strPlugins": "Plugin", "Common.Views.Plugins.textLoading": "Yükleniyor", + "Common.Views.Plugins.textStart": "Başlat", + "Common.Views.Plugins.textStop": "Bitir", + "Common.Views.RenameDialog.cancelButtonText": "İptal", + "Common.Views.RenameDialog.okButtonText": "Tamam", + "Common.Views.RenameDialog.textName": "Dosya adı", "Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:", + "Common.Views.ReviewChanges.hintNext": "Sonraki değişikliğe", + "Common.Views.ReviewChanges.hintPrev": "Önceki değişikliğe", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Mevcut değişiklikleri kabul et", + "Common.Views.ReviewChanges.tipRejectCurrent": "Mevcut Değişiklikleri Reddet", + "Common.Views.ReviewChanges.tipReview": "Değişiklikleri izle", + "Common.Views.ReviewChanges.tipReviewView": "Değişikliklerin gösterilmesini istediğiniz modu seçin", + "Common.Views.ReviewChanges.tipSetDocLang": "Belge dilini belirle", + "Common.Views.ReviewChanges.tipSetSpelling": "Yazım denetimi", "Common.Views.ReviewChanges.txtAccept": "Accept", "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", + "Common.Views.ReviewChanges.txtAcceptChanges": "Değişiklikleri Kabul Et", "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Changes", "Common.Views.ReviewChanges.txtClose": "Close", + "Common.Views.ReviewChanges.txtDocLang": "Dil", + "Common.Views.ReviewChanges.txtFinal": "Tüm değişiklikler kabul edildi (Önizleme)", + "Common.Views.ReviewChanges.txtMarkup": "Tüm değişiklikler (Düzenleme)", "Common.Views.ReviewChanges.txtNext": "To Next Change", + "Common.Views.ReviewChanges.txtOriginal": "Tüm değişiklikler reddedildi (Önizleme)", "Common.Views.ReviewChanges.txtPrev": "To Previous Change", "Common.Views.ReviewChanges.txtReject": "Reject", "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", + "Common.Views.ReviewChanges.txtRejectChanges": "Değişiklikleri Reddet", "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Changes", + "Common.Views.ReviewChanges.txtSpelling": "Yazım Denetimi", + "Common.Views.ReviewChanges.txtTurnon": "Değişiklikleri izle", + "Common.Views.ReviewChanges.txtView": "Görüntü Modu", + "Common.Views.ReviewChangesDialog.textTitle": "Değişiklikleri incele", + "Common.Views.ReviewChangesDialog.txtAccept": "Kabul Et", + "Common.Views.ReviewChangesDialog.txtAcceptAll": "Tüm Değişiklikleri Kabul Et", + "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Mevcut Değişiklikleri Kabul Et", + "Common.Views.ReviewChangesDialog.txtNext": "Sonraki değişikliğe", + "Common.Views.ReviewChangesDialog.txtPrev": "Önceki değişikliğe", + "Common.Views.ReviewChangesDialog.txtReject": "Reddet", + "Common.Views.ReviewChangesDialog.txtRejectAll": "Tüm Değişiklikleri Reddet", + "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Mevcut Değişiklikleri Reddet", "DE.Controllers.LeftMenu.leavePageText": "All unsaved changes in this document will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", "DE.Controllers.LeftMenu.newDocumentTitle": "İsimlendirilmemiş döküman", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Warning", @@ -192,6 +249,7 @@ "DE.Controllers.Main.downloadTextText": "Döküman yükleniyor...", "DE.Controllers.Main.downloadTitleText": "Döküman yükleniyor", "DE.Controllers.Main.errorAccessDeny": "Hakiniz olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Document Server yöneticinize başvurun.", + "DE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "DE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
When you click the 'OK' button, you will be prompted to download the document.

Find more information about connecting Document Server here", "DE.Controllers.Main.errorDatabaseConnection": "Harci hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", @@ -203,6 +261,7 @@ "DE.Controllers.Main.errorMailMergeLoadFile": "Loading failed", "DE.Controllers.Main.errorMailMergeSaveFile": "Merge failed.", "DE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.", + "DE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", "DE.Controllers.Main.errorSessionAbsolute": "Doküman düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", "DE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", "DE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", @@ -247,13 +306,16 @@ "DE.Controllers.Main.splitMaxRowsErrorText": "Satır sayısı %1'den az olmalıdır.", "DE.Controllers.Main.textAnonymous": "Anonim", "DE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", + "DE.Controllers.Main.textChangesSaved": "Tüm değişiklikler kaydedildi", "DE.Controllers.Main.textCloseTip": "Ucu kapamak için tıklayın", "DE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin", "DE.Controllers.Main.textLoadingDocument": "Döküman yükleniyor", "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", + "DE.Controllers.Main.textShape": "Şekil", "DE.Controllers.Main.textStrict": "Strict mode", "DE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "DE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", + "DE.Controllers.Main.titleServerVersion": "Editör güncellendi", "DE.Controllers.Main.titleUpdateVersion": "Versiyon değiştirildi", "DE.Controllers.Main.txtArt": "Your text here", "DE.Controllers.Main.txtBasicShapes": "Temel Şekiller", @@ -270,6 +332,22 @@ "DE.Controllers.Main.txtRectangles": "Dikdörtgenler", "DE.Controllers.Main.txtSeries": "Seriler", "DE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", + "DE.Controllers.Main.txtStyle_Heading_1": "Başlık 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Başlık 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Başlık 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Başlık 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Başlık 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Başlık 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Başlık 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Başlık 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Başlık 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Yoğun Alıntı", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Paragrafı Listele", + "DE.Controllers.Main.txtStyle_No_Spacing": "Boşluksuz", + "DE.Controllers.Main.txtStyle_Normal": "Normal", + "DE.Controllers.Main.txtStyle_Quote": "Alıntı", + "DE.Controllers.Main.txtStyle_Subtitle": "Altyazı", + "DE.Controllers.Main.txtStyle_Title": "Başlık", "DE.Controllers.Main.txtXAxis": "X Ekseni", "DE.Controllers.Main.txtYAxis": "Y Ekseni", "DE.Controllers.Main.unknownErrorText": "Bilinmeyen hata.", @@ -286,6 +364,7 @@ "DE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", "DE.Controllers.Statusbar.textHasChanges": "New changes have been tracked", "DE.Controllers.Statusbar.textTrackChanges": "The document is opened with the Track Changes mode enabled", + "DE.Controllers.Statusbar.tipReview": "Değişiklikleri izle", "DE.Controllers.Statusbar.zoomText": "Zum {0}%", "DE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", "DE.Controllers.Toolbar.confirmDeleteFootnotes": "Tüm dipnotları silmek istiyor musun?", @@ -637,6 +716,7 @@ "DE.Views.ChartSettings.textSize": "Boyut", "DE.Views.ChartSettings.textStock": "Stok Grafiği", "DE.Views.ChartSettings.textStyle": "Stil", + "DE.Views.ChartSettings.textSurface": "Yüzey", "DE.Views.ChartSettings.textUndock": "Panelden çıkar", "DE.Views.ChartSettings.textWidth": "Genişlik", "DE.Views.ChartSettings.textWrap": "Kaydırma Stili", @@ -648,6 +728,12 @@ "DE.Views.ChartSettings.txtTight": "Sıkı", "DE.Views.ChartSettings.txtTitle": "Grafik", "DE.Views.ChartSettings.txtTopAndBottom": "Üst ve alt", + "DE.Views.CustomColumnsDialog.cancelButtonText": "İptal", + "DE.Views.CustomColumnsDialog.okButtonText": "Tamam", + "DE.Views.CustomColumnsDialog.textColumns": "Sütun sayısı", + "DE.Views.CustomColumnsDialog.textSeparator": "Sütun ayracı", + "DE.Views.CustomColumnsDialog.textSpacing": "Sütunlar arasında boşluk", + "DE.Views.CustomColumnsDialog.textTitle": "Sütunlar", "DE.Views.DocumentHolder.aboveText": "Yukarıda", "DE.Views.DocumentHolder.addCommentText": "Yorum Ekle", "DE.Views.DocumentHolder.advancedFrameText": "Çerçeve Gelişmiş Ayarlar", @@ -716,7 +802,7 @@ "DE.Views.DocumentHolder.textArrange": "Düzenle", "DE.Views.DocumentHolder.textArrangeBack": "Arkaplana gönder", "DE.Views.DocumentHolder.textArrangeBackward": "Geri Taşı", - "DE.Views.DocumentHolder.textArrangeForward": "İler Taşı", + "DE.Views.DocumentHolder.textArrangeForward": "İleri Taşı", "DE.Views.DocumentHolder.textArrangeFront": "Önplana Getir", "DE.Views.DocumentHolder.textCopy": "Kopyala", "DE.Views.DocumentHolder.textCut": "Kes", @@ -730,6 +816,7 @@ "DE.Views.DocumentHolder.textShapeAlignMiddle": "Ortaya hizala", "DE.Views.DocumentHolder.textShapeAlignRight": "Sağa Hizla", "DE.Views.DocumentHolder.textShapeAlignTop": "Üste Hizala", + "DE.Views.DocumentHolder.textUndo": "Geri Al", "DE.Views.DocumentHolder.textWrap": "Kaydırma Stili", "DE.Views.DocumentHolder.tipIsLocked": "Bu element şu an başka bir kullanıcı tarafından düzenleniyor.", "DE.Views.DocumentHolder.txtAddBottom": "Add bottom border", @@ -782,6 +869,7 @@ "DE.Views.DocumentHolder.txtInsertBreak": "Insert manual break", "DE.Views.DocumentHolder.txtInsertEqAfter": "Insert equation after", "DE.Views.DocumentHolder.txtInsertEqBefore": "Insert equation before", + "DE.Views.DocumentHolder.txtKeepTextOnly": "Yalnızca metni tut", "DE.Views.DocumentHolder.txtLimitChange": "Change limits location", "DE.Views.DocumentHolder.txtLimitOver": "Limit over text", "DE.Views.DocumentHolder.txtLimitUnder": "Limit under text", @@ -856,7 +944,7 @@ "DE.Views.DropcapSettingsAdvanced.textTop": "Üst", "DE.Views.DropcapSettingsAdvanced.textVertical": "Dikey", "DE.Views.DropcapSettingsAdvanced.textWidth": "Genişlik", - "DE.Views.DropcapSettingsAdvanced.tipFontName": "Yazı Tipi İsmi", + "DE.Views.DropcapSettingsAdvanced.tipFontName": "Yazı Tipi", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Sınır yok", "DE.Views.FileMenu.btnBackCaption": "Dökümanlara Git", "DE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat", @@ -904,8 +992,10 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "DE.Views.FileMenuPanels.Settings.strFast": "Fast", "DE.Views.FileMenuPanels.Settings.strFontRender": "Yazı Tipi İpucu", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Her zaman sunucuya kaydet (aksi takdirde belge kapandığında sunucuya kaydet)", "DE.Views.FileMenuPanels.Settings.strInputMode": "Hiyeroglifleri aç", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Canlı yorum yapma seçeneğini aç", + "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Çözülmüş yorumların görünümünü aç", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Yazım denetimi seçeneğini aç", "DE.Views.FileMenuPanels.Settings.strStrict": "Strict", @@ -919,9 +1009,12 @@ "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Otomatik Kurtarma", "DE.Views.FileMenuPanels.Settings.textAutoSave": "Otomatik Kaydetme", "DE.Views.FileMenuPanels.Settings.textDisabled": "Devre Dışı", + "DE.Views.FileMenuPanels.Settings.textForceSave": "Sunucuya Kaydet", "DE.Views.FileMenuPanels.Settings.textMinute": "Her Dakika", "DE.Views.FileMenuPanels.Settings.txtAll": "Tümünü göster", "DE.Views.FileMenuPanels.Settings.txtCm": "Santimetre", + "DE.Views.FileMenuPanels.Settings.txtFitPage": "Sayfaya Sığdır", + "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Genişliğe Sığdır", "DE.Views.FileMenuPanels.Settings.txtInch": "İnç", "DE.Views.FileMenuPanels.Settings.txtInput": "Girdiyi Değiştir", "DE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", @@ -956,7 +1049,9 @@ "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Bu alan gereklidir", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bu alan \"http://www.example.com\" formatında URL olmalıdır", "DE.Views.ImageSettings.textAdvanced": "Gelişmiş ayarları göster", + "DE.Views.ImageSettings.textEdit": "Düzenle", "DE.Views.ImageSettings.textEditObject": "Nesneyi düzenle", + "DE.Views.ImageSettings.textFitMargins": "Kenarlara Sığdır", "DE.Views.ImageSettings.textFromFile": "Dosyadan", "DE.Views.ImageSettings.textFromUrl": "URL'den", "DE.Views.ImageSettings.textHeight": "Yükseklik", @@ -977,6 +1072,10 @@ "DE.Views.ImageSettingsAdvanced.strMargins": "Metin Dolgulama", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Mutlak", "DE.Views.ImageSettingsAdvanced.textAlignment": "Hiza", + "DE.Views.ImageSettingsAdvanced.textAlt": "Alternatif Metin", + "DE.Views.ImageSettingsAdvanced.textAltDescription": "Açıklama", + "DE.Views.ImageSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "DE.Views.ImageSettingsAdvanced.textAltTitle": "Başlık", "DE.Views.ImageSettingsAdvanced.textArrows": "Oklar", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "En-boy oranını kilitle", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Başlama Boyutu", @@ -1027,6 +1126,7 @@ "DE.Views.ImageSettingsAdvanced.textTop": "Üst", "DE.Views.ImageSettingsAdvanced.textTopMargin": "Üst Kenar Aralığı", "DE.Views.ImageSettingsAdvanced.textVertical": "Dikey", + "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Ağırlık & Oklar", "DE.Views.ImageSettingsAdvanced.textWidth": "Genişlik", "DE.Views.ImageSettingsAdvanced.textWrap": "Kaydırma Stili", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Arkada", @@ -1043,6 +1143,7 @@ "DE.Views.LeftMenu.tipSearch": "Ara", "DE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek", "DE.Views.LeftMenu.tipTitles": "Başlıklar", + "DE.Views.LeftMenu.txtDeveloper": "GELİŞTİRİCİ MODU", "DE.Views.MailMergeEmailDlg.cancelButtonText": "Cancel", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Send", @@ -1095,15 +1196,23 @@ "DE.Views.MailMergeSettings.txtPrev": "To previous record", "DE.Views.MailMergeSettings.txtUntitled": "Untitled", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Starting merge failed", + "DE.Views.NoteSettingsDialog.textApply": "Uygula", "DE.Views.NoteSettingsDialog.textApplyTo": "Değişiklikleri uygula", + "DE.Views.NoteSettingsDialog.textCancel": "İptal", "DE.Views.NoteSettingsDialog.textContinue": "Sürekli", "DE.Views.NoteSettingsDialog.textCustom": "Özel mark", "DE.Views.NoteSettingsDialog.textDocument": "Tüm döküman", "DE.Views.NoteSettingsDialog.textEachPage": "Her sayfayı yeniden başlatın", "DE.Views.NoteSettingsDialog.textEachSection": "Her sayfayı yeniden başlatın", "DE.Views.NoteSettingsDialog.textFootnote": "Dipnot", + "DE.Views.NoteSettingsDialog.textFormat": "Format", + "DE.Views.NoteSettingsDialog.textInsert": "Ekle", + "DE.Views.NoteSettingsDialog.textLocation": "Konum", + "DE.Views.NoteSettingsDialog.textNumbering": "Numaralandırma", + "DE.Views.NoteSettingsDialog.textNumFormat": "Sayı Formatı", "DE.Views.NoteSettingsDialog.textPageBottom": "Sayfanın alt kısmı", "DE.Views.NoteSettingsDialog.textSection": "Bu kısım", + "DE.Views.NoteSettingsDialog.textStart": "Başlatma zamanı", "DE.Views.NoteSettingsDialog.textTextBottom": "Aşağıdaki metin", "DE.Views.NoteSettingsDialog.textTitle": "Not ayarları", "DE.Views.PageMarginsDialog.cancelButtonText": "Cancel", @@ -1205,6 +1314,7 @@ "DE.Views.ShapeSettings.strSize": "Boyut", "DE.Views.ShapeSettings.strStroke": "Bölü işareti", "DE.Views.ShapeSettings.strTransparency": "Opasite", + "DE.Views.ShapeSettings.strType": "Tip", "DE.Views.ShapeSettings.textAdvanced": "Gelişmiş ayarları göster", "DE.Views.ShapeSettings.textBorderSizeErr": "Girilen değer yanlış.
Lütfen 0 ile 1584 pt arasında değer giriniz.", "DE.Views.ShapeSettings.textColor": "Renk Dolgusu", @@ -1311,6 +1421,10 @@ "DE.Views.TableSettingsAdvanced.textAlign": "Hiza", "DE.Views.TableSettingsAdvanced.textAlignment": "Hiza", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Hücreler arası aralığa izin ver", + "DE.Views.TableSettingsAdvanced.textAlt": "Alternatif Metin", + "DE.Views.TableSettingsAdvanced.textAltDescription": "Açıklama", + "DE.Views.TableSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "DE.Views.TableSettingsAdvanced.textAltTitle": "Başlık", "DE.Views.TableSettingsAdvanced.textAnchorText": "Metin", "DE.Views.TableSettingsAdvanced.textAutofit": "İçeriği sığdırmak için otomatik yeniden boyutlandır", "DE.Views.TableSettingsAdvanced.textBackColor": "Hücre Arka Planı", @@ -1348,7 +1462,10 @@ "DE.Views.TableSettingsAdvanced.textRight": "Sağ", "DE.Views.TableSettingsAdvanced.textRightOf": "sağına", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Sağ", + "DE.Views.TableSettingsAdvanced.textTable": "Tablo", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Tablo Arka planı", + "DE.Views.TableSettingsAdvanced.textTablePosition": "Tablo Pozisyonu", + "DE.Views.TableSettingsAdvanced.textTableSize": "Tablo Boyutu", "DE.Views.TableSettingsAdvanced.textTitle": "Tablo - Gelişmiş Ayarlar", "DE.Views.TableSettingsAdvanced.textTop": "Üst", "DE.Views.TableSettingsAdvanced.textVertical": "Dikey", @@ -1357,6 +1474,8 @@ "DE.Views.TableSettingsAdvanced.textWrap": "Metin Kaydırma", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Satıriçi tablo", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Yayılma tablası", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Kaydırma Stili", + "DE.Views.TableSettingsAdvanced.textWrapText": "Metni Kaydır", "DE.Views.TableSettingsAdvanced.tipAll": "Dış Sınır ve Tüm İç Satırları Belirle", "DE.Views.TableSettingsAdvanced.tipCellAll": "Sadece iç hücreler için sınır belirleyin", "DE.Views.TableSettingsAdvanced.tipCellInner": "Sadece İç Hücreler için Dikey ve Yatay Çizgileri Belirle", @@ -1367,13 +1486,17 @@ "DE.Views.TableSettingsAdvanced.tipTableOuterCellAll": "Dış Sınırı ve Tüm İç Hücreler için Sınırları belirle", "DE.Views.TableSettingsAdvanced.tipTableOuterCellInner": "Dış sınırı ve İç Hücreler için Dikey Yatay Çizgileri Belirleyin", "DE.Views.TableSettingsAdvanced.tipTableOuterCellOuter": "Dış Sınır Tablosunu ve İç Hücreler için Dış Sınırları Belirle", + "DE.Views.TableSettingsAdvanced.txtCm": "Santimetre", + "DE.Views.TableSettingsAdvanced.txtInch": "İnç", "DE.Views.TableSettingsAdvanced.txtNoBorders": "Sınır yok", "DE.Views.TableSettingsAdvanced.txtPercent": "Yüzde", + "DE.Views.TableSettingsAdvanced.txtPt": "Nokta", "DE.Views.TextArtSettings.strColor": "Color", "DE.Views.TextArtSettings.strFill": "Fill", "DE.Views.TextArtSettings.strSize": "Size", "DE.Views.TextArtSettings.strStroke": "Stroke", "DE.Views.TextArtSettings.strTransparency": "Opacity", + "DE.Views.TextArtSettings.strType": "Tip", "DE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "DE.Views.TextArtSettings.textColor": "Color Fill", "DE.Views.TextArtSettings.textDirection": "Direction", @@ -1388,6 +1511,28 @@ "DE.Views.TextArtSettings.textTemplate": "Template", "DE.Views.TextArtSettings.textTransform": "Transform", "DE.Views.TextArtSettings.txtNoBorders": "No Line", + "DE.Views.Toolbar.capBtnColumns": "Sütunlar", + "DE.Views.Toolbar.capBtnComment": "Yorum yap", + "DE.Views.Toolbar.capBtnInsChart": "Grafik", + "DE.Views.Toolbar.capBtnInsDropcap": "Büyük Harf", + "DE.Views.Toolbar.capBtnInsEquation": "Denklem", + "DE.Views.Toolbar.capBtnInsFootnote": "Dipnot", + "DE.Views.Toolbar.capBtnInsHeader": "Üstbilgi/dipnot", + "DE.Views.Toolbar.capBtnInsImage": "Resim", + "DE.Views.Toolbar.capBtnInsLink": "Hiper Link", + "DE.Views.Toolbar.capBtnInsPagebreak": "Sonlar", + "DE.Views.Toolbar.capBtnInsShape": "Şekil", + "DE.Views.Toolbar.capBtnInsTable": "Tablo", + "DE.Views.Toolbar.capBtnInsTextart": "Metin art", + "DE.Views.Toolbar.capBtnInsTextbox": "Metin", + "DE.Views.Toolbar.capBtnMargins": "Kenar Boşlukları", + "DE.Views.Toolbar.capBtnPageOrient": "Oryantasyon", + "DE.Views.Toolbar.capBtnPageSize": "Boyut", + "DE.Views.Toolbar.capImgAlign": "Hizala", + "DE.Views.Toolbar.capImgBackward": "Geri Taşı", + "DE.Views.Toolbar.capImgForward": "İleri Taşı", + "DE.Views.Toolbar.capImgGroup": "Grup", + "DE.Views.Toolbar.capImgWrapping": "Kaydırma", "DE.Views.Toolbar.mniCustomTable": "Özel Tablo Ekle", "DE.Views.Toolbar.mniDelFootnote": "Tüm Dipnotları Sil", "DE.Views.Toolbar.mniEditDropCap": "Büyük Harf Ayarları", @@ -1398,13 +1543,16 @@ "DE.Views.Toolbar.mniImageFromFile": "Dosyadan resim", "DE.Views.Toolbar.mniImageFromUrl": "URL'den resim", "DE.Views.Toolbar.mniInsFootnote": "Dipnot ekle", + "DE.Views.Toolbar.mniNoteSettings": "Not Ayarları", "DE.Views.Toolbar.strMenuNoFill": "Dolgu Yok", "DE.Views.Toolbar.textArea": "Bölge Grafiği", "DE.Views.Toolbar.textAutoColor": "Otomatik", "DE.Views.Toolbar.textBar": "Çubuk grafik", "DE.Views.Toolbar.textBold": "Kalın", "DE.Views.Toolbar.textBottom": "Bottom: ", + "DE.Views.Toolbar.textCharts": "Grafikler", "DE.Views.Toolbar.textColumn": "Sütun grafik", + "DE.Views.Toolbar.textColumnsCustom": "Özel Sütunlar", "DE.Views.Toolbar.textColumnsLeft": "Left", "DE.Views.Toolbar.textColumnsOne": "One", "DE.Views.Toolbar.textColumnsRight": "Right", @@ -1456,6 +1604,12 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Update from selection", "DE.Views.Toolbar.textSubscript": "Altsimge", "DE.Views.Toolbar.textSuperscript": "Üstsimge", + "DE.Views.Toolbar.textSurface": "Yüzey", + "DE.Views.Toolbar.textTabFile": "Dosya", + "DE.Views.Toolbar.textTabHome": "Ana Sayfa", + "DE.Views.Toolbar.textTabInsert": "Ekle", + "DE.Views.Toolbar.textTabLayout": "Tasarım", + "DE.Views.Toolbar.textTabReview": "İnceleme", "DE.Views.Toolbar.textTitleError": "Hata", "DE.Views.Toolbar.textToCurrent": "Mevcut pozisyona", "DE.Views.Toolbar.textTop": "Top: ", @@ -1467,6 +1621,7 @@ "DE.Views.Toolbar.tipAlignLeft": "Sola Hizala", "DE.Views.Toolbar.tipAlignRight": "Sağa Hizla", "DE.Views.Toolbar.tipBack": "Geri", + "DE.Views.Toolbar.tipChangeChart": "Grafik tipini değiştir", "DE.Views.Toolbar.tipClearStyle": "Stili Temizle", "DE.Views.Toolbar.tipColorSchemas": "Renk Şemasını Değiştir", "DE.Views.Toolbar.tipColumns": "Insert columns", @@ -1477,10 +1632,13 @@ "DE.Views.Toolbar.tipDropCap": "Büyük Harf Ekle", "DE.Views.Toolbar.tipEditHeader": "Alt yada üst başlığı düzenle", "DE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", - "DE.Views.Toolbar.tipFontName": "Yazı Tipi İsmi", + "DE.Views.Toolbar.tipFontName": "Yazı Tipi", "DE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", "DE.Views.Toolbar.tipHAligh": "Yatay Hizala", "DE.Views.Toolbar.tipHighlightColor": "Vurgu Rengi", + "DE.Views.Toolbar.tipImgAlign": "Objeleri hizala", + "DE.Views.Toolbar.tipImgGroup": "Grup objeleri", + "DE.Views.Toolbar.tipImgWrapping": "Metni Kaydır", "DE.Views.Toolbar.tipIncFont": "Yazı Tipi Boyut Arttırımı", "DE.Views.Toolbar.tipIncPrLeft": "Girintiyi Arttır", "DE.Views.Toolbar.tipInsertChart": "Tablo ekle", @@ -1491,6 +1649,7 @@ "DE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle", "DE.Views.Toolbar.tipInsertTable": "Tablo ekle", "DE.Views.Toolbar.tipInsertText": "Metin ekle", + "DE.Views.Toolbar.tipInsertTextArt": "Metin Art Ekle", "DE.Views.Toolbar.tipLineSpace": "Paragraf Satır Aralığı", "DE.Views.Toolbar.tipMailRecepients": "Mail Merge", "DE.Views.Toolbar.tipMarkers": "İmler", @@ -1508,6 +1667,8 @@ "DE.Views.Toolbar.tipRedo": "Tekrar yap", "DE.Views.Toolbar.tipSave": "Kaydet", "DE.Views.Toolbar.tipSaveCoauth": "Diğer kullanıcıların görmesi için değişikliklerinizi kaydedin.", + "DE.Views.Toolbar.tipSendBackward": "Geri taşı", + "DE.Views.Toolbar.tipSendForward": "İleri Taşı", "DE.Views.Toolbar.tipShowHiddenChars": "Basılmaz Karakterler", "DE.Views.Toolbar.tipSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi. Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", "DE.Views.Toolbar.tipUndo": "Geri Al", diff --git a/apps/documenteditor/main/locale/uk.json b/apps/documenteditor/main/locale/uk.json index e18a2f84a..fcfa476c2 100644 --- a/apps/documenteditor/main/locale/uk.json +++ b/apps/documenteditor/main/locale/uk.json @@ -53,7 +53,7 @@ "Common.Controllers.ReviewChanges.textPosition": "Посада", "Common.Controllers.ReviewChanges.textRight": "Вирівняти справа", "Common.Controllers.ReviewChanges.textShape": "Форма", - "Common.Controllers.ReviewChanges.textShd": "Колір фону\n", + "Common.Controllers.ReviewChanges.textShd": "Колір фону", "Common.Controllers.ReviewChanges.textSmallCaps": "Малі шапки", "Common.Controllers.ReviewChanges.textSpacing": "інтервал", "Common.Controllers.ReviewChanges.textSpacingAfter": "Інтервал після", @@ -98,14 +98,14 @@ "Common.UI.Window.textInformation": "Інформація", "Common.UI.Window.textWarning": "Застереження", "Common.UI.Window.yesButtonText": "Так", - "Common.Utils.Metric.txtCm": "см\n", + "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", "Common.Views.About.txtAddress": "адреса:", "Common.Views.About.txtAscAddress": "Вул. Лубанас 125а-25, Рига, Латвія, ЄС, LV-1021", "Common.Views.About.txtLicensee": "ЛІЦЕНЗІЯ", "Common.Views.About.txtLicensor": "Ліцензіар", "Common.Views.About.txtMail": "пошта:", - "Common.Views.About.txtPoweredBy": "Під керуванням\n", + "Common.Views.About.txtPoweredBy": "Під керуванням", "Common.Views.About.txtTel": "Тел.:", "Common.Views.About.txtVersion": "Версія", "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Скасувати", @@ -162,7 +162,7 @@ "Common.Views.ImageFromUrlDialog.cancelButtonText": "Скасувати", "Common.Views.ImageFromUrlDialog.okButtonText": "OК", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим\n", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "Common.Views.InsertTableDialog.cancelButtonText": "Скасувати", "Common.Views.InsertTableDialog.okButtonText": "OК", @@ -699,7 +699,7 @@ "DE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальний Еліпсіс", "DE.Controllers.Toolbar.txtSymbol_xsi": "ксі", "DE.Controllers.Toolbar.txtSymbol_zeta": "Зета", - "DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування\n", + "DE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.ChartSettings.textArea": "Площа", "DE.Views.ChartSettings.textBar": "Вставити", "DE.Views.ChartSettings.textChartType": "Змінити тип діаграми", @@ -718,8 +718,8 @@ "DE.Views.ChartSettings.textWidth": "Ширина", "DE.Views.ChartSettings.textWrap": "Стиль упаковки", "DE.Views.ChartSettings.txtBehind": "Позаду", - "DE.Views.ChartSettings.txtInFront": "Попереду\n", - "DE.Views.ChartSettings.txtInline": "Вбудований\n", + "DE.Views.ChartSettings.txtInFront": "Попереду", + "DE.Views.ChartSettings.txtInline": "Вбудований", "DE.Views.ChartSettings.txtSquare": "Площа", "DE.Views.ChartSettings.txtThrough": "Через", "DE.Views.ChartSettings.txtTight": "Тісно", @@ -748,7 +748,7 @@ "DE.Views.DocumentHolder.deleteColumnText": "Видалити колону", "DE.Views.DocumentHolder.deleteRowText": "Видалити рядок", "DE.Views.DocumentHolder.deleteTableText": "Видалити таблицю", - "DE.Views.DocumentHolder.deleteText": "Видалити\n", + "DE.Views.DocumentHolder.deleteText": "Видалити", "DE.Views.DocumentHolder.direct270Text": "Повернути текст вгору", "DE.Views.DocumentHolder.direct90Text": "Повернути текст вниз", "DE.Views.DocumentHolder.directHText": "Горізонтальний", @@ -806,7 +806,7 @@ "DE.Views.DocumentHolder.textEditWrapBoundary": "Редагувати обтікання кордону", "DE.Views.DocumentHolder.textNextPage": "Наступна сторінка", "DE.Views.DocumentHolder.textPaste": "Вставити", - "DE.Views.DocumentHolder.textPrevPage": "Попередня сторінка\n", + "DE.Views.DocumentHolder.textPrevPage": "Попередня сторінка", "DE.Views.DocumentHolder.textShapeAlignBottom": "Вирівняти знизу", "DE.Views.DocumentHolder.textShapeAlignCenter": "Вирівняти центр", "DE.Views.DocumentHolder.textShapeAlignLeft": "Вирівняти зліва", @@ -859,8 +859,8 @@ "DE.Views.DocumentHolder.txtHideTopLimit": "Сховати верхню межу", "DE.Views.DocumentHolder.txtHideVer": "Сховати вертикальну лінію", "DE.Views.DocumentHolder.txtIncreaseArg": "Збільшити розмір аргументів", - "DE.Views.DocumentHolder.txtInFront": "Попереду\n", - "DE.Views.DocumentHolder.txtInline": "Вбудований\n", + "DE.Views.DocumentHolder.txtInFront": "Попереду", + "DE.Views.DocumentHolder.txtInline": "Вбудований", "DE.Views.DocumentHolder.txtInsertArgAfter": "Вставити аргумент після", "DE.Views.DocumentHolder.txtInsertArgBefore": "Вставити аргумент перед", "DE.Views.DocumentHolder.txtInsertBreak": "Вставити ручне переривання", @@ -907,7 +907,7 @@ "DE.Views.DropcapSettingsAdvanced.textAlign": "Вирівнювання", "DE.Views.DropcapSettingsAdvanced.textAtLeast": "принаймн", "DE.Views.DropcapSettingsAdvanced.textAuto": "Авто", - "DE.Views.DropcapSettingsAdvanced.textBackColor": "Колір фону\n", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "Колір фону", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Колір кордону", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Натисніть на діаграму або скористайтеся кнопками, щоб вибрати кордони", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Розмір кордону", @@ -1043,9 +1043,9 @@ "DE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки", "DE.Views.HyperlinkSettingsDialog.textTooltip": "Текст ScreenTip", "DE.Views.HyperlinkSettingsDialog.textUrl": "З'єднатися з", - "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим\n", + "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "DE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування\n", + "DE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.ImageSettings.textEdit": "Редагувати", "DE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", "DE.Views.ImageSettings.textFitMargins": "За розміром кордонів", @@ -1058,8 +1058,8 @@ "DE.Views.ImageSettings.textWidth": "Ширина", "DE.Views.ImageSettings.textWrap": "Стиль упаковки", "DE.Views.ImageSettings.txtBehind": "Позаду", - "DE.Views.ImageSettings.txtInFront": "Попереду\n", - "DE.Views.ImageSettings.txtInline": "Вбудований\n", + "DE.Views.ImageSettings.txtInFront": "Попереду", + "DE.Views.ImageSettings.txtInline": "Вбудований", "DE.Views.ImageSettings.txtSquare": "Площа", "DE.Views.ImageSettings.txtThrough": "Через", "DE.Views.ImageSettings.txtTight": "Тісно", @@ -1112,7 +1112,7 @@ "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Відносний", "DE.Views.ImageSettingsAdvanced.textRight": "Право", "DE.Views.ImageSettingsAdvanced.textRightMargin": "праве поле", - "DE.Views.ImageSettingsAdvanced.textRightOf": "праворуч від\n", + "DE.Views.ImageSettingsAdvanced.textRightOf": "праворуч від", "DE.Views.ImageSettingsAdvanced.textRound": "Круглий", "DE.Views.ImageSettingsAdvanced.textShape": "Параметри форми", "DE.Views.ImageSettingsAdvanced.textSize": "Розмір", @@ -1127,8 +1127,8 @@ "DE.Views.ImageSettingsAdvanced.textWidth": "Ширина", "DE.Views.ImageSettingsAdvanced.textWrap": "Стиль упаковки", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Позаду", - "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Попереду\n", - "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Вбудований\n", + "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Попереду", + "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "Вбудований", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Площа", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Через", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Тісно", @@ -1152,7 +1152,7 @@ "DE.Views.MailMergeEmailDlg.textFrom": "Від", "DE.Views.MailMergeEmailDlg.textHTML": "HTML", "DE.Views.MailMergeEmailDlg.textMessage": "Повідомлення", - "DE.Views.MailMergeEmailDlg.textSubject": "Тема рядка\n", + "DE.Views.MailMergeEmailDlg.textSubject": "Тема рядка", "DE.Views.MailMergeEmailDlg.textTitle": "Надіслати до пошти", "DE.Views.MailMergeEmailDlg.textTo": "до", "DE.Views.MailMergeEmailDlg.textWarning": "Увага!", @@ -1167,7 +1167,7 @@ "DE.Views.MailMergeSettings.textAddRecipients": "Спочатку додайте деяких одержувачів до списку ", "DE.Views.MailMergeSettings.textAll": "Усі записи", "DE.Views.MailMergeSettings.textCurrent": "Поточний запис", - "DE.Views.MailMergeSettings.textDataSource": "Джерело даних\n", + "DE.Views.MailMergeSettings.textDataSource": "Джерело даних", "DE.Views.MailMergeSettings.textDocx": "Docx", "DE.Views.MailMergeSettings.textDownload": "Скачати", "DE.Views.MailMergeSettings.textEditData": "Редагувати список одержувачів", @@ -1232,11 +1232,11 @@ "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Не додавайте інтервал між абзацами того ж стилю", "DE.Views.ParagraphSettings.strSpacingAfter": "після", "DE.Views.ParagraphSettings.strSpacingBefore": "Перед", - "DE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування\n", + "DE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.ParagraphSettings.textAt": "в", "DE.Views.ParagraphSettings.textAtLeast": "принаймні", "DE.Views.ParagraphSettings.textAuto": "Багаторазовий", - "DE.Views.ParagraphSettings.textBackColor": "Колір фону\n", + "DE.Views.ParagraphSettings.textBackColor": "Колір фону", "DE.Views.ParagraphSettings.textExact": "Точно", "DE.Views.ParagraphSettings.textNewColor": "Додати новий спеціальний колір", "DE.Views.ParagraphSettings.txtAutoText": "Авто", @@ -1263,7 +1263,7 @@ "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Надрядковий", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Вкладка", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Вирівнювання", - "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Колір фону\n", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Колір фону", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Колір кордону", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Клацніть по діаграмі або використовуйте кнопки, щоб вибрати кордони та застосувати до них вибраний стиль", "DE.Views.ParagraphSettingsAdvanced.textBorderWidth": "Розмір кордону", @@ -1302,7 +1302,7 @@ "DE.Views.RightMenu.txtShapeSettings": "Параметри форми", "DE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "DE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", - "DE.Views.ShapeSettings.strBackground": "Колір фону\n", + "DE.Views.ShapeSettings.strBackground": "Колір фону", "DE.Views.ShapeSettings.strChange": "Змінити автофігуру", "DE.Views.ShapeSettings.strColor": "Колір", "DE.Views.ShapeSettings.strFill": "Заповнити", @@ -1312,7 +1312,7 @@ "DE.Views.ShapeSettings.strStroke": "Штрих", "DE.Views.ShapeSettings.strTransparency": "Непрозорість", "DE.Views.ShapeSettings.strType": "Тип", - "DE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування\n", + "DE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", "DE.Views.ShapeSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "DE.Views.ShapeSettings.textColor": "Заповнити колір", "DE.Views.ShapeSettings.textDirection": "Напрямок", @@ -1341,8 +1341,8 @@ "DE.Views.ShapeSettings.txtGrain": "Крупинка", "DE.Views.ShapeSettings.txtGranite": "Граніт", "DE.Views.ShapeSettings.txtGreyPaper": "Сірий папер", - "DE.Views.ShapeSettings.txtInFront": "Попереду\n", - "DE.Views.ShapeSettings.txtInline": "Вбудований\n", + "DE.Views.ShapeSettings.txtInFront": "Попереду", + "DE.Views.ShapeSettings.txtInline": "Вбудований", "DE.Views.ShapeSettings.txtKnit": "В'язати", "DE.Views.ShapeSettings.txtLeather": "Шкіра", "DE.Views.ShapeSettings.txtNoBorders": "Немає лінії", @@ -1364,7 +1364,7 @@ "DE.Views.StyleTitleDialog.textHeader": "Створити новий стиль", "DE.Views.StyleTitleDialog.textNextStyle": "Наступний стиль абзацу", "DE.Views.StyleTitleDialog.textTitle": "Назва", - "DE.Views.StyleTitleDialog.txtEmpty": "Це поле є обов'язковим\n", + "DE.Views.StyleTitleDialog.txtEmpty": "Це поле є обов'язковим", "DE.Views.StyleTitleDialog.txtNotEmpty": "Поля не повинні бути пустими", "DE.Views.TableSettings.deleteColumnText": "Видалити колону", "DE.Views.TableSettings.deleteRowText": "Видалити рядок", @@ -1381,8 +1381,8 @@ "DE.Views.TableSettings.splitCellsText": "Розщеплені клітини...", "DE.Views.TableSettings.splitCellTitleText": "Розщеплені клітини", "DE.Views.TableSettings.strRepeatRow": "Повторити як рядок заголовка у верхній частині кожної сторінки", - "DE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування\n", - "DE.Views.TableSettings.textBackColor": "Колір фону\n", + "DE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування", + "DE.Views.TableSettings.textBackColor": "Колір фону", "DE.Views.TableSettings.textBanded": "У смужку", "DE.Views.TableSettings.textBorderColor": "Колір", "DE.Views.TableSettings.textBorders": "Стиль меж", @@ -1457,7 +1457,7 @@ "DE.Views.TableSettingsAdvanced.textPreview": "Попередній перегляд", "DE.Views.TableSettingsAdvanced.textRelative": "відносний до", "DE.Views.TableSettingsAdvanced.textRight": "Право", - "DE.Views.TableSettingsAdvanced.textRightOf": "праворуч від\n", + "DE.Views.TableSettingsAdvanced.textRightOf": "праворуч від", "DE.Views.TableSettingsAdvanced.textRightTooltip": "Право", "DE.Views.TableSettingsAdvanced.textTable": "Таблиця", "DE.Views.TableSettingsAdvanced.textTableBackColor": "Таблиця фону", diff --git a/apps/documenteditor/main/locale/zh.json b/apps/documenteditor/main/locale/zh.json index 33cd8df0d..89b707619 100644 --- a/apps/documenteditor/main/locale/zh.json +++ b/apps/documenteditor/main/locale/zh.json @@ -138,7 +138,7 @@ "Common.Views.ExternalDiagramEditor.textTitle": "图表编辑器", "Common.Views.ExternalMergeEditor.textClose": "关闭", "Common.Views.ExternalMergeEditor.textSave": "保存并退出", - "Common.Views.ExternalMergeEditor.textTitle": "邮件合并收件人\n", + "Common.Views.ExternalMergeEditor.textTitle": "邮件合并收件人", "Common.Views.Header.textBack": "转到文档", "Common.Views.Header.txtRename": "重命名", "Common.Views.History.textCloseHistory": "关闭历史记录", @@ -434,7 +434,7 @@ "DE.Controllers.Toolbar.txtIntegral_dx": "差分x", "DE.Controllers.Toolbar.txtIntegral_dy": "差分y", "DE.Controllers.Toolbar.txtIntegralCenterSubSup": "积分", - "DE.Controllers.Toolbar.txtIntegralDouble": "双积分\n", + "DE.Controllers.Toolbar.txtIntegralDouble": "双积分", "DE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "双积分", "DE.Controllers.Toolbar.txtIntegralDoubleSubSup": "双积分", "DE.Controllers.Toolbar.txtIntegralOriented": "轮廓积分", @@ -683,7 +683,7 @@ "DE.Views.DocumentHolder.chartText": "图表高级设置", "DE.Views.DocumentHolder.columnText": "列", "DE.Views.DocumentHolder.deleteColumnText": "删除列", - "DE.Views.DocumentHolder.deleteRowText": "删除行\n", + "DE.Views.DocumentHolder.deleteRowText": "删除行", "DE.Views.DocumentHolder.deleteTableText": "删除表", "DE.Views.DocumentHolder.deleteText": "删除", "DE.Views.DocumentHolder.direct270Text": "旋转270°", @@ -779,7 +779,7 @@ "DE.Views.DocumentHolder.txtFractionSkewed": "改为倾斜分数", "DE.Views.DocumentHolder.txtFractionStacked": "改为堆积分数", "DE.Views.DocumentHolder.txtGroup": "组", - "DE.Views.DocumentHolder.txtGroupCharOver": "字符在文字上\n", + "DE.Views.DocumentHolder.txtGroupCharOver": "字符在文字上", "DE.Views.DocumentHolder.txtGroupCharUnder": "文字下的Char", "DE.Views.DocumentHolder.txtHideBottom": "隐藏底部边框", "DE.Views.DocumentHolder.txtHideBottomLimit": "隐藏下限", @@ -821,7 +821,7 @@ "DE.Views.DocumentHolder.txtScriptsAfter": "文字后的脚本", "DE.Views.DocumentHolder.txtScriptsBefore": "文字前的脚本", "DE.Views.DocumentHolder.txtShowBottomLimit": "显示下限", - "DE.Views.DocumentHolder.txtShowCloseBracket": "显示关闭括号\n", + "DE.Views.DocumentHolder.txtShowCloseBracket": "显示关闭括号", "DE.Views.DocumentHolder.txtShowDegree": "显示学位", "DE.Views.DocumentHolder.txtShowOpenBracket": "显示开放支架", "DE.Views.DocumentHolder.txtShowPlaceholder": "显示占位符", @@ -1227,7 +1227,7 @@ "DE.Views.ParagraphSettingsAdvanced.tipNone": "设置无边框", "DE.Views.ParagraphSettingsAdvanced.tipOuter": "仅限外部边框", "DE.Views.ParagraphSettingsAdvanced.tipRight": "设置右边框", - "DE.Views.ParagraphSettingsAdvanced.tipTop": "仅限顶部边框\n", + "DE.Views.ParagraphSettingsAdvanced.tipTop": "仅限顶部边框", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "没有边界", "DE.Views.RightMenu.txtChartSettings": "图表设置", "DE.Views.RightMenu.txtHeaderFooterSettings": "页眉和页脚设置", @@ -1302,7 +1302,7 @@ "DE.Views.StyleTitleDialog.txtEmpty": "这是必填栏", "DE.Views.StyleTitleDialog.txtNotEmpty": "区域不能为空", "DE.Views.TableSettings.deleteColumnText": "删除列", - "DE.Views.TableSettings.deleteRowText": "删除行\n", + "DE.Views.TableSettings.deleteRowText": "删除行", "DE.Views.TableSettings.deleteTableText": "删除表", "DE.Views.TableSettings.insertColumnLeftText": "在左侧插入列", "DE.Views.TableSettings.insertColumnRightText": "向右侧插入列", diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json new file mode 100644 index 000000000..d86b7d904 --- /dev/null +++ b/apps/documenteditor/mobile/locale/pl.json @@ -0,0 +1,378 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", + "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "DE.Controllers.AddContainer.textImage": "Obraz", + "DE.Controllers.AddContainer.textOther": "Inny", + "DE.Controllers.AddContainer.textShape": "Kształt", + "DE.Controllers.AddContainer.textTable": "Tabela", + "DE.Controllers.AddImage.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "DE.Controllers.AddImage.txtNotUrl": "To pole powinno być w formacie URL np.: 'http://www.example.com'", + "DE.Controllers.AddOther.txtNotUrl": "To pole powinno być w formacie URL np.: 'http://www.example.com'", + "DE.Controllers.AddTable.textCancel": "Anuluj", + "DE.Controllers.AddTable.textColumns": "Kolumny", + "DE.Controllers.AddTable.textRows": "Wiersze", + "DE.Controllers.AddTable.textTableSize": "Rozmiar tabeli", + "DE.Controllers.DocumentHolder.menuAddLink": "Dodaj link", + "DE.Controllers.DocumentHolder.menuCopy": "Kopiuj", + "DE.Controllers.DocumentHolder.menuCut": "Wytnij", + "DE.Controllers.DocumentHolder.menuDelete": "Usuń", + "DE.Controllers.DocumentHolder.menuEdit": "Edytuj", + "DE.Controllers.DocumentHolder.menuMore": "Więcej", + "DE.Controllers.DocumentHolder.menuOpenLink": "Otwórz link", + "DE.Controllers.DocumentHolder.menuPaste": "Wklej", + "DE.Controllers.DocumentHolder.sheetCancel": "Anuluj", + "DE.Controllers.DocumentHolder.textGuest": "Gość", + "DE.Controllers.EditContainer.textChart": "Wykres", + "DE.Controllers.EditContainer.textHyperlink": "Hiperlink", + "DE.Controllers.EditContainer.textImage": "Obraz", + "DE.Controllers.EditContainer.textParagraph": "Akapit", + "DE.Controllers.EditContainer.textSettings": "Ustawienia", + "DE.Controllers.EditContainer.textShape": "Kształt", + "DE.Controllers.EditContainer.textTable": "Tabela", + "DE.Controllers.EditContainer.textText": "Tekst", + "DE.Controllers.EditImage.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "DE.Controllers.EditImage.txtNotUrl": "To pole powinno być w formacie URL np.: 'http://www.example.com'", + "DE.Controllers.EditText.textAuto": "Automatyczny", + "DE.Controllers.EditText.textFonts": "Czcionki", + "DE.Controllers.EditText.textPt": "pt", + "DE.Controllers.Main.advDRMEnterPassword": "Wprowadź swoje hasło:", + "DE.Controllers.Main.advDRMOptions": "Plik chroniony", + "DE.Controllers.Main.advDRMPassword": "Hasło", + "DE.Controllers.Main.advTxtOptions": "Wybierz opcje TXT", + "DE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", + "DE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", + "DE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", + "DE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.", + "DE.Controllers.Main.criticalErrorTitle": "Błąd", + "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor dokumentów", + "DE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", + "DE.Controllers.Main.downloadMergeText": "Pobieranie...", + "DE.Controllers.Main.downloadMergeTitle": "Pobieranie", + "DE.Controllers.Main.downloadTextText": "Pobieranie dokumentu...", + "DE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu", + "DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie możesz już edytować.", + "DE.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.

Dowiedz się więcej o połączeniu serwera dokumentów tutaj", + "DE.Controllers.Main.errorDatabaseConnection": "Zewnętrzny błąd.
Błąd połączenia z bazą danych. Proszę skontaktuj się z administratorem.", + "DE.Controllers.Main.errorDataRange": "Błędny zakres danych.", + "DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "DE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem.", + "DE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", + "DE.Controllers.Main.errorKeyExpire": "Wyszedł kluczowy deskryptor", + "DE.Controllers.Main.errorMailMergeLoadFile": "Wczytywanie nie powiodło się", + "DE.Controllers.Main.errorMailMergeSaveFile": "Nie udało się scalić.", + "DE.Controllers.Main.errorProcessSaveResult": "Zapisywanie nie powiodło się.", + "DE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", + "DE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "DE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", + "DE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", + "DE.Controllers.Main.errorUsersExceed": "Liczba użytkowników została przekroczona.", + "DE.Controllers.Main.errorViewerDisconnect": "Połączenie zostało utracone. Nadal możesz przeglądać dokument,
ale nie będzie mógł go pobrać do momentu przywrócenia połączenia.", + "DE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "DE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", + "DE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", + "DE.Controllers.Main.loadFontTextText": "Ładowanie danych...", + "DE.Controllers.Main.loadFontTitleText": "Ładowanie danych", + "DE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", + "DE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", + "DE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", + "DE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", + "DE.Controllers.Main.loadingDocumentTextText": "Ładowanie dokumentu...", + "DE.Controllers.Main.loadingDocumentTitleText": "Ładowanie dokumentu", + "DE.Controllers.Main.mailMergeLoadFileText": "Ładowanie źródła danych", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Ładowanie źródła danych", + "DE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", + "DE.Controllers.Main.openTextText": "Otwieranie dokumentu...", + "DE.Controllers.Main.openTitleText": "Otwieranie dokumentu", + "DE.Controllers.Main.printTextText": "Drukowanie dokumentu...", + "DE.Controllers.Main.printTitleText": "Drukowanie dokumentu", + "DE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliku", + "DE.Controllers.Main.savePreparingText": "Przygotowywanie do zapisu", + "DE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", + "DE.Controllers.Main.saveTextText": "Zapisywanie dokumentu...", + "DE.Controllers.Main.saveTitleText": "Zapisywanie dokumentu", + "DE.Controllers.Main.sendMergeText": "Wysyłanie korespondencji seryjnej...", + "DE.Controllers.Main.sendMergeTitle": "Wysyłanie korespondencji seryjnej...", + "DE.Controllers.Main.splitDividerErrorText": "Liczba wierszy musi być dzielnikiem %1", + "DE.Controllers.Main.splitMaxColsErrorText": "Liczba kolumn musi być mniejsza niż %1", + "DE.Controllers.Main.splitMaxRowsErrorText": "Liczba wierszy musi być mniejsza niż %1", + "DE.Controllers.Main.textAnonymous": "Gość", + "DE.Controllers.Main.textBack": "Powrót", + "DE.Controllers.Main.textBuyNow": "Odwiedź stronę web", + "DE.Controllers.Main.textCancel": "Anuluj", + "DE.Controllers.Main.textClose": "Zamknij", + "DE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "DE.Controllers.Main.textDone": "Gotowe", + "DE.Controllers.Main.textLoadingDocument": "Ładowanie dokumentu", + "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", + "DE.Controllers.Main.textOK": "OK", + "DE.Controllers.Main.textPassword": "Hasło", + "DE.Controllers.Main.textPreloader": "Ładowanie...", + "DE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie Szybkim współtworzenia.", + "DE.Controllers.Main.textUsername": "Nazwa użytkownika", + "DE.Controllers.Main.titleLicenseExp": "Licencja wygasła", + "DE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "DE.Controllers.Main.titleUpdateVersion": "Wersja uległa zmianie", + "DE.Controllers.Main.txtArt": "Twój tekst tutaj", + "DE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", + "DE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", + "DE.Controllers.Main.txtSeries": "Serie", + "DE.Controllers.Main.txtStyle_Heading_1": "Nagłówek 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Nagłówek 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Nagłówek 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Nagłówek 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Nagłówek 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Nagłówek 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Nagłówek 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Nagłówek 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Nagłówek 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Intensywny cytat", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Lista akapitów", + "DE.Controllers.Main.txtStyle_No_Spacing": "Brak przerw", + "DE.Controllers.Main.txtStyle_Normal": "Normalny", + "DE.Controllers.Main.txtStyle_Quote": "Cytuj", + "DE.Controllers.Main.txtStyle_Subtitle": "Podtytuł", + "DE.Controllers.Main.txtStyle_Title": "Tytuł", + "DE.Controllers.Main.txtXAxis": "Oś X", + "DE.Controllers.Main.txtYAxis": "Oś Y", + "DE.Controllers.Main.unknownErrorText": "Nieznany błąd.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", + "DE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", + "DE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu został przekroczony.", + "DE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", + "DE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", + "DE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "DE.Controllers.Main.warnNoLicense": "Używasz wersji ONLYOFFICE 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.", + "DE.Controllers.Main.warnProcessRightsChange": "Nie masz uprawnień do edycji tego pliku.", + "DE.Controllers.Search.textNoTextFound": "Nie znaleziono tekstu", + "DE.Controllers.Search.textReplaceAll": "Zamień wszystko", + "DE.Controllers.Settings.notcriticalErrorTitle": "Ostrzeżenie", + "DE.Controllers.Settings.txtLoading": "Ładowanie...", + "DE.Controllers.Settings.unknownText": "Nieznany", + "DE.Controllers.Settings.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
Czy na pewno chcesz kontynuować?", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "DE.Controllers.Toolbar.dlgLeaveTitleText": "Opuszczasz aplikację", + "DE.Controllers.Toolbar.leaveButtonText": "Zostaw tę stronę", + "DE.Controllers.Toolbar.stayButtonText": "Zostań na tej stronie", + "DE.Views.AddImage.textAddress": "Adres", + "DE.Views.AddImage.textBack": "Powrót", + "DE.Views.AddImage.textFromLibrary": "Obraz z biblioteki", + "DE.Views.AddImage.textFromURL": "Obraz z URL", + "DE.Views.AddImage.textImageURL": "Adres URL obrazu", + "DE.Views.AddImage.textInsertImage": "Wstaw obraz", + "DE.Views.AddImage.textLinkSettings": "Ustawienia linku", + "DE.Views.AddOther.textAddLink": "Dodaj link", + "DE.Views.AddOther.textBack": "Powrót", + "DE.Views.AddOther.textCenterBottom": "Centrum dolne", + "DE.Views.AddOther.textCenterTop": "Centrum górne", + "DE.Views.AddOther.textColumnBreak": "Przerwy kolumnowe", + "DE.Views.AddOther.textContPage": "Ciągła strona", + "DE.Views.AddOther.textCurrentPos": "Aktualna pozycja", + "DE.Views.AddOther.textDisplay": "Pokaż", + "DE.Views.AddOther.textEvenPage": "Z parzystej strony", + "DE.Views.AddOther.textInsert": "Wstawić", + "DE.Views.AddOther.textLeftBottom": "Lewy dolny", + "DE.Views.AddOther.textLeftTop": "Lewy górny", + "DE.Views.AddOther.textLink": "Link", + "DE.Views.AddOther.textNextPage": "Następna strona", + "DE.Views.AddOther.textOddPage": "Nieparzysta strona", + "DE.Views.AddOther.textPageBreak": "Przerwanie strony", + "DE.Views.AddOther.textPageNumber": "Numer strony", + "DE.Views.AddOther.textPosition": "Pozycja", + "DE.Views.AddOther.textRightBottom": "Prawy dolny", + "DE.Views.AddOther.textRightTop": "Prawy górny", + "DE.Views.AddOther.textSectionBreak": "Przerwanie sekcji", + "DE.Views.AddOther.textTip": "Wskazówka", + "DE.Views.EditChart.textAlign": "Wyrównaj", + "DE.Views.EditChart.textBack": "Powrót", + "DE.Views.EditChart.textBackward": "Przenieś do tyłu", + "DE.Views.EditChart.textBehind": "Za", + "DE.Views.EditChart.textBorder": "Obramowanie", + "DE.Views.EditChart.textColor": "Kolor", + "DE.Views.EditChart.textDistanceText": "Odległość od tekstu", + "DE.Views.EditChart.textFill": "Wypełnij", + "DE.Views.EditChart.textForward": "Przenieś do przodu", + "DE.Views.EditChart.textInFront": "Z przodu", + "DE.Views.EditChart.textInline": "W tekście", + "DE.Views.EditChart.textMoveText": "Poruszaj się z tekstem", + "DE.Views.EditChart.textOverlap": "Zezwól na nakładanie się", + "DE.Views.EditChart.textRemoveChart": "Usuń wykres", + "DE.Views.EditChart.textReorder": "Zmień kolejność", + "DE.Views.EditChart.textSize": "Rozmiar", + "DE.Views.EditChart.textSquare": "Kwadratowy", + "DE.Views.EditChart.textStyle": "Styl", + "DE.Views.EditChart.textThrough": "Przez", + "DE.Views.EditChart.textTight": "Mocno", + "DE.Views.EditChart.textToBackground": "Wyślij do tła", + "DE.Views.EditChart.textToForeground": "Idź na pierwszy plan", + "DE.Views.EditChart.textTopBottom": "Góra i dół", + "DE.Views.EditChart.textType": "Typ", + "DE.Views.EditChart.textWrap": "Zawijaj", + "DE.Views.EditHyperlink.textDisplay": "Pokaż", + "DE.Views.EditHyperlink.textEdit": "Edytuj link", + "DE.Views.EditHyperlink.textLink": "Link", + "DE.Views.EditHyperlink.textRemove": "Usuń link", + "DE.Views.EditHyperlink.textTip": "Wskazówka", + "DE.Views.EditImage.textAddress": "Adres", + "DE.Views.EditImage.textAlign": "Wyrównaj", + "DE.Views.EditImage.textBack": "Powrót", + "DE.Views.EditImage.textBackward": "Przenieś do tyłu", + "DE.Views.EditImage.textBehind": "Za", + "DE.Views.EditImage.textDefault": "Domyślny rozmiar", + "DE.Views.EditImage.textDistanceText": "Odległość od tekstu", + "DE.Views.EditImage.textForward": "Przenieś do przodu", + "DE.Views.EditImage.textFromLibrary": "Obraz z biblioteki", + "DE.Views.EditImage.textFromURL": "Obraz z URL", + "DE.Views.EditImage.textImageURL": "Adres URL obrazu", + "DE.Views.EditImage.textInFront": "Z przodu", + "DE.Views.EditImage.textInline": "W tekście", + "DE.Views.EditImage.textLinkSettings": "Ustawienia linku", + "DE.Views.EditImage.textMoveText": "Poruszaj się z tekstem", + "DE.Views.EditImage.textOverlap": "Zezwól na nakładanie się", + "DE.Views.EditImage.textRemove": "Usuń obraz", + "DE.Views.EditImage.textReorder": "Zmień kolejność", + "DE.Views.EditImage.textReplace": "Zamień", + "DE.Views.EditImage.textReplaceImg": "Zamień obraz", + "DE.Views.EditImage.textSquare": "Kwadratowy", + "DE.Views.EditImage.textThrough": "Przez", + "DE.Views.EditImage.textTight": "Mocno", + "DE.Views.EditImage.textToBackground": "Wyślij do tła", + "DE.Views.EditImage.textToForeground": "Idź na pierwszy plan", + "DE.Views.EditImage.textTopBottom": "Góra i dół", + "DE.Views.EditImage.textWrap": "Zawijaj", + "DE.Views.EditParagraph.textAdvanced": "Zaawansowane", + "DE.Views.EditParagraph.textAdvSettings": "Ustawienia zaawansowane", + "DE.Views.EditParagraph.textAfter": "Po", + "DE.Views.EditParagraph.textAuto": "Automatyczny", + "DE.Views.EditParagraph.textBack": "Powrót", + "DE.Views.EditParagraph.textBackground": "Tło", + "DE.Views.EditParagraph.textBefore": "Przed", + "DE.Views.EditParagraph.textFromText": "Odległość od tekstu", + "DE.Views.EditParagraph.textKeepLines": "Trzymaj wiersze razem", + "DE.Views.EditParagraph.textKeepNext": "Trzymaj dalej", + "DE.Views.EditParagraph.textOrphan": "Orphan Control", + "DE.Views.EditParagraph.textPageBreak": "Przerwanie strony przed", + "DE.Views.EditParagraph.textPrgStyles": "Style akapitu", + "DE.Views.EditParagraph.textSpaceBetween": "Odstęp między akapitami", + "DE.Views.EditShape.textAlign": "Wyrównaj", + "DE.Views.EditShape.textBack": "Powrót", + "DE.Views.EditShape.textBackward": "Przenieś do tyłu", + "DE.Views.EditShape.textBehind": "Za", + "DE.Views.EditShape.textBorder": "Obramowanie", + "DE.Views.EditShape.textColor": "Kolor", + "DE.Views.EditShape.textEffects": "Efekty", + "DE.Views.EditShape.textFill": "Wypełnij", + "DE.Views.EditShape.textForward": "Przenieś do przodu", + "DE.Views.EditShape.textFromText": "Odległość od tekstu", + "DE.Views.EditShape.textInFront": "Z przodu", + "DE.Views.EditShape.textInline": "W tekście", + "DE.Views.EditShape.textOpacity": "Nieprzezroczystość", + "DE.Views.EditShape.textOverlap": "Zezwól na nakładanie się", + "DE.Views.EditShape.textRemoveShape": "Usuń kształt", + "DE.Views.EditShape.textReorder": "Zmień kolejność", + "DE.Views.EditShape.textReplace": "Zamień", + "DE.Views.EditShape.textSize": "Rozmiar", + "DE.Views.EditShape.textSquare": "Kwadratowy", + "DE.Views.EditShape.textStyle": "Styl", + "DE.Views.EditShape.textThrough": "Przez", + "DE.Views.EditShape.textTight": "Mocno", + "DE.Views.EditShape.textToBackground": "Wyślij do tła", + "DE.Views.EditShape.textToForeground": "Idź na pierwszy plan", + "DE.Views.EditShape.textTopAndBottom": "Góra i dół", + "DE.Views.EditShape.textWithText": "Poruszaj się z tekstem", + "DE.Views.EditShape.textWrap": "Zawijaj", + "DE.Views.EditTable.textAlign": "Wyrównaj", + "DE.Views.EditTable.textBack": "Powrót", + "DE.Views.EditTable.textBandedColumn": "Kolumna w paski", + "DE.Views.EditTable.textBandedRow": "Na przemian wiersze", + "DE.Views.EditTable.textBorder": "Obramowanie", + "DE.Views.EditTable.textCellMargins": "Marginesy komórki", + "DE.Views.EditTable.textColor": "Kolor", + "DE.Views.EditTable.textFill": "Wypełnij", + "DE.Views.EditTable.textFirstColumn": "Pierwsza kolumna", + "DE.Views.EditTable.textFlow": "Przepływ", + "DE.Views.EditTable.textFromText": "Odległość od tekstu", + "DE.Views.EditTable.textHeaderRow": "Wiersz nagłówka", + "DE.Views.EditTable.textInline": "W tekście", + "DE.Views.EditTable.textLastColumn": "Ostatnia kolumna", + "DE.Views.EditTable.textOptions": "Opcje", + "DE.Views.EditTable.textRemoveTable": "Usuń tabelę", + "DE.Views.EditTable.textRepeatHeader": "Powtórz jako wiersz nagłówka", + "DE.Views.EditTable.textResizeFit": "Dostosuj rozmiar do zawartości", + "DE.Views.EditTable.textSize": "Rozmiar", + "DE.Views.EditTable.textStyle": "Styl", + "DE.Views.EditTable.textStyleOptions": "Opcje stylu", + "DE.Views.EditTable.textTableOptions": "Opcje tabeli", + "DE.Views.EditTable.textTotalRow": "Cały wiersz", + "DE.Views.EditTable.textWithText": "Poruszaj się z tekstem", + "DE.Views.EditTable.textWrap": "Zawijaj", + "DE.Views.EditText.textAdditional": "Inne funkcje", + "DE.Views.EditText.textAdditionalFormat": "Dodatkowe formatowanie", + "DE.Views.EditText.textAllCaps": "Wszystkie duże litery", + "DE.Views.EditText.textAutomatic": "Automatyczny", + "DE.Views.EditText.textBack": "Powrót", + "DE.Views.EditText.textBullets": "Lista punktowa", + "DE.Views.EditText.textDblStrikethrough": "Podwójne przekreślenie", + "DE.Views.EditText.textDblSuperscript": "Indeks górny", + "DE.Views.EditText.textFontColor": "Kolor czcionki", + "DE.Views.EditText.textFontColors": "Kolory czcionki", + "DE.Views.EditText.textFonts": "Czcionki", + "DE.Views.EditText.textHighlightColor": "Kolor podświetlenia", + "DE.Views.EditText.textHighlightColors": "Kolory podświetlenia", + "DE.Views.EditText.textLetterSpacing": "Odstęp między literami", + "DE.Views.EditText.textLineSpacing": "Rozstaw wierszy", + "DE.Views.EditText.textNone": "żaden", + "DE.Views.EditText.textNumbers": "Liczby", + "DE.Views.EditText.textSize": "Rozmiar", + "DE.Views.EditText.textSmallCaps": "Małe litery", + "DE.Views.EditText.textStrikethrough": "Przekreślony", + "DE.Views.EditText.textSubscript": "Indeks", + "DE.Views.Search.textCase": "Rozróżniana wielkość liter", + "DE.Views.Search.textDone": "Gotowe", + "DE.Views.Search.textFind": "Znajdź", + "DE.Views.Search.textFindAndReplace": "Znajdź i zamień", + "DE.Views.Search.textHighlight": "Podświetl wyniki", + "DE.Views.Search.textReplace": "Zamień", + "DE.Views.Search.textSearch": "Szukaj", + "DE.Views.Settings.textAbout": "O", + "DE.Views.Settings.textAddress": "Adres", + "DE.Views.Settings.textAuthor": "Autor", + "DE.Views.Settings.textBack": "Powrót", + "DE.Views.Settings.textCreateDate": "Data utworzenia", + "DE.Views.Settings.textCustom": "Niestandardowy", + "DE.Views.Settings.textCustomSize": "Rozmiar niestandardowy", + "DE.Views.Settings.textDocInfo": "Informacje o dokumencie", + "DE.Views.Settings.textDocTitle": "Tytuł dokumentu", + "DE.Views.Settings.textDocumentFormats": "Formaty dokumentu", + "DE.Views.Settings.textDocumentSettings": "Ustawienia dokumentu", + "DE.Views.Settings.textDone": "Gotowe", + "DE.Views.Settings.textDownload": "Pobierz", + "DE.Views.Settings.textDownloadAs": "Pobierz jako...", + "DE.Views.Settings.textEditDoc": "Edytuj dokument", + "DE.Views.Settings.textEmail": "E-mail", + "DE.Views.Settings.textFind": "Znajdź", + "DE.Views.Settings.textFindAndReplace": "Znajdź i zamień", + "DE.Views.Settings.textFormat": "Formatowanie", + "DE.Views.Settings.textHelp": "Pomoc", + "DE.Views.Settings.textLandscape": "Krajobraz", + "DE.Views.Settings.textLoading": "Ładowanie...", + "DE.Views.Settings.textOrientation": "Orientacja", + "DE.Views.Settings.textPages": "Strony", + "DE.Views.Settings.textParagraphs": "Akapity", + "DE.Views.Settings.textPortrait": "Portret", + "DE.Views.Settings.textPoweredBy": "zasilany przez", + "DE.Views.Settings.textReader": "Tryb czytnika", + "DE.Views.Settings.textSettings": "Ustawienia", + "DE.Views.Settings.textSpaces": "Przestrzenie", + "DE.Views.Settings.textStatistic": "Statystyczny", + "DE.Views.Settings.textSymbols": "Symbole", + "DE.Views.Settings.textTel": "tel", + "DE.Views.Settings.textVersion": "Wersja", + "DE.Views.Settings.textWords": "Słowa", + "DE.Views.Settings.unknownText": "Nieznany", + "DE.Views.Toolbar.textBack": "Powrót" +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index a1c82e804..7667d2cb7 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -20,7 +20,7 @@ "DE.Controllers.DocumentHolder.menuDelete": "Vymazať", "DE.Controllers.DocumentHolder.menuEdit": "Upraviť", "DE.Controllers.DocumentHolder.menuMore": "Viac", - "DE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz\n\n", + "DE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz", "DE.Controllers.DocumentHolder.menuPaste": "Vložiť", "DE.Controllers.DocumentHolder.sheetCancel": "Zrušiť", "DE.Controllers.DocumentHolder.textGuest": "Návštevník", @@ -40,11 +40,11 @@ "DE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:", "DE.Controllers.Main.advDRMOptions": "Chránený súbor", "DE.Controllers.Main.advDRMPassword": "Heslo", - "DE.Controllers.Main.advTxtOptions": "Vybrať možnosti TXT\n\n", + "DE.Controllers.Main.advTxtOptions": "Vybrať možnosti TXT", "DE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", "DE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", - "DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n", - "DE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.\n\n", + "DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", + "DE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.", "DE.Controllers.Main.criticalErrorTitle": "Chyba", "DE.Controllers.Main.defaultTitleText": "Dokumentový editor ONLYOFFICE ", "DE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", @@ -53,24 +53,24 @@ "DE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", "DE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", "DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.\n\n", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.", "DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Skontrolujte nastavenia pripojenia alebo sa obráťte na správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na stiahnutie dokumentu.

Viac informácií o pripojení dokumentového servera tu", "DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Obráťte sa prosím na podporu.", - "DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n", + "DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.\n\n", - "DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n", - "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n", + "DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.", + "DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "DE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo", "DE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", "DE.Controllers.Main.errorProcessSaveResult": "Uloženie zlyhalo.", - "DE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n", - "DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", - "DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n", - "DE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n", - "DE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený\n\n", - "DE.Controllers.Main.errorViewerDisconnect": "Spojenie sa stratilo. Dokument môžete zobraziť,
ale nebude možné ho prevziať, kým sa obnoví spojenie.\n\n", - "DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n", + "DE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "DE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "DE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený", + "DE.Controllers.Main.errorViewerDisconnect": "Spojenie sa stratilo. Dokument môžete zobraziť,
ale nebude možné ho prevziať, kým sa obnoví spojenie.", + "DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", "DE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "DE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "DE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -78,11 +78,11 @@ "DE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", "DE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "DE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "DE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n", + "DE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", "DE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...", "DE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu", - "DE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...\n\n", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov\n\n", + "DE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov", "DE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", "DE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", "DE.Controllers.Main.openTextText": "Otváranie dokumentu...", @@ -90,35 +90,35 @@ "DE.Controllers.Main.printTextText": "Tlač dokumentu...", "DE.Controllers.Main.printTitleText": "Tlač dokumentu", "DE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "DE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n", - "DE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n", + "DE.Controllers.Main.savePreparingText": "Príprava na uloženie", + "DE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", "DE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", "DE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", - "DE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...\n\n", - "DE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia\n\n", - "DE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom 1%\n\n", - "DE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako 1%\n\n", - "DE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako 1%\n\n\n\n", + "DE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...", + "DE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia", + "DE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom 1%", + "DE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako 1%", + "DE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako 1%", "DE.Controllers.Main.textAnonymous": "Anonymný", "DE.Controllers.Main.textBack": "Späť", "DE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "DE.Controllers.Main.textCancel": "Zrušiť", "DE.Controllers.Main.textClose": "Zatvoriť", - "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n", + "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu", "DE.Controllers.Main.textDone": "Hotovo", "DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n", + "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom", "DE.Controllers.Main.textOK": "OK", "DE.Controllers.Main.textPassword": "Heslo", "DE.Controllers.Main.textPreloader": "Nahrávanie...", "DE.Controllers.Main.textTryUndoRedo": "Funkcie späť/opakovať sú pre rýchly spolu-editačný režim vypnuté.", "DE.Controllers.Main.textUsername": "Užívateľské meno", - "DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n", - "DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n", - "DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená\n\n", + "DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", + "DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", + "DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", "DE.Controllers.Main.txtArt": "Váš text tu", "DE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n", + "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", "DE.Controllers.Main.txtSeries": "Rady", "DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", "DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", @@ -130,46 +130,46 @@ "DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8", "DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9", "DE.Controllers.Main.txtStyle_Intense_Quote": "Zvýraznená citácia", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Odsek zoznamu\n\n", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Odsek zoznamu", "DE.Controllers.Main.txtStyle_No_Spacing": "Bez riadkovania", "DE.Controllers.Main.txtStyle_Normal": "Normálny", - "DE.Controllers.Main.txtStyle_Quote": "Citácia\n", + "DE.Controllers.Main.txtStyle_Quote": "Citácia", "DE.Controllers.Main.txtStyle_Subtitle": "Podtitul", "DE.Controllers.Main.txtStyle_Title": "Názov", - "DE.Controllers.Main.txtXAxis": "Os X\n\n", - "DE.Controllers.Main.txtYAxis": "Os Y\n\n", + "DE.Controllers.Main.txtXAxis": "Os X", + "DE.Controllers.Main.txtYAxis": "Os Y", "DE.Controllers.Main.unknownErrorText": "Neznáma chyba.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.\n\n", - "DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n", - "DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", + "DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", "DE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.", "DE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "DE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n", - "DE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n", + "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "DE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.", "DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "DE.Controllers.Search.textNoTextFound": "Text nebol nájdený", "DE.Controllers.Search.textReplaceAll": "Nahradiť všetko", "DE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie", "DE.Controllers.Settings.txtLoading": "Nahrávanie...", "DE.Controllers.Settings.unknownText": "Neznámy", - "DE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?\n\n", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n", + "DE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", "DE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu", "DE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku", - "DE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke\n\n", + "DE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke", "DE.Views.AddImage.textAddress": "Adresa", "DE.Views.AddImage.textBack": "Späť", "DE.Views.AddImage.textFromLibrary": "Obrázok z Knižnice", "DE.Views.AddImage.textFromURL": "Obrázok z URL adresy", "DE.Views.AddImage.textImageURL": "URL obrázka", "DE.Views.AddImage.textInsertImage": "Vložiť obrázok", - "DE.Views.AddImage.textLinkSettings": "Nastavenia odkazu\n\n", + "DE.Views.AddImage.textLinkSettings": "Nastavenia odkazu", "DE.Views.AddOther.textAddLink": "Pridať odkaz", "DE.Views.AddOther.textBack": "Späť", "DE.Views.AddOther.textCenterBottom": "Dole uprostred", "DE.Views.AddOther.textCenterTop": "Hore uprostred", - "DE.Views.AddOther.textColumnBreak": "Príznak nového stĺpca\n", + "DE.Views.AddOther.textColumnBreak": "Príznak nového stĺpca", "DE.Views.AddOther.textContPage": "Súvislá/neprerušovaná strana", "DE.Views.AddOther.textCurrentPos": "Aktuálna pozícia", "DE.Views.AddOther.textDisplay": "Zobraziť", @@ -180,11 +180,11 @@ "DE.Views.AddOther.textLink": "Odkaz", "DE.Views.AddOther.textNextPage": "Ďalšia stránka", "DE.Views.AddOther.textOddPage": "Nepárna strana", - "DE.Views.AddOther.textPageBreak": "Oddeľovač stránky/zlom strany\n\n\n", - "DE.Views.AddOther.textPageNumber": "Číslo strany\n\n", + "DE.Views.AddOther.textPageBreak": "Oddeľovač stránky/zlom strany", + "DE.Views.AddOther.textPageNumber": "Číslo strany", "DE.Views.AddOther.textPosition": "Pozícia", - "DE.Views.AddOther.textRightBottom": "Vpravo dole\n\n", - "DE.Views.AddOther.textRightTop": "Vpravo hore\n\n", + "DE.Views.AddOther.textRightBottom": "Vpravo dole", + "DE.Views.AddOther.textRightTop": "Vpravo hore", "DE.Views.AddOther.textSectionBreak": "Koniec odseku", "DE.Views.AddOther.textTip": "Nápoveda", "DE.Views.EditChart.textAlign": "Zarovnať", @@ -198,10 +198,10 @@ "DE.Views.EditChart.textForward": "Posunúť vpred", "DE.Views.EditChart.textInFront": "vpredu", "DE.Views.EditChart.textInline": "Zarovno s textom", - "DE.Views.EditChart.textMoveText": "Presunúť s textom\n\n", + "DE.Views.EditChart.textMoveText": "Presunúť s textom", "DE.Views.EditChart.textOverlap": "Povoliť prekrývanie", "DE.Views.EditChart.textRemoveChart": "Odstrániť graf", - "DE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "DE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia", "DE.Views.EditChart.textSize": "Veľkosť", "DE.Views.EditChart.textSquare": "Štvorec", "DE.Views.EditChart.textStyle": "Štýl", @@ -230,11 +230,11 @@ "DE.Views.EditImage.textImageURL": "URL obrázka", "DE.Views.EditImage.textInFront": "vpredu", "DE.Views.EditImage.textInline": "Zarovno s textom", - "DE.Views.EditImage.textLinkSettings": "Nastavenia odkazu\n\n", - "DE.Views.EditImage.textMoveText": "Presunúť s textom\n\n", + "DE.Views.EditImage.textLinkSettings": "Nastavenia odkazu", + "DE.Views.EditImage.textMoveText": "Presunúť s textom", "DE.Views.EditImage.textOverlap": "Povoliť prekrývanie", "DE.Views.EditImage.textRemove": "Odstrániť obrázok", - "DE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "DE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia", "DE.Views.EditImage.textReplace": "Nahradiť", "DE.Views.EditImage.textReplaceImg": "Nahradiť obrázok", "DE.Views.EditImage.textSquare": "Štvorec", @@ -256,8 +256,8 @@ "DE.Views.EditParagraph.textKeepNext": "Zviazať s nasledujúcim", "DE.Views.EditParagraph.textOrphan": "Kontrola osamotených riadkov", "DE.Views.EditParagraph.textPageBreak": "Zlom strany pred", - "DE.Views.EditParagraph.textPrgStyles": "Štýly odsekov\n\n", - "DE.Views.EditParagraph.textSpaceBetween": "Medzera medzi odsekmi\n\n", + "DE.Views.EditParagraph.textPrgStyles": "Štýly odsekov", + "DE.Views.EditParagraph.textSpaceBetween": "Medzera medzi odsekmi", "DE.Views.EditShape.textAlign": "Zarovnať", "DE.Views.EditShape.textBack": "Späť", "DE.Views.EditShape.textBackward": "Posunúť späť", @@ -273,7 +273,7 @@ "DE.Views.EditShape.textOpacity": "Priehľadnosť", "DE.Views.EditShape.textOverlap": "Povoliť prekrývanie", "DE.Views.EditShape.textRemoveShape": "Odstrániť tvar", - "DE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "DE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia", "DE.Views.EditShape.textReplace": "Nahradiť", "DE.Views.EditShape.textSize": "Veľkosť", "DE.Views.EditShape.textSquare": "Štvorec", @@ -283,11 +283,11 @@ "DE.Views.EditShape.textToBackground": "Presunúť do pozadia", "DE.Views.EditShape.textToForeground": "Premiestniť do popredia", "DE.Views.EditShape.textTopAndBottom": "Hore a dole", - "DE.Views.EditShape.textWithText": "Presunúť s textom\n\n", + "DE.Views.EditShape.textWithText": "Presunúť s textom", "DE.Views.EditShape.textWrap": "Zabaliť", "DE.Views.EditTable.textAlign": "Zarovnať", "DE.Views.EditTable.textBack": "Späť", - "DE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec\n\n", + "DE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec", "DE.Views.EditTable.textBandedRow": "Pruhovaný riadok", "DE.Views.EditTable.textBorder": "Orámovanie", "DE.Views.EditTable.textCellMargins": "Okraje bunky", @@ -298,25 +298,25 @@ "DE.Views.EditTable.textFromText": "Vzdialenosť od textu", "DE.Views.EditTable.textHeaderRow": "Riadok hlavičky", "DE.Views.EditTable.textInline": "Zarovno s textom", - "DE.Views.EditTable.textLastColumn": "Posledný stĺpec\n\n", + "DE.Views.EditTable.textLastColumn": "Posledný stĺpec", "DE.Views.EditTable.textOptions": "Možnosti", "DE.Views.EditTable.textRemoveTable": "Odstrániť tabuľku", - "DE.Views.EditTable.textRepeatHeader": "Opakovať ako riadok záhlavia\n\n", - "DE.Views.EditTable.textResizeFit": "Zmeniť veľkosť na prispôsobenie obsahu\n\n", + "DE.Views.EditTable.textRepeatHeader": "Opakovať ako riadok záhlavia", + "DE.Views.EditTable.textResizeFit": "Zmeniť veľkosť na prispôsobenie obsahu", "DE.Views.EditTable.textSize": "Veľkosť", "DE.Views.EditTable.textStyle": "Štýl", - "DE.Views.EditTable.textStyleOptions": "Možnosti štýlu\n\n", + "DE.Views.EditTable.textStyleOptions": "Možnosti štýlu", "DE.Views.EditTable.textTableOptions": "Možnosti tabuľky", - "DE.Views.EditTable.textTotalRow": "Celkový riadok\n\n", - "DE.Views.EditTable.textWithText": "Presunúť s textom\n\n", + "DE.Views.EditTable.textTotalRow": "Celkový riadok", + "DE.Views.EditTable.textWithText": "Presunúť s textom", "DE.Views.EditTable.textWrap": "Zabaliť", "DE.Views.EditText.textAdditional": "Ďalšie", - "DE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie\n\n", + "DE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie", "DE.Views.EditText.textAllCaps": "Všetko veľkým", "DE.Views.EditText.textAutomatic": "Automaticky", "DE.Views.EditText.textBack": "Späť", "DE.Views.EditText.textBullets": "Odrážky", - "DE.Views.EditText.textDblStrikethrough": "Dvojité preškrtnutie\n\n", + "DE.Views.EditText.textDblStrikethrough": "Dvojité preškrtnutie", "DE.Views.EditText.textDblSuperscript": "Horný index", "DE.Views.EditText.textFontColor": "Farba písma", "DE.Views.EditText.textFontColors": "Farby písma", diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json new file mode 100644 index 000000000..9cf7aec0b --- /dev/null +++ b/apps/documenteditor/mobile/locale/tr.json @@ -0,0 +1,378 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", + "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "DE.Controllers.AddContainer.textImage": "Resim", + "DE.Controllers.AddContainer.textOther": "Diğer", + "DE.Controllers.AddContainer.textShape": "Şekil", + "DE.Controllers.AddContainer.textTable": "Tablo", + "DE.Controllers.AddImage.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", + "DE.Controllers.AddImage.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmalıdır", + "DE.Controllers.AddOther.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmalıdır", + "DE.Controllers.AddTable.textCancel": "İptal", + "DE.Controllers.AddTable.textColumns": "Sütunlar", + "DE.Controllers.AddTable.textRows": "Satırlar", + "DE.Controllers.AddTable.textTableSize": "Tablo Boyutu", + "DE.Controllers.DocumentHolder.menuAddLink": "Link Ekle", + "DE.Controllers.DocumentHolder.menuCopy": "Kopyala", + "DE.Controllers.DocumentHolder.menuCut": "Kes", + "DE.Controllers.DocumentHolder.menuDelete": "Sil", + "DE.Controllers.DocumentHolder.menuEdit": "Düzenle", + "DE.Controllers.DocumentHolder.menuMore": "Daha fazla", + "DE.Controllers.DocumentHolder.menuOpenLink": "Linki Aç", + "DE.Controllers.DocumentHolder.menuPaste": "Yapıştır", + "DE.Controllers.DocumentHolder.sheetCancel": "İptal", + "DE.Controllers.DocumentHolder.textGuest": "Ziyaretçi", + "DE.Controllers.EditContainer.textChart": "Grafik", + "DE.Controllers.EditContainer.textHyperlink": "Hiper bağ", + "DE.Controllers.EditContainer.textImage": "Resim", + "DE.Controllers.EditContainer.textParagraph": "Paragraf", + "DE.Controllers.EditContainer.textSettings": "Ayarlar", + "DE.Controllers.EditContainer.textShape": "Şekil", + "DE.Controllers.EditContainer.textTable": "Tablo", + "DE.Controllers.EditContainer.textText": "Metin", + "DE.Controllers.EditImage.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", + "DE.Controllers.EditImage.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmalıdır", + "DE.Controllers.EditText.textAuto": "Otomatik", + "DE.Controllers.EditText.textFonts": "Yazı Tipleri", + "DE.Controllers.EditText.textPt": "pt", + "DE.Controllers.Main.advDRMEnterPassword": "Şifrenizi girin:", + "DE.Controllers.Main.advDRMOptions": "Korumalı Dosya", + "DE.Controllers.Main.advDRMPassword": "Şifre", + "DE.Controllers.Main.advTxtOptions": "TXT Seçeneklerini Belirle", + "DE.Controllers.Main.applyChangesTextText": "Veri yükleniyor...", + "DE.Controllers.Main.applyChangesTitleText": "Veri yükleniyor", + "DE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", + "DE.Controllers.Main.criticalErrorExtText": "Belge listesine dönmek için 'TAMAM' tuşuna tıklayın.", + "DE.Controllers.Main.criticalErrorTitle": "Hata", + "DE.Controllers.Main.defaultTitleText": "ONLYOFFICE Belge Editörü", + "DE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.", + "DE.Controllers.Main.downloadMergeText": "İndiriliyor...", + "DE.Controllers.Main.downloadMergeTitle": "İndiriliyor", + "DE.Controllers.Main.downloadTextText": "Belge indiriliyor...", + "DE.Controllers.Main.downloadTitleText": "Belge indiriliyor", + "DE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", + "DE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kayboldu. Artık düzenleyemezsiniz.", + "DE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.

Belge Sunucusuna bağlanma konusunda daha fazla bilgi için buraya tıklayın", + "DE.Controllers.Main.errorDatabaseConnection": "Dışsal hata.
Veritabanı bağlantı hatası. Lütfen destek ile iletişime geçin.", + "DE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", + "DE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1", + "DE.Controllers.Main.errorFilePassProtect": "Belge şifre korumalı.", + "DE.Controllers.Main.errorKeyEncrypt": "Bilinmeyen anahtar tanımlayıcı", + "DE.Controllers.Main.errorKeyExpire": "Anahtar tanımlayıcının süresi doldu", + "DE.Controllers.Main.errorMailMergeLoadFile": "Yükleme başarısız", + "DE.Controllers.Main.errorMailMergeSaveFile": "Birleştirme başarısız", + "DE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.", + "DE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", + "DE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı.", + "DE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.", + "DE.Controllers.Main.errorUserDrop": "Belgeye şu an erişilemiyor.", + "DE.Controllers.Main.errorUsersExceed": "Kullanıcı sayısı aşıldı", + "DE.Controllers.Main.errorViewerDisconnect": "Bağlantı kaybedildi. Yine belgeyi görüntüleyebilirsiniz,
bağlantı geri gelmeden önce indirme işlemi yapılamayacak.", + "DE.Controllers.Main.leavePageText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", + "DE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", + "DE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", + "DE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", + "DE.Controllers.Main.loadFontTitleText": "Veri yükleniyor", + "DE.Controllers.Main.loadImagesTextText": "Resimler yükleniyor...", + "DE.Controllers.Main.loadImagesTitleText": "Resimler yükleniyor", + "DE.Controllers.Main.loadImageTextText": "Resim yükleniyor...", + "DE.Controllers.Main.loadImageTitleText": "Resim yükleniyor", + "DE.Controllers.Main.loadingDocumentTextText": "Belge yükleniyor...", + "DE.Controllers.Main.loadingDocumentTitleText": "Belge yükleniyor", + "DE.Controllers.Main.mailMergeLoadFileText": "Veri Kaynağı Yükleniyor...", + "DE.Controllers.Main.mailMergeLoadFileTitle": "Veri Kaynağı Yükleniyor", + "DE.Controllers.Main.notcriticalErrorTitle": "Uyarı", + "DE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", + "DE.Controllers.Main.openTextText": "Belge açılıyor...", + "DE.Controllers.Main.openTitleText": "Belge Açılıyor", + "DE.Controllers.Main.printTextText": "Belge yazdırılıyor...", + "DE.Controllers.Main.printTitleText": "Belge Yazdırılıyor", + "DE.Controllers.Main.saveErrorText": "Dosya kaydedilirken bir hata oluştu", + "DE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor", + "DE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", + "DE.Controllers.Main.saveTextText": "Belge kaydediliyor...", + "DE.Controllers.Main.saveTitleText": "Belge Kaydediliyor", + "DE.Controllers.Main.sendMergeText": "Birleştirme Gönderiliyor...", + "DE.Controllers.Main.sendMergeTitle": "Birleştirme Gönderiliyor", + "DE.Controllers.Main.splitDividerErrorText": "Satır sayısı %1 bölmelidir", + "DE.Controllers.Main.splitMaxColsErrorText": "Sütun sayısı %1 geçmemelidir", + "DE.Controllers.Main.splitMaxRowsErrorText": "Satır sayısı %1 geçmemelidir", + "DE.Controllers.Main.textAnonymous": "Anonim", + "DE.Controllers.Main.textBack": "Geri", + "DE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", + "DE.Controllers.Main.textCancel": "İptal", + "DE.Controllers.Main.textClose": "Kapat", + "DE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin", + "DE.Controllers.Main.textDone": "Bitti", + "DE.Controllers.Main.textLoadingDocument": "Belge yükleniyor", + "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", + "DE.Controllers.Main.textOK": "TAMAM", + "DE.Controllers.Main.textPassword": "Şifre", + "DE.Controllers.Main.textPreloader": "Yükleniyor...", + "DE.Controllers.Main.textTryUndoRedo": "Hızlı birlikte düzenleme modunda geri al/ileri al fonksiyonları devre dışıdır.", + "DE.Controllers.Main.textUsername": "Kullanıcı adı", + "DE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", + "DE.Controllers.Main.titleServerVersion": "Editör güncellendi", + "DE.Controllers.Main.titleUpdateVersion": "Sürüm değiştirildi", + "DE.Controllers.Main.txtArt": "Metni buraya giriniz", + "DE.Controllers.Main.txtDiagramTitle": "Grafik başlığı", + "DE.Controllers.Main.txtEditingMode": "Düzenleme modunu belirle...", + "DE.Controllers.Main.txtSeries": "Seriler", + "DE.Controllers.Main.txtStyle_Heading_1": "Başlık 1", + "DE.Controllers.Main.txtStyle_Heading_2": "Başlık 2", + "DE.Controllers.Main.txtStyle_Heading_3": "Başlık 3", + "DE.Controllers.Main.txtStyle_Heading_4": "Başlık 4", + "DE.Controllers.Main.txtStyle_Heading_5": "Başlık 5", + "DE.Controllers.Main.txtStyle_Heading_6": "Başlık 6", + "DE.Controllers.Main.txtStyle_Heading_7": "Başlık 7", + "DE.Controllers.Main.txtStyle_Heading_8": "Başlık 8", + "DE.Controllers.Main.txtStyle_Heading_9": "Başlık 9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "Yoğun Alıntı", + "DE.Controllers.Main.txtStyle_List_Paragraph": "Paragrafı Listele", + "DE.Controllers.Main.txtStyle_No_Spacing": "Boşluksuz", + "DE.Controllers.Main.txtStyle_Normal": "Normal", + "DE.Controllers.Main.txtStyle_Quote": "Alıntı", + "DE.Controllers.Main.txtStyle_Subtitle": "Altyazı", + "DE.Controllers.Main.txtStyle_Title": "Başlık", + "DE.Controllers.Main.txtXAxis": "X Ekseni", + "DE.Controllers.Main.txtYAxis": "Y Ekseni", + "DE.Controllers.Main.unknownErrorText": "Bilinmeyen hata.", + "DE.Controllers.Main.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.", + "DE.Controllers.Main.uploadImageExtMessage": "Bilinmeyen resim formatı.", + "DE.Controllers.Main.uploadImageFileCountMessage": "Resim yüklenmedi.", + "DE.Controllers.Main.uploadImageSizeMessage": "Maksimum resim boyutu aşıldı", + "DE.Controllers.Main.uploadImageTextText": "Resim yükleniyor...", + "DE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", + "DE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", + "DE.Controllers.Main.warnNoLicense": "ONLYOFFICE'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, doküman sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı).
Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.", + "DE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", + "DE.Controllers.Search.textNoTextFound": "Metin Bulunamadı", + "DE.Controllers.Search.textReplaceAll": "Tümünü Değiştir", + "DE.Controllers.Settings.notcriticalErrorTitle": "Uyarı", + "DE.Controllers.Settings.txtLoading": "Yükleniyor", + "DE.Controllers.Settings.unknownText": "Bilinmeyen", + "DE.Controllers.Settings.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.
Devam etmek istediğinizden emin misiniz?", + "DE.Controllers.Toolbar.dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", + "DE.Controllers.Toolbar.dlgLeaveTitleText": "Uygulamadan çıktınız", + "DE.Controllers.Toolbar.leaveButtonText": "Bu Sayfadan Ayrıl", + "DE.Controllers.Toolbar.stayButtonText": "Bu Sayfada Kal", + "DE.Views.AddImage.textAddress": "Adres", + "DE.Views.AddImage.textBack": "Geri", + "DE.Views.AddImage.textFromLibrary": "Kütüphane'den Resim", + "DE.Views.AddImage.textFromURL": "URL'den resim", + "DE.Views.AddImage.textImageURL": "Resim URL'si", + "DE.Views.AddImage.textInsertImage": "Resim Ekle", + "DE.Views.AddImage.textLinkSettings": "Link Ayarları", + "DE.Views.AddOther.textAddLink": "Link Ekle", + "DE.Views.AddOther.textBack": "Geri", + "DE.Views.AddOther.textCenterBottom": "Orta Alt", + "DE.Views.AddOther.textCenterTop": "Orta Üst", + "DE.Views.AddOther.textColumnBreak": "Sütun Sonu", + "DE.Views.AddOther.textContPage": "Devam Eden Sayfa", + "DE.Views.AddOther.textCurrentPos": "Mevcut Pozisyon", + "DE.Views.AddOther.textDisplay": "Görüntüle", + "DE.Views.AddOther.textEvenPage": "Çift Sayfa", + "DE.Views.AddOther.textInsert": "Ekle", + "DE.Views.AddOther.textLeftBottom": "Sol Alt", + "DE.Views.AddOther.textLeftTop": "Sol Üst", + "DE.Views.AddOther.textLink": "Link", + "DE.Views.AddOther.textNextPage": "Sonraki Sayfa", + "DE.Views.AddOther.textOddPage": "Tek Sayfa", + "DE.Views.AddOther.textPageBreak": "Sayfa Sonu", + "DE.Views.AddOther.textPageNumber": "Sayfa Numarası", + "DE.Views.AddOther.textPosition": "Pozisyon", + "DE.Views.AddOther.textRightBottom": "Sağ Alt", + "DE.Views.AddOther.textRightTop": "Sağ Üst", + "DE.Views.AddOther.textSectionBreak": "Bölüm Sonu", + "DE.Views.AddOther.textTip": "Ekran İpucu", + "DE.Views.EditChart.textAlign": "Hizala", + "DE.Views.EditChart.textBack": "Geri", + "DE.Views.EditChart.textBackward": "Geri Taşı", + "DE.Views.EditChart.textBehind": "Arka", + "DE.Views.EditChart.textBorder": "Sınır", + "DE.Views.EditChart.textColor": "Renk", + "DE.Views.EditChart.textDistanceText": "Metinden mesafe", + "DE.Views.EditChart.textFill": "Doldur", + "DE.Views.EditChart.textForward": "İleri Taşı", + "DE.Views.EditChart.textInFront": "Önde", + "DE.Views.EditChart.textInline": "Satıriçi", + "DE.Views.EditChart.textMoveText": "Metinle Taşı", + "DE.Views.EditChart.textOverlap": "Çakışmaya İzin Ver", + "DE.Views.EditChart.textRemoveChart": "Grafiği Kaldır", + "DE.Views.EditChart.textReorder": "Yeniden Sırala", + "DE.Views.EditChart.textSize": "Boyut", + "DE.Views.EditChart.textSquare": "Kare", + "DE.Views.EditChart.textStyle": "Stil", + "DE.Views.EditChart.textThrough": "Sonu", + "DE.Views.EditChart.textTight": "Sıkı", + "DE.Views.EditChart.textToBackground": "Arka Plana gönder", + "DE.Views.EditChart.textToForeground": "Ön Plana Getir", + "DE.Views.EditChart.textTopBottom": "Üst ve Alt", + "DE.Views.EditChart.textType": "Tip", + "DE.Views.EditChart.textWrap": "Metni Kaydır", + "DE.Views.EditHyperlink.textDisplay": "Görüntüle", + "DE.Views.EditHyperlink.textEdit": "Link Düzenle", + "DE.Views.EditHyperlink.textLink": "Link", + "DE.Views.EditHyperlink.textRemove": "Linki Kaldır", + "DE.Views.EditHyperlink.textTip": "Ekran İpucu", + "DE.Views.EditImage.textAddress": "Adres", + "DE.Views.EditImage.textAlign": "Hizala", + "DE.Views.EditImage.textBack": "Geri", + "DE.Views.EditImage.textBackward": "Geri Taşı", + "DE.Views.EditImage.textBehind": "Arka", + "DE.Views.EditImage.textDefault": "Varsayılan Boyut", + "DE.Views.EditImage.textDistanceText": "Metinden mesafe", + "DE.Views.EditImage.textForward": "İleri Taşı", + "DE.Views.EditImage.textFromLibrary": "Kütüphane'den Resim", + "DE.Views.EditImage.textFromURL": "URL'den resim", + "DE.Views.EditImage.textImageURL": "Resim URL'si", + "DE.Views.EditImage.textInFront": "Önde", + "DE.Views.EditImage.textInline": "Satıriçi", + "DE.Views.EditImage.textLinkSettings": "Link Ayarları", + "DE.Views.EditImage.textMoveText": "Metinle Taşı", + "DE.Views.EditImage.textOverlap": "Çakışmaya İzin Ver", + "DE.Views.EditImage.textRemove": "Resmi Kaldır", + "DE.Views.EditImage.textReorder": "Yeniden Sırala", + "DE.Views.EditImage.textReplace": "Değiştir", + "DE.Views.EditImage.textReplaceImg": "Resmi Değiştir", + "DE.Views.EditImage.textSquare": "Kare", + "DE.Views.EditImage.textThrough": "Sonu", + "DE.Views.EditImage.textTight": "Sıkı", + "DE.Views.EditImage.textToBackground": "Arka Plana gönder", + "DE.Views.EditImage.textToForeground": "Ön Plana Getir", + "DE.Views.EditImage.textTopBottom": "Üst ve Alt", + "DE.Views.EditImage.textWrap": "Metni Kaydır", + "DE.Views.EditParagraph.textAdvanced": "Gelişmiş", + "DE.Views.EditParagraph.textAdvSettings": "Gelişmiş ayarlar", + "DE.Views.EditParagraph.textAfter": "Sonra", + "DE.Views.EditParagraph.textAuto": "Otomatik", + "DE.Views.EditParagraph.textBack": "Geri", + "DE.Views.EditParagraph.textBackground": "Arka Plan", + "DE.Views.EditParagraph.textBefore": "Önce", + "DE.Views.EditParagraph.textFromText": "Metinden mesafe", + "DE.Views.EditParagraph.textKeepLines": "Satırları birlikte tut", + "DE.Views.EditParagraph.textKeepNext": "Sonrakiyle tut", + "DE.Views.EditParagraph.textOrphan": "Tek satır denetimi", + "DE.Views.EditParagraph.textPageBreak": "Sayfa Sonu Öncesi", + "DE.Views.EditParagraph.textPrgStyles": "Paragraf stilleri", + "DE.Views.EditParagraph.textSpaceBetween": "Paragraf Arası Boşluklar", + "DE.Views.EditShape.textAlign": "Hizala", + "DE.Views.EditShape.textBack": "Geri", + "DE.Views.EditShape.textBackward": "Geri Taşı", + "DE.Views.EditShape.textBehind": "Arka", + "DE.Views.EditShape.textBorder": "Sınır", + "DE.Views.EditShape.textColor": "Renk", + "DE.Views.EditShape.textEffects": "Efektler", + "DE.Views.EditShape.textFill": "Doldur", + "DE.Views.EditShape.textForward": "İleri Taşı", + "DE.Views.EditShape.textFromText": "Metinden mesafe", + "DE.Views.EditShape.textInFront": "Önde", + "DE.Views.EditShape.textInline": "Satıriçi", + "DE.Views.EditShape.textOpacity": "Opasite", + "DE.Views.EditShape.textOverlap": "Çakışmaya İzin Ver", + "DE.Views.EditShape.textRemoveShape": "Şekli Kaldır", + "DE.Views.EditShape.textReorder": "Yeniden Sırala", + "DE.Views.EditShape.textReplace": "Değiştir", + "DE.Views.EditShape.textSize": "Boyut", + "DE.Views.EditShape.textSquare": "Kare", + "DE.Views.EditShape.textStyle": "Stil", + "DE.Views.EditShape.textThrough": "Sonu", + "DE.Views.EditShape.textTight": "Sıkı", + "DE.Views.EditShape.textToBackground": "Arka Plana gönder", + "DE.Views.EditShape.textToForeground": "Ön Plana Getir", + "DE.Views.EditShape.textTopAndBottom": "Üst ve Alt", + "DE.Views.EditShape.textWithText": "Metinle Taşı", + "DE.Views.EditShape.textWrap": "Metni Kaydır", + "DE.Views.EditTable.textAlign": "Hizala", + "DE.Views.EditTable.textBack": "Geri", + "DE.Views.EditTable.textBandedColumn": "Çizgili Sütun", + "DE.Views.EditTable.textBandedRow": "Çizgili Satır", + "DE.Views.EditTable.textBorder": "Sınır", + "DE.Views.EditTable.textCellMargins": "Hücre Kenar Boşluğu", + "DE.Views.EditTable.textColor": "Renk", + "DE.Views.EditTable.textFill": "Doldur", + "DE.Views.EditTable.textFirstColumn": "İlk Sütun", + "DE.Views.EditTable.textFlow": "Yayılma", + "DE.Views.EditTable.textFromText": "Metinden mesafe", + "DE.Views.EditTable.textHeaderRow": "Başlık Satır", + "DE.Views.EditTable.textInline": "Satıriçi", + "DE.Views.EditTable.textLastColumn": "Son Sütun", + "DE.Views.EditTable.textOptions": "Seçenekler", + "DE.Views.EditTable.textRemoveTable": "Tabloyu Kaldır", + "DE.Views.EditTable.textRepeatHeader": "Başlık Satır olarak Tekrarla", + "DE.Views.EditTable.textResizeFit": "İçereğe Göre Yeniden Boyutlandır", + "DE.Views.EditTable.textSize": "Boyut", + "DE.Views.EditTable.textStyle": "Stil", + "DE.Views.EditTable.textStyleOptions": "Stil Seçenekleri", + "DE.Views.EditTable.textTableOptions": "Tablo Seçenekleri", + "DE.Views.EditTable.textTotalRow": "Toplam Satır", + "DE.Views.EditTable.textWithText": "Metinle Taşı", + "DE.Views.EditTable.textWrap": "Metni Kaydır", + "DE.Views.EditText.textAdditional": "Ek", + "DE.Views.EditText.textAdditionalFormat": "Ek Format", + "DE.Views.EditText.textAllCaps": "Tüm Başlıklar", + "DE.Views.EditText.textAutomatic": "Otomatik", + "DE.Views.EditText.textBack": "Geri", + "DE.Views.EditText.textBullets": "İmler", + "DE.Views.EditText.textDblStrikethrough": "Üstü çift çizili", + "DE.Views.EditText.textDblSuperscript": "Üstsimge", + "DE.Views.EditText.textFontColor": "Yazı Tipi Rengi", + "DE.Views.EditText.textFontColors": "Yazı Tipi Renkleri", + "DE.Views.EditText.textFonts": "Yazı Tipleri", + "DE.Views.EditText.textHighlightColor": "Vurgu Rengi", + "DE.Views.EditText.textHighlightColors": "Vurgu Renkleri", + "DE.Views.EditText.textLetterSpacing": "Harf Boşlukları", + "DE.Views.EditText.textLineSpacing": "Satır Aralığı", + "DE.Views.EditText.textNone": "Hiçbiri", + "DE.Views.EditText.textNumbers": "Sayılar", + "DE.Views.EditText.textSize": "Boyut", + "DE.Views.EditText.textSmallCaps": "Küçük büyük harfler", + "DE.Views.EditText.textStrikethrough": "Üstü çizili", + "DE.Views.EditText.textSubscript": "Altsimge", + "DE.Views.Search.textCase": "Büyük küçük harfe duyarlı", + "DE.Views.Search.textDone": "Bitti", + "DE.Views.Search.textFind": "Bul", + "DE.Views.Search.textFindAndReplace": "Bul ve Değiştir", + "DE.Views.Search.textHighlight": "Vurgu sonuçları", + "DE.Views.Search.textReplace": "Değiştir", + "DE.Views.Search.textSearch": "Ara", + "DE.Views.Settings.textAbout": "Hakkında", + "DE.Views.Settings.textAddress": "adres", + "DE.Views.Settings.textAuthor": "Yazar", + "DE.Views.Settings.textBack": "Geri", + "DE.Views.Settings.textCreateDate": "Oluşturulma tarihi", + "DE.Views.Settings.textCustom": "Özel", + "DE.Views.Settings.textCustomSize": "Özel Boyut", + "DE.Views.Settings.textDocInfo": "Belge Bilgisi", + "DE.Views.Settings.textDocTitle": "Belge başlığı", + "DE.Views.Settings.textDocumentFormats": "Belge Formatları", + "DE.Views.Settings.textDocumentSettings": "Belge Ayarları", + "DE.Views.Settings.textDone": "Bitti", + "DE.Views.Settings.textDownload": "İndir", + "DE.Views.Settings.textDownloadAs": "Farklı İndir...", + "DE.Views.Settings.textEditDoc": "Belge Düzenle", + "DE.Views.Settings.textEmail": "E-posta", + "DE.Views.Settings.textFind": "Bul", + "DE.Views.Settings.textFindAndReplace": "Bul ve Değiştir", + "DE.Views.Settings.textFormat": "Format", + "DE.Views.Settings.textHelp": "Yardım", + "DE.Views.Settings.textLandscape": "Yatay", + "DE.Views.Settings.textLoading": "Yükleniyor...", + "DE.Views.Settings.textOrientation": "Oryantasyon", + "DE.Views.Settings.textPages": "Sayfalar", + "DE.Views.Settings.textParagraphs": "Paragraflar", + "DE.Views.Settings.textPortrait": "Dikey", + "DE.Views.Settings.textPoweredBy": "Sunucu", + "DE.Views.Settings.textReader": "Okuyucu Modu", + "DE.Views.Settings.textSettings": "Ayarlar", + "DE.Views.Settings.textSpaces": "Boşluklar", + "DE.Views.Settings.textStatistic": "İstatistik", + "DE.Views.Settings.textSymbols": "Semboller", + "DE.Views.Settings.textTel": "telefon", + "DE.Views.Settings.textVersion": "Sürüm", + "DE.Views.Settings.textWords": "Kelimeler", + "DE.Views.Settings.unknownText": "Bilinmeyen", + "DE.Views.Toolbar.textBack": "Geri" +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 961ad9274..bb600446c 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -1,7 +1,7 @@ { "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми", - "Common.Utils.Metric.txtCm": "см\n", + "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", "DE.Controllers.AddContainer.textImage": "Зображення", "DE.Controllers.AddContainer.textOther": "Інший", @@ -105,7 +105,7 @@ "DE.Controllers.Main.textCancel": "Скасувати", "DE.Controllers.Main.textClose": "Закрити", "DE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", - "DE.Controllers.Main.textDone": "Готово\n", + "DE.Controllers.Main.textDone": "Готово", "DE.Controllers.Main.textLoadingDocument": "Завантаження документа", "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", "DE.Controllers.Main.textOK": "OК", @@ -196,8 +196,8 @@ "DE.Views.EditChart.textDistanceText": "Відстань від тексту", "DE.Views.EditChart.textFill": "Заповнити", "DE.Views.EditChart.textForward": "Перемістити вперед", - "DE.Views.EditChart.textInFront": "Попереду\n", - "DE.Views.EditChart.textInline": "Вбудований\n", + "DE.Views.EditChart.textInFront": "Попереду", + "DE.Views.EditChart.textInline": "Вбудований", "DE.Views.EditChart.textMoveText": "Перемістити з текстом", "DE.Views.EditChart.textOverlap": "Дозволити перекриття", "DE.Views.EditChart.textRemoveChart": "Видалити діаграму", @@ -228,8 +228,8 @@ "DE.Views.EditImage.textFromLibrary": "Зображення з бібліотеки", "DE.Views.EditImage.textFromURL": "Зображення з URL", "DE.Views.EditImage.textImageURL": "URL зображення", - "DE.Views.EditImage.textInFront": "Попереду\n", - "DE.Views.EditImage.textInline": "Вбудований\n", + "DE.Views.EditImage.textInFront": "Попереду", + "DE.Views.EditImage.textInline": "Вбудований", "DE.Views.EditImage.textLinkSettings": "Налаштування посилання", "DE.Views.EditImage.textMoveText": "Перемістити з текстом", "DE.Views.EditImage.textOverlap": "Дозволити перекриття", @@ -244,7 +244,7 @@ "DE.Views.EditImage.textToForeground": "Перенести на передній план", "DE.Views.EditImage.textTopBottom": "Верх і низ", "DE.Views.EditImage.textWrap": "Обернути", - "DE.Views.EditParagraph.textAdvanced": "Розширений\n", + "DE.Views.EditParagraph.textAdvanced": "Розширений", "DE.Views.EditParagraph.textAdvSettings": "Розширені налаштування", "DE.Views.EditParagraph.textAfter": "після", "DE.Views.EditParagraph.textAuto": "Авто", @@ -268,8 +268,8 @@ "DE.Views.EditShape.textFill": "Заповнити", "DE.Views.EditShape.textForward": "Перемістити вперед", "DE.Views.EditShape.textFromText": "Відстань від тексту", - "DE.Views.EditShape.textInFront": "Попереду\n", - "DE.Views.EditShape.textInline": "Вбудований\n", + "DE.Views.EditShape.textInFront": "Попереду", + "DE.Views.EditShape.textInline": "Вбудований", "DE.Views.EditShape.textOpacity": "Непрозорість", "DE.Views.EditShape.textOverlap": "Дозволити перекриття", "DE.Views.EditShape.textRemoveShape": "Видалити форму", @@ -297,7 +297,7 @@ "DE.Views.EditTable.textFlow": "Розпливатися", "DE.Views.EditTable.textFromText": "Відстань від тексту", "DE.Views.EditTable.textHeaderRow": "Рядок заголовка", - "DE.Views.EditTable.textInline": "Вбудований\n", + "DE.Views.EditTable.textInline": "Вбудований", "DE.Views.EditTable.textLastColumn": "Остання колонка", "DE.Views.EditTable.textOptions": "Опції", "DE.Views.EditTable.textRemoveTable": "Видалити таблицю", @@ -332,7 +332,7 @@ "DE.Views.EditText.textStrikethrough": "Перекреслення", "DE.Views.EditText.textSubscript": "Підрядковий", "DE.Views.Search.textCase": "Чутливість до регістору символів", - "DE.Views.Search.textDone": "Готово\n", + "DE.Views.Search.textDone": "Готово", "DE.Views.Search.textFind": "Знайти", "DE.Views.Search.textFindAndReplace": "Знайти та перемістити", "DE.Views.Search.textHighlight": "Виділіть результати", @@ -349,7 +349,7 @@ "DE.Views.Settings.textDocTitle": "Назва документу", "DE.Views.Settings.textDocumentFormats": "Формати документа", "DE.Views.Settings.textDocumentSettings": "Налаштування документа", - "DE.Views.Settings.textDone": "Готово\n", + "DE.Views.Settings.textDone": "Готово", "DE.Views.Settings.textDownload": "Скачати", "DE.Views.Settings.textDownloadAs": "Завантажити як...", "DE.Views.Settings.textEditDoc": "Редагувати документ", @@ -364,7 +364,7 @@ "DE.Views.Settings.textPages": "Сторінки", "DE.Views.Settings.textParagraphs": "Параграфи", "DE.Views.Settings.textPortrait": "Портрет", - "DE.Views.Settings.textPoweredBy": "Під керуванням\n", + "DE.Views.Settings.textPoweredBy": "Під керуванням", "DE.Views.Settings.textReader": "Режим читання", "DE.Views.Settings.textSettings": "Налаштування", "DE.Views.Settings.textSpaces": "Пробіли", diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 79fc81571..15bd31c64 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -129,6 +129,7 @@ "DE.Controllers.Main.txtStyle_Heading_7": "标题7", "DE.Controllers.Main.txtStyle_Heading_8": "标题8", "DE.Controllers.Main.txtStyle_Heading_9": "标题9", + "DE.Controllers.Main.txtStyle_Intense_Quote": "直接引用", "DE.Controllers.Main.txtStyle_List_Paragraph": "罗列段落", "DE.Controllers.Main.txtStyle_No_Spacing": "无空格", "DE.Controllers.Main.txtStyle_Normal": "正常", @@ -338,7 +339,7 @@ "DE.Views.Search.textReplace": "替换", "DE.Views.Search.textSearch": "搜索", "DE.Views.Settings.textAbout": "关于", - "DE.Views.Settings.textAddress": "地址\n", + "DE.Views.Settings.textAddress": "地址", "DE.Views.Settings.textAuthor": "创建者", "DE.Views.Settings.textBack": "返回", "DE.Views.Settings.textCreateDate": "创建日期", diff --git a/apps/presentationeditor/main/locale/cs.json b/apps/presentationeditor/main/locale/cs.json index 9d37efc8f..309a27d79 100644 --- a/apps/presentationeditor/main/locale/cs.json +++ b/apps/presentationeditor/main/locale/cs.json @@ -857,7 +857,7 @@ "PE.Views.FileMenuPanels.Settings.txtCm": "Centimetry", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Přizpůsobit snímku", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Přizpůsobit šířce", - "PE.Views.FileMenuPanels.Settings.txtInch": "Palce\n", + "PE.Views.FileMenuPanels.Settings.txtInch": "Palce", "PE.Views.FileMenuPanels.Settings.txtInput": "Náhradní vstup", "PE.Views.FileMenuPanels.Settings.txtLast": "Zobraz poslední", "PE.Views.FileMenuPanels.Settings.txtPt": "Body", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index ab2507875..dce7e1b7f 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -147,7 +147,7 @@ "PE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "PE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "PE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", - "PE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.\n", + "PE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen.", "PE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", "PE.Controllers.Main.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.", "PE.Controllers.Main.errorSessionIdle": "Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.", @@ -185,7 +185,7 @@ "PE.Controllers.Main.savePreparingText": "Speichervorbereitung", "PE.Controllers.Main.savePreparingTitle": "Speichervorbereitung. Bitte warten...", "PE.Controllers.Main.saveTextText": "Präsentation wird gespeichert...", - "PE.Controllers.Main.saveTitleText": "Präsentation wird gespeichert\n", + "PE.Controllers.Main.saveTitleText": "Präsentation wird gespeichert", "PE.Controllers.Main.splitDividerErrorText": "Die Zeilenanzahl muss ein Divisor von %1 sein.", "PE.Controllers.Main.splitMaxColsErrorText": "Die Spaltenanzahl muss weniger sein als %1.", "PE.Controllers.Main.splitMaxRowsErrorText": "Die Zeilenanzahl muss weniger als %1 sein.", @@ -712,7 +712,7 @@ "PE.Views.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten", "PE.Views.DocumentHolder.txtArrange": "Anordnen", "PE.Views.DocumentHolder.txtBackground": "Hintergrund", - "PE.Views.DocumentHolder.txtBorderProps": "Rahmeneigenschaften\n", + "PE.Views.DocumentHolder.txtBorderProps": "Rahmeneigenschaften", "PE.Views.DocumentHolder.txtBottom": "Unten", "PE.Views.DocumentHolder.txtChangeLayout": "Layout ändern", "PE.Views.DocumentHolder.txtChangeTheme": "Thema ändern", @@ -729,7 +729,7 @@ "PE.Views.DocumentHolder.txtDistribHor": "Horizontal verteilen", "PE.Views.DocumentHolder.txtDistribVert": "Vertikal verteilen", "PE.Views.DocumentHolder.txtDuplicateSlide": "Folie duplizieren", - "PE.Views.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern\n", + "PE.Views.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern", "PE.Views.DocumentHolder.txtFractionSkewed": "Zu verzerrter Bruchrechnung ändern", "PE.Views.DocumentHolder.txtFractionStacked": "Zu verzerrter Bruchrechnung ändern", "PE.Views.DocumentHolder.txtGroup": "Gruppieren", @@ -1359,7 +1359,7 @@ "PE.Views.Toolbar.txtGroup": "Gruppieren", "PE.Views.Toolbar.txtScheme1": "Larissa", "PE.Views.Toolbar.txtScheme10": "Galathea", - "PE.Views.Toolbar.txtScheme11": "Metro\n", + "PE.Views.Toolbar.txtScheme11": "Metro", "PE.Views.Toolbar.txtScheme12": "Modul", "PE.Views.Toolbar.txtScheme13": "Lysithea", "PE.Views.Toolbar.txtScheme14": "Nereus", diff --git a/apps/presentationeditor/main/locale/pl.json b/apps/presentationeditor/main/locale/pl.json new file mode 100644 index 000000000..1da1fb267 --- /dev/null +++ b/apps/presentationeditor/main/locale/pl.json @@ -0,0 +1,1383 @@ +{ + "Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie", + "Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj", + "Common.Controllers.Chat.textUserLimit": "Używasz ONLYOFFICE Free Edition.
Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. Czytaj więcej ", + "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonimowy użytkownik ", + "Common.Controllers.ExternalDiagramEditor.textClose": "Zamknąć", + "Common.Controllers.ExternalDiagramEditor.warningText": "Obiekt jest wyłączony, ponieważ jest edytowany przez innego użytkownika.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Ostrzeżenie", + "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi", + "Common.UI.ComboDataView.emptyComboText": "Brak styli", + "Common.UI.ExtendedColorDialog.addButtonText": "Dodać", + "Common.UI.ExtendedColorDialog.cancelButtonText": "Anulować", + "Common.UI.ExtendedColorDialog.textCurrent": "Obecny", + "Common.UI.ExtendedColorDialog.textHexErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 000000 do FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "nowy", + "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.SearchDialog.textHighlight": "Podświetl wyniki", + "Common.UI.SearchDialog.textMatchCase": "Rozróżniana wielkość liter", + "Common.UI.SearchDialog.textReplaceDef": "Wprowadź tekst zastępczy", + "Common.UI.SearchDialog.textSearchStart": "Wprowadź tekst tutaj", + "Common.UI.SearchDialog.textTitle": "Wyszukiwanie", + "Common.UI.SearchDialog.textTitle2": "Wyszukiwanie", + "Common.UI.SearchDialog.textWholeWords": "Tylko całe słowa", + "Common.UI.SearchDialog.txtBtnHideReplace": "Ukryj Zamień", + "Common.UI.SearchDialog.txtBtnReplace": "Zamienić", + "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.textStandartColors": "Kolory standardowe", + "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.UI.Window.cancelButtonText": "Anulować", + "Common.UI.Window.closeButtonText": "Zamknąć", + "Common.UI.Window.noButtonText": "Nie", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Potwierdzenie", + "Common.UI.Window.textDontShow": "Nie pokazuj tej wiadomości ponownie", + "Common.UI.Window.textError": "Błąd", + "Common.UI.Window.textInformation": "Informacja", + "Common.UI.Window.textWarning": "Ostrzeżenie", + "Common.UI.Window.yesButtonText": "Tak", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "adres:", + "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021", + "Common.Views.About.txtLicensee": "LICENCJOBIORCA", + "Common.Views.About.txtLicensor": "LICENCJODAWCA", + "Common.Views.About.txtMail": "e-mail:", + "Common.Views.About.txtPoweredBy": "zasilany przez", + "Common.Views.About.txtTel": "tel.:", + "Common.Views.About.txtVersion": "Wersja", + "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Anulować", + "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", + "Common.Views.Chat.textSend": "Wyslać", + "Common.Views.Comments.textAdd": "Dodać", + "Common.Views.Comments.textAddComment": "Dodaj komentarz", + "Common.Views.Comments.textAddCommentToDoc": "Dodaj komentarz do dokumentu", + "Common.Views.Comments.textAddReply": "Dodaj odpowiedź", + "Common.Views.Comments.textAnonym": "Gość", + "Common.Views.Comments.textCancel": "Anulować", + "Common.Views.Comments.textClose": "Zamknąć", + "Common.Views.Comments.textComments": "Komentarze", + "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEnterCommentHint": "Wprowadź twój komentarz tutaj", + "Common.Views.Comments.textHintAddComment": "Dodaj komentarz", + "Common.Views.Comments.textOpenAgain": "Otwórz ponownie", + "Common.Views.Comments.textReply": "Odpowiedzieć", + "Common.Views.Comments.textResolve": "Rozwiąż", + "Common.Views.Comments.textResolved": "Rozwiązany", + "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", + "Common.Views.CopyWarningDialog.textToCopy": "dla kopiowania", + "Common.Views.CopyWarningDialog.textToCut": "dla wycięcia", + "Common.Views.CopyWarningDialog.textToPaste": "do wklejenia", + "Common.Views.DocumentAccessDialog.textLoading": "Ładowanie...", + "Common.Views.DocumentAccessDialog.textTitle": "Ustaw uprawnienia dostępu", + "Common.Views.ExternalDiagramEditor.textClose": "Zamknąć", + "Common.Views.ExternalDiagramEditor.textSave": "Zapisz i wyjdź", + "Common.Views.ExternalDiagramEditor.textTitle": "Edytor wykresu", + "Common.Views.Header.labelCoUsersDescr": "Dokument jest obecnie edytowany przez kilku użytkowników.", + "Common.Views.Header.textBack": "Przejdź do Dokumentów", + "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.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.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.ImageFromUrlDialog.cancelButtonText": "Anulować", + "Common.Views.ImageFromUrlDialog.okButtonText": "OK", + "Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", + "Common.Views.InsertTableDialog.cancelButtonText": "Anulować", + "Common.Views.InsertTableDialog.okButtonText": "OK", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Musisz określić poprawną liczbę wierszy i kolumn.", + "Common.Views.InsertTableDialog.txtColumns": "Ilość kolumn", + "Common.Views.InsertTableDialog.txtMaxText": "Maksymalna wartość dla tego pola to {0}", + "Common.Views.InsertTableDialog.txtMinText": "Minimalna wartość dla tego pola to {0}", + "Common.Views.InsertTableDialog.txtRows": "Liczba wierszy", + "Common.Views.InsertTableDialog.txtTitle": "Rozmiar tablicy", + "Common.Views.InsertTableDialog.txtTitleSplit": "Podziel komórkę", + "Common.Views.LanguageDialog.btnCancel": "Anulować", + "Common.Views.LanguageDialog.btnOk": "Ok", + "Common.Views.LanguageDialog.labelSelect": "Wybierz język dokumentu", + "Common.Views.OpenDialog.cancelButtonText": "Anulować", + "Common.Views.OpenDialog.okButtonText": "OK", + "Common.Views.OpenDialog.txtEncoding": "Kodowanie", + "Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.", + "Common.Views.OpenDialog.txtPassword": "Hasło", + "Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji", + "Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony", + "Common.Views.PluginDlg.textLoading": "Ładowanie", + "Common.Views.Plugins.groupCaption": "Wtyczki", + "Common.Views.Plugins.strPlugins": "Wtyczki", + "Common.Views.Plugins.textLoading": "Ładowanie", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.Plugins.textStop": "Zatrzymać", + "Common.Views.RenameDialog.cancelButtonText": "Anulować", + "Common.Views.RenameDialog.okButtonText": "Ok", + "Common.Views.RenameDialog.textName": "Nazwa pliku", + "Common.Views.RenameDialog.txtInvalidName": "Nazwa pliku nie może zawierać żadnego z następujących znaków:", + "PE.Controllers.LeftMenu.newDocumentTitle": "Nienazwana prezentacja", + "PE.Controllers.LeftMenu.requestEditRightsText": "Żądanie praw do edycji...", + "PE.Controllers.LeftMenu.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "PE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", + "PE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", + "PE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", + "PE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\", aby powrócić do listy dokumentów.", + "PE.Controllers.Main.criticalErrorTitle": "Błąd", + "PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor prezentacji", + "PE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", + "PE.Controllers.Main.downloadTextText": "Pobieranie prezentacji...", + "PE.Controllers.Main.downloadTitleText": "Pobieranie prezentacji", + "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.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.

Dowiedz się więcej o połączeniu serwera dokumentów tutaj", + "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.errorDataRange": "Błędny zakres danych.", + "PE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "PE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", + "PE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", + "PE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", + "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ę.", + "PE.Controllers.Main.errorSessionIdle": "Dokument nie był edytowany przez długi czas. Proszę ponownie załadować stronę.", + "PE.Controllers.Main.errorSessionToken": "Połączenie z serwerem zostało przerwane. Proszę ponownie załadować stronę.", + "PE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "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.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.", + "PE.Controllers.Main.leavePageText": "W tej prezentacji masz niezapisane zmiany. Kliknij przycisk \"Zostań na te stronie\", a następnie \"Zapisz\", aby je zapisać. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "PE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", + "PE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", + "PE.Controllers.Main.loadFontTextText": "Ładowanie danych...", + "PE.Controllers.Main.loadFontTitleText": "Ładowanie danych", + "PE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", + "PE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", + "PE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", + "PE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", + "PE.Controllers.Main.loadingDocumentTextText": "Ładowanie prezentacji...", + "PE.Controllers.Main.loadingDocumentTitleText": "Ładowanie prezentacji", + "PE.Controllers.Main.loadThemeTextText": "Ładowanie motywu...", + "PE.Controllers.Main.loadThemeTitleText": "Ładowanie motywu", + "PE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", + "PE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", + "PE.Controllers.Main.openTextText": "Otwieranie prezentacji...", + "PE.Controllers.Main.openTitleText": "Otwieranie prezentacji", + "PE.Controllers.Main.printTextText": "Drukowanie prezentacji...", + "PE.Controllers.Main.printTitleText": "Drukowanie prezentacji", + "PE.Controllers.Main.reloadButtonText": "Przeładuj stronę", + "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.savePreparingText": "Przygotowywanie do zapisu", + "PE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", + "PE.Controllers.Main.saveTextText": "Zapisywanie prezentacji...", + "PE.Controllers.Main.saveTitleText": "Zapisywanie prezentacji", + "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.", + "PE.Controllers.Main.textAnonymous": "Anonimowy użytkownik ", + "PE.Controllers.Main.textBuyNow": "Odwiedź stronę web", + "PE.Controllers.Main.textChangesSaved": "Wszystkie zmiany zapisane", + "PE.Controllers.Main.textCloseTip": "Kliknij, żeby zamknąć wskazówkę", + "PE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "PE.Controllers.Main.textLoadingDocument": "Ładowanie prezentacji", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", + "PE.Controllers.Main.textShape": "Kształt", + "PE.Controllers.Main.textStrict": "Tryb ścisły", + "PE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie \"Szybki\" współtworzenia.
Kliknij przycisk \"Tryb ścisły\", aby przejść do trybu ścisłego edytowania, aby edytować plik bez ingerencji innych użytkowników i wysyłać zmiany tylko po zapisaniu. Możesz przełączać się między trybami współtworzenia, używając edytora Ustawienia zaawansowane.", + "PE.Controllers.Main.titleLicenseExp": "Upłynął okres ważności licencji", + "PE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "PE.Controllers.Main.txtArt": "Twój tekst tutaj", + "PE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", + "PE.Controllers.Main.txtButtons": "Przyciski", + "PE.Controllers.Main.txtCallouts": "Objaśnienia", + "PE.Controllers.Main.txtCharts": "Wykresy", + "PE.Controllers.Main.txtClipArt": "Klipart", + "PE.Controllers.Main.txtDateTime": "Data i czas", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", + "PE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", + "PE.Controllers.Main.txtFiguredArrows": "Strzałki", + "PE.Controllers.Main.txtFooter": "Stopka", + "PE.Controllers.Main.txtHeader": "Nagłówek", + "PE.Controllers.Main.txtImage": "Obraz", + "PE.Controllers.Main.txtLines": "Linie", + "PE.Controllers.Main.txtLoading": "Ładowanie...", + "PE.Controllers.Main.txtMath": "Matematyka", + "PE.Controllers.Main.txtMedia": "Klip multimedialny", + "PE.Controllers.Main.txtNeedSynchronize": "Masz aktualizacje", + "PE.Controllers.Main.txtPicture": "Obraz", + "PE.Controllers.Main.txtRectangles": "Prostokąty", + "PE.Controllers.Main.txtSeries": "Serie", + "PE.Controllers.Main.txtSldLtTBlank": "Pusty", + "PE.Controllers.Main.txtSldLtTChart": "Wykres", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Wykres i tekst", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art and Text", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Grafika i tekst pionowy", + "PE.Controllers.Main.txtSldLtTCust": "Własny", + "PE.Controllers.Main.txtSldLtTDgm": "Diagram", + "PE.Controllers.Main.txtSldLtTFourObj": "Cztery obiekty", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media i tekst", + "PE.Controllers.Main.txtSldLtTObj": "Tytuł i obiekt", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Obiekt i dwa obiekty", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Obiekt i tekst", + "PE.Controllers.Main.txtSldLtTObjOnly": "Obiekt", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Obiekt nad tekstem", + "PE.Controllers.Main.txtSldLtTObjTx": "Tytuł, Obiekt i Podpis", + "PE.Controllers.Main.txtSldLtTPicTx": "Obraz i napis", + "PE.Controllers.Main.txtSldLtTSecHead": "Nagłówek sekcji", + "PE.Controllers.Main.txtSldLtTTbl": "Tabela", + "PE.Controllers.Main.txtSldLtTTitle": "Tytuł", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Tylko tytuł", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Dwie kolumny tekstowe", + "PE.Controllers.Main.txtSldLtTTwoObj": "Dwa obiekty", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dwa obiekty i obiekt", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dwa obiekty i tekst", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dwa obiekty nad tekstem", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dwa teksty i dwa obiekty", + "PE.Controllers.Main.txtSldLtTTx": "Tekst", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Tekst i wykres", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Tekst i obrazek", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Tekst i media", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Tekst i obiekt", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Tekst i dwa obiekty", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Tekst nad obiektem", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Pionowy tytuł i tekst", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Pionowy tytuł i tekst nad wykresem", + "PE.Controllers.Main.txtSldLtTVertTx": "Pionowy tekst", + "PE.Controllers.Main.txtSlideNumber": "Numer slajdu", + "PE.Controllers.Main.txtSlideSubtitle": "Podtytuł slajdu", + "PE.Controllers.Main.txtSlideText": "Treść slajdu", + "PE.Controllers.Main.txtSlideTitle": "Tytuł slajdu", + "PE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", + "PE.Controllers.Main.txtXAxis": "Oś X", + "PE.Controllers.Main.txtYAxis": "Oś Y", + "PE.Controllers.Main.unknownErrorText": "Nieznany błąd.", + "PE.Controllers.Main.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", + "PE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", + "PE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu został przekroczony.", + "PE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", + "PE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", + "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.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "PE.Controllers.Main.warnNoLicense": "Używasz wersji ONLYOFFICE 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.warnProcessRightsChange": "Nie masz prawa edytować tego pliku.", + "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", + "PE.Controllers.Toolbar.textBracket": "Nawiasy", + "PE.Controllers.Toolbar.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "PE.Controllers.Toolbar.textFontSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość numeryczną w zakresie od 1 do 100", + "PE.Controllers.Toolbar.textFraction": "Ułamki", + "PE.Controllers.Toolbar.textFunction": "Funkcje", + "PE.Controllers.Toolbar.textIntegral": "Całki", + "PE.Controllers.Toolbar.textLargeOperator": "Duże operatory", + "PE.Controllers.Toolbar.textLimitAndLog": "Limity i algorytmy", + "PE.Controllers.Toolbar.textMatrix": "Macierze", + "PE.Controllers.Toolbar.textOperator": "Operatory", + "PE.Controllers.Toolbar.textRadical": "radykały", + "PE.Controllers.Toolbar.textScript": "Indeksy", + "PE.Controllers.Toolbar.textSymbols": "Symbole", + "PE.Controllers.Toolbar.textWarning": "Ostrzeżenie", + "PE.Controllers.Toolbar.txtAccent_Accent": "Ostry", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Strzałka w lewo - w prawo powyżej", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Lewa strzałka powyżej", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Strzałka w prawo powyżej", + "PE.Controllers.Toolbar.txtAccent_Bar": "Pasek", + "PE.Controllers.Toolbar.txtAccent_BarBot": " Kreska na dole", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Kreska od góry", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Formuła w ramce (z wypełnieniem)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Forma zamknięta (przykład)", + "PE.Controllers.Toolbar.txtAccent_Check": "Sprawdź", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Nawias klamrowy na dole", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Nawias klamrowy", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "Wektor A", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Z Nadmiarem", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y z cechą góry", + "PE.Controllers.Toolbar.txtAccent_DDDot": "Wielokropek", + "PE.Controllers.Toolbar.txtAccent_DDot": "Podwójna kropka", + "PE.Controllers.Toolbar.txtAccent_Dot": "Kropka", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Podwójna kreska od góry", + "PE.Controllers.Toolbar.txtAccent_Grave": "Grawerować", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Grupowanie znaków poniżej", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Grupowanie znaków powyżej", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Harpun w lewo do góry", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Prawy Harpun Powyżej", + "PE.Controllers.Toolbar.txtAccent_Hat": "Okładka", + "PE.Controllers.Toolbar.txtAccent_Smile": "krótki", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Tylda", + "PE.Controllers.Toolbar.txtBracket_Angle": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Nawiasy i dzielniki", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Nawiasy i dzielniki", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Curve": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Nawiasy i dzielniki", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Przypadek (dwa warunki)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Przypadek (trzy warunki)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "Obiekt stosu", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Obiekt stosu", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Przykłady przypadków", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Współczynnik dwumianowy", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Współczynnik dwumianowy", + "PE.Controllers.Toolbar.txtBracket_Line": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Round": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Nawiasy i dzielniki", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Square": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Nawiasy", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Pojedynczy nawias", + "PE.Controllers.Toolbar.txtFractionDiagonal": "Skrzywiona frakcja", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Zróżnicowany", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Zróżnicowany", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Zróżnicowany", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Zróżnicowany", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Ułamek liniowy", + "PE.Controllers.Toolbar.txtFractionPi_2": "Pi ponad 2", + "PE.Controllers.Toolbar.txtFractionSmall": "Mała frakcja", + "PE.Controllers.Toolbar.txtFractionVertical": "Skumulowany fragment", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Funkcja Inverse Cosine", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Arccosinus hiperboliczny", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Funkcja Inverse Cotangent", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Hiperboliczna Funkcja Inverse Cotangent", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Funkcja Odwrotna Cosecans", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Hiperboliczny arcus cosecans", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Odwrotna funkcja sekretna", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Hiperboliczna odwrotna funkcja sekretna", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Funkcja Inverse Sine", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Funkcja odwrotnej sinusoidy hiperbolicznej", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Odwrotna funkcja arcus tangens", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Funkcja hiperboliczna odwrotna", + "PE.Controllers.Toolbar.txtFunction_Cos": "Funkcja cosinus", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Cosinus hiperboliczny", + "PE.Controllers.Toolbar.txtFunction_Cot": "Funkcja ctg", + "PE.Controllers.Toolbar.txtFunction_Coth": "Cotangens hiperboliczny", + "PE.Controllers.Toolbar.txtFunction_Csc": "Funkcja Cosecant", + "PE.Controllers.Toolbar.txtFunction_Csch": "Funkcja hipotonii hiperbola", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus theta", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Wzór styczny", + "PE.Controllers.Toolbar.txtFunction_Sec": "Funkcja sekant", + "PE.Controllers.Toolbar.txtFunction_Sech": "Hiperboliczna funkcja sekretna", + "PE.Controllers.Toolbar.txtFunction_Sin": "Funkcja Sine", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Funkcja hiperboliczna Sine", + "PE.Controllers.Toolbar.txtFunction_Tan": "Tangens", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Tangens hiperboliczny", + "PE.Controllers.Toolbar.txtIntegral": "Całka", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Mechanizm różnicowy", + "PE.Controllers.Toolbar.txtIntegral_dx": "Mechanizm różnicowy x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Mechanizm różnicowy y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "Całka", + "PE.Controllers.Toolbar.txtIntegralDouble": "Całka podwójna", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Całka podwójna", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Całka podwójna", + "PE.Controllers.Toolbar.txtIntegralOriented": "Całka krzywej", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Całka krzywej", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral powierzchni", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral powierzchni", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral powierzchni", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Całka krzywej", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integralna objętość", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integralna objętość", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integralna objętość", + "PE.Controllers.Toolbar.txtIntegralSubSup": "Całka", + "PE.Controllers.Toolbar.txtIntegralTriple": "Potrójny integral", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Potrójny integral", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Potrójny integral", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Zaklinuj", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Zaklinuj", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Zaklinuj", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Zaklinuj", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Zaklinuj", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Współprodukt", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Współprodukt", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Współprodukt", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Współprodukt", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Współprodukt", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Unia", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Przecięcie", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Przecięcie", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Przecięcie", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Przecięcie", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Przecięcie", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Produkt", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produkt", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produkt", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produkt", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produkt", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Podsumowanie", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "Unia", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Unia", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Unia", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Unia", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Unia", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Przykładowy limit", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maksymalny przykład", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Logarytm naturalny", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logarytm", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarytm", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Maksymalny", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Pusta macierz z nawiasami", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Pusta macierz z nawiasami", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Pusta macierz z nawiasami", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Pusta macierz z nawiasami", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Pusta macierz", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Kropki bazowe", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punkty środkowe", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punkty po przekątnej", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Pionowe kropki", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Rozrzedzona matryca", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Rozrzedzona matryca", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Macierz jednostkowa", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Macierz jednostkowa", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Macierz jednostkowa", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Macierz jednostkowa", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Strzałka w lewo - w prawo powyżej", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Strzałka w lewo - w prawo powyżej", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Lewa strzałka poniżej", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Lewa strzałka powyżej", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Strzałka w prawo Poniżej", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Strzałka w prawo powyżej", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Dwukropek jest równy", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Wydajność", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta wyjścia", + "PE.Controllers.Toolbar.txtOperator_Definition": "Równe definicji", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta równa się", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Strzałka w lewo - w prawo powyżej", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Strzałka w lewo - w prawo powyżej", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Lewa strzałka poniżej", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Lewa strzałka powyżej", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Strzałka w prawo Poniżej", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Strzałka w prawo powyżej", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Równy równy", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus równy", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Równy", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Zmierzone przez", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Radykał", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Radykał", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "Pierwiastek drugiego stopnia", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Pierwiastek sześcienny", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Radykał ze stopniem", + "PE.Controllers.Toolbar.txtRadicalSqrt": "Pierwiastek kwadratowy", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Indeks", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Indeks", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Indeks", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Indeks", + "PE.Controllers.Toolbar.txtScriptSub": "Indeks dolny", + "PE.Controllers.Toolbar.txtScriptSubSup": "Dolne i górne indeksy", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Lewy indeks dolny", + "PE.Controllers.Toolbar.txtScriptSup": "Indeks górny", + "PE.Controllers.Toolbar.txtSymbol_about": "W przybliżeniu", + "PE.Controllers.Toolbar.txtSymbol_additional": "Uzupełnienie", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "PE.Controllers.Toolbar.txtSymbol_approx": "Prawie równe do", + "PE.Controllers.Toolbar.txtSymbol_ast": "Operator gwiazdek", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Operator-znacznik", + "PE.Controllers.Toolbar.txtSymbol_cap": "Przecięcie", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Pierwiastek sześcienny", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Poziome kropki w środku", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Stopnie Celcjusza", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "W przybliżeniu równe", + "PE.Controllers.Toolbar.txtSymbol_cup": "Unia", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Przekątny wielokropek w dół w prawo", + "PE.Controllers.Toolbar.txtSymbol_degree": "Stopnie", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Znak dzielenia", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Strzałka w dół", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Pusty zestaw", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Równy", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Identyczny do", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "Tam jest", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Czynność", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Stopnie Fahrenheit", + "PE.Controllers.Toolbar.txtSymbol_forall": "Dla wszystkich", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "PE.Controllers.Toolbar.txtSymbol_geq": "Większy lub równy niż", + "PE.Controllers.Toolbar.txtSymbol_gg": "Dużo większy niż", + "PE.Controllers.Toolbar.txtSymbol_greater": "Większy niż", + "PE.Controllers.Toolbar.txtSymbol_in": "Element", + "PE.Controllers.Toolbar.txtSymbol_inc": "Przyrost", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Nieskończoność", + "PE.Controllers.Toolbar.txtSymbol_iota": "Jota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Lewa strzałka", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Lewa-Prawa strzałka", + "PE.Controllers.Toolbar.txtSymbol_leq": "Mniejszy lub równy niż", + "PE.Controllers.Toolbar.txtSymbol_less": "Mniejszy niż", + "PE.Controllers.Toolbar.txtSymbol_ll": "Dużo mniejszy niż", + "PE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "PE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "Różny od", + "PE.Controllers.Toolbar.txtSymbol_ni": "Zawiera jako członek", + "PE.Controllers.Toolbar.txtSymbol_not": "Znak negacji", + "PE.Controllers.Toolbar.txtSymbol_notexists": "Tam nie ma", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omikron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Częściowe różnice", + "PE.Controllers.Toolbar.txtSymbol_percent": "Procentowo", + "PE.Controllers.Toolbar.txtSymbol_phi": "Fi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "PE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", + "PE.Controllers.Toolbar.txtSymbol_propto": "Proporcjonalny do", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Pierwiastek poczwórny", + "PE.Controllers.Toolbar.txtSymbol_qed": "Koniec dowodu", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Przekątny wielokropek w górę w prawo", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Strzałka w prawo", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Znak grupy funkcyjnej", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "W związku z tym", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "PE.Controllers.Toolbar.txtSymbol_times": "Znak mnożenia", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "Strzałka w górę", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Ypsilon", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon (opcja)", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi Wariant", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi Wariant", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Wariant Rho", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Wariacja Sigma", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Wariant Theta", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Pionowe wyskakiwanie", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.ChartSettings.textArea": "Obszar", + "PE.Views.ChartSettings.textBar": "Pasek", + "PE.Views.ChartSettings.textChartType": "Zmień typ wykresu", + "PE.Views.ChartSettings.textColumn": "Kolumna", + "PE.Views.ChartSettings.textEditData": "Edytuj dane", + "PE.Views.ChartSettings.textHeight": "Wysokość", + "PE.Views.ChartSettings.textKeepRatio": "Stałe proporcje", + "PE.Views.ChartSettings.textLine": "Wykres", + "PE.Views.ChartSettings.textPie": "Kołowe", + "PE.Views.ChartSettings.textPoint": "XY (Punktowy)", + "PE.Views.ChartSettings.textSize": "Rozmiar", + "PE.Views.ChartSettings.textStock": "Zbiory", + "PE.Views.ChartSettings.textStyle": "Styl", + "PE.Views.ChartSettings.textSurface": "Powierzchnia", + "PE.Views.ChartSettings.textWidth": "Szerokość", + "PE.Views.ChartSettingsAdvanced.cancelButtonText": "Anulować", + "PE.Views.ChartSettingsAdvanced.okButtonText": "Ok", + "PE.Views.ChartSettingsAdvanced.textAlt": "Tekst alternatywny", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Opis", + "PE.Views.ChartSettingsAdvanced.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.", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Tytuł", + "PE.Views.ChartSettingsAdvanced.textTitle": "Wykres - zaawansowane ustawienia", + "PE.Views.DocumentHolder.aboveText": "Nad", + "PE.Views.DocumentHolder.addCommentText": "Dodaj komentarz", + "PE.Views.DocumentHolder.advancedImageText": "Zaawansowane ustawienia obrazu", + "PE.Views.DocumentHolder.advancedParagraphText": "Zaawansowane ustawienia tekstu", + "PE.Views.DocumentHolder.advancedShapeText": "Zaawansowane ustawienia kształtu", + "PE.Views.DocumentHolder.advancedTableText": "Zaawansowane ustawienia tabeli", + "PE.Views.DocumentHolder.alignmentText": "Wyrównanie", + "PE.Views.DocumentHolder.belowText": "Poniżej", + "PE.Views.DocumentHolder.cellAlignText": "Wyrównanie pionowe komórki", + "PE.Views.DocumentHolder.cellText": "Komórka", + "PE.Views.DocumentHolder.centerText": "Środek", + "PE.Views.DocumentHolder.columnText": "Kolumna", + "PE.Views.DocumentHolder.deleteColumnText": "Usuń kolumnę", + "PE.Views.DocumentHolder.deleteRowText": "Usuń wiersz", + "PE.Views.DocumentHolder.deleteTableText": "Usuń tabelę", + "PE.Views.DocumentHolder.deleteText": "Usunąć", + "PE.Views.DocumentHolder.direct270Text": "Obróć tekst w górę", + "PE.Views.DocumentHolder.direct90Text": "Obróć tekst w dół", + "PE.Views.DocumentHolder.directHText": "Poziomy", + "PE.Views.DocumentHolder.directionText": "Kierunek tekstu", + "PE.Views.DocumentHolder.editChartText": "Edytuj dane", + "PE.Views.DocumentHolder.editHyperlinkText": "Edytuj hiperlink", + "PE.Views.DocumentHolder.hyperlinkText": "Hiperlink", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignoruj wszystko", + "PE.Views.DocumentHolder.ignoreSpellText": "Ignoruj", + "PE.Views.DocumentHolder.insertColumnLeftText": "Kolumna lewa", + "PE.Views.DocumentHolder.insertColumnRightText": "Kolumna prawa", + "PE.Views.DocumentHolder.insertColumnText": "Wstaw kolumnę", + "PE.Views.DocumentHolder.insertRowAboveText": "Wiersz powyżej", + "PE.Views.DocumentHolder.insertRowBelowText": "Wiersz poniżej", + "PE.Views.DocumentHolder.insertRowText": "Wstaw wiersz", + "PE.Views.DocumentHolder.insertText": "Wstawić", + "PE.Views.DocumentHolder.langText": "Wybierz język", + "PE.Views.DocumentHolder.leftText": "Lewy", + "PE.Views.DocumentHolder.loadSpellText": "Ładowanie wariantów...", + "PE.Views.DocumentHolder.mergeCellsText": "Połącz komórki", + "PE.Views.DocumentHolder.moreText": "Więcej wariantów...", + "PE.Views.DocumentHolder.noSpellVariantsText": "Brak wariantów", + "PE.Views.DocumentHolder.originalSizeText": "Domyślny rozmiar", + "PE.Views.DocumentHolder.removeHyperlinkText": "Usuń hiperlink", + "PE.Views.DocumentHolder.rightText": "Prawy", + "PE.Views.DocumentHolder.rowText": "Wiersz", + "PE.Views.DocumentHolder.selectText": "Wybierz", + "PE.Views.DocumentHolder.spellcheckText": "Sprawdzanie pisowni", + "PE.Views.DocumentHolder.splitCellsText": "Podziel komórkę...", + "PE.Views.DocumentHolder.splitCellTitleText": "Podziel komórkę", + "PE.Views.DocumentHolder.tableText": "Tabela", + "PE.Views.DocumentHolder.textArrangeBack": "Wyślij do tła", + "PE.Views.DocumentHolder.textArrangeBackward": "Przenieś do tyłu", + "PE.Views.DocumentHolder.textArrangeForward": "Przenieś do przodu", + "PE.Views.DocumentHolder.textArrangeFront": "Przejdź na pierwszy plan", + "PE.Views.DocumentHolder.textCopy": "Kopiuj", + "PE.Views.DocumentHolder.textCut": "Wytnij", + "PE.Views.DocumentHolder.textNextPage": "Następny slajd", + "PE.Views.DocumentHolder.textPaste": "Wklej", + "PE.Views.DocumentHolder.textPrevPage": "Poprzedni slajd", + "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", + "PE.Views.DocumentHolder.textShapeAlignMiddle": "Wyrównaj do środka", + "PE.Views.DocumentHolder.textShapeAlignRight": "Wyrównaj do prawej", + "PE.Views.DocumentHolder.textShapeAlignTop": "Wyrównaj do góry", + "PE.Views.DocumentHolder.textSlideSettings": "Ustawienia slajdu", + "PE.Views.DocumentHolder.textUndo": "Anulować", + "PE.Views.DocumentHolder.tipIsLocked": "Ten element jest obecnie edytowany przez innego użytkownika.", + "PE.Views.DocumentHolder.txtAddBottom": "Dodaj dolną krawędź", + "PE.Views.DocumentHolder.txtAddFractionBar": "Dadaj pasek ułamka", + "PE.Views.DocumentHolder.txtAddHor": "Dodaj poziomą linie", + "PE.Views.DocumentHolder.txtAddLB": "Dodaj lewy dolny wiersz", + "PE.Views.DocumentHolder.txtAddLeft": "Dodaj lewą krawędź", + "PE.Views.DocumentHolder.txtAddLT": "Dodaj lewy górny wiersz", + "PE.Views.DocumentHolder.txtAddRight": "Dodaj prawą krawędź", + "PE.Views.DocumentHolder.txtAddTop": "Dodaj górną krawędź", + "PE.Views.DocumentHolder.txtAddVer": "Dodaj pionowy wiersz", + "PE.Views.DocumentHolder.txtAlign": "Wyrównaj", + "PE.Views.DocumentHolder.txtAlignToChar": "Wyrównaj do znaku", + "PE.Views.DocumentHolder.txtArrange": "Zorganizować", + "PE.Views.DocumentHolder.txtBackground": "Tło", + "PE.Views.DocumentHolder.txtBorderProps": "Ustawienia obramowania", + "PE.Views.DocumentHolder.txtBottom": "Dół", + "PE.Views.DocumentHolder.txtChangeLayout": "Zmień układ", + "PE.Views.DocumentHolder.txtChangeTheme": "Zmienić motyw", + "PE.Views.DocumentHolder.txtColumnAlign": "Wyrównanie kolumny", + "PE.Views.DocumentHolder.txtDecreaseArg": "Zmniejsz rozmiar argumentu", + "PE.Views.DocumentHolder.txtDeleteArg": "Usuń argument", + "PE.Views.DocumentHolder.txtDeleteBreak": "Usuń ręczną przerwę", + "PE.Views.DocumentHolder.txtDeleteChars": "Usuń zamknięte znaki", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Usuń zamknięte znaki i separatory", + "PE.Views.DocumentHolder.txtDeleteEq": "Usuń równanie", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Usuń znak", + "PE.Views.DocumentHolder.txtDeleteRadical": "Usuń radykał", + "PE.Views.DocumentHolder.txtDeleteSlide": "Usuń slajd", + "PE.Views.DocumentHolder.txtDistribHor": "Rozdziel poziomo", + "PE.Views.DocumentHolder.txtDistribVert": "Rozdziel pionowo", + "PE.Views.DocumentHolder.txtDuplicateSlide": "Duplikat slajdu", + "PE.Views.DocumentHolder.txtFractionLinear": "Zmień na ułamek liniowy", + "PE.Views.DocumentHolder.txtFractionSkewed": "Zmienić na ukośny prosty ułamek", + "PE.Views.DocumentHolder.txtFractionStacked": "Zmień na ułożone ułamki", + "PE.Views.DocumentHolder.txtGroup": "Grupa", + "PE.Views.DocumentHolder.txtGroupCharOver": "Znak nad tekstem", + "PE.Views.DocumentHolder.txtGroupCharUnder": "Znak pod tekstem", + "PE.Views.DocumentHolder.txtHideBottom": "Ukryj dolną krawędź", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Ukryj dolny limit", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Ukryj uchwyt zamykający", + "PE.Views.DocumentHolder.txtHideDegree": "Ukryj stopień", + "PE.Views.DocumentHolder.txtHideHor": "Ukryj poziomy wiersz", + "PE.Views.DocumentHolder.txtHideLB": "Ukryj lewy dolny wiersz", + "PE.Views.DocumentHolder.txtHideLeft": "Ukryj lewą krawędź", + "PE.Views.DocumentHolder.txtHideLT": "Ukryj lewy górny wiersz", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Ukryj uchwyt otwierający", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Ukryj symbol zastępczy", + "PE.Views.DocumentHolder.txtHideRight": "Ukryj prawą krawędź", + "PE.Views.DocumentHolder.txtHideTop": "Ukryj górną krawędź", + "PE.Views.DocumentHolder.txtHideTopLimit": "Ukryj górny limit", + "PE.Views.DocumentHolder.txtHideVer": "Ukryj pionowy wiersz", + "PE.Views.DocumentHolder.txtIncreaseArg": "Zwiększ rozmiar argumentu", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Wstaw argument po", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Wstaw argument przed", + "PE.Views.DocumentHolder.txtInsertBreak": "Wstaw ręczną przerwę", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Wstaw równanie po", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Wstaw równanie przed", + "PE.Views.DocumentHolder.txtLimitChange": "Zmień lokalizację limitu", + "PE.Views.DocumentHolder.txtLimitOver": "Ograniczenie tekstu", + "PE.Views.DocumentHolder.txtLimitUnder": "Limit w tekście", + "PE.Views.DocumentHolder.txtMatchBrackets": "Dopasuj nawiasy do wysokości argumentu", + "PE.Views.DocumentHolder.txtMatrixAlign": "Wyrównanie macierzy", + "PE.Views.DocumentHolder.txtNewSlide": "Nowy slajd", + "PE.Views.DocumentHolder.txtOverbar": "Pasek nad tekstem", + "PE.Views.DocumentHolder.txtPressLink": "Naciśnij CTRL i kliknij link", + "PE.Views.DocumentHolder.txtPreview": "Rozpocznij pokaz slajdów", + "PE.Views.DocumentHolder.txtRemFractionBar": "Usuń belkę ułamka", + "PE.Views.DocumentHolder.txtRemLimit": "Usuń limit", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Usuwanie akcentu", + "PE.Views.DocumentHolder.txtRemoveBar": "Usuń pasek", + "PE.Views.DocumentHolder.txtRemScripts": "Usuń indeksy", + "PE.Views.DocumentHolder.txtRemSubscript": "Usuń indeks dolny", + "PE.Views.DocumentHolder.txtRemSuperscript": "Usuń górny indeks", + "PE.Views.DocumentHolder.txtScriptsAfter": "Indeksy po tekście", + "PE.Views.DocumentHolder.txtScriptsBefore": "Indeksy przed tekstem", + "PE.Views.DocumentHolder.txtSelectAll": "Zaznacz wszystko", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Pokaż dolny limit", + "PE.Views.DocumentHolder.txtShowCloseBracket": "Pokaż klamrę zamykającą", + "PE.Views.DocumentHolder.txtShowDegree": "Pokaż stopień", + "PE.Views.DocumentHolder.txtShowOpenBracket": "Pokaż klamrę otwierającą", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Pokaż symbol zastępczy", + "PE.Views.DocumentHolder.txtShowTopLimit": "Pokaż górny limit", + "PE.Views.DocumentHolder.txtSlide": "Slajd", + "PE.Views.DocumentHolder.txtSlideHide": "Ukryj slajd", + "PE.Views.DocumentHolder.txtStretchBrackets": "Rozciągnąć nawiasy", + "PE.Views.DocumentHolder.txtTop": "Góra", + "PE.Views.DocumentHolder.txtUnderbar": "Pasek pod tekstem", + "PE.Views.DocumentHolder.txtUngroup": "Rozgrupuj", + "PE.Views.DocumentHolder.vertAlignText": "Wyrównaj pionowo", + "PE.Views.DocumentPreview.goToSlideText": "Idź do slajdu", + "PE.Views.DocumentPreview.slideIndexText": "Slajd {0} z {1}", + "PE.Views.DocumentPreview.txtClose": "Zamknij pokaz slajdów", + "PE.Views.DocumentPreview.txtEndSlideshow": "Zakończyć pokaz slajdów", + "PE.Views.DocumentPreview.txtExitFullScreen": "Opuść pełny ekran", + "PE.Views.DocumentPreview.txtFinalMessage": "Koniec podglądu slajdów. Kliknij aby wyjść.", + "PE.Views.DocumentPreview.txtFullScreen": "Pełny ekran", + "PE.Views.DocumentPreview.txtNext": "Następny slajd", + "PE.Views.DocumentPreview.txtPageNumInvalid": "Błędny numer slajdu", + "PE.Views.DocumentPreview.txtPause": "Zatrzymaj prezentację", + "PE.Views.DocumentPreview.txtPlay": "Rozpocznij prezentację", + "PE.Views.DocumentPreview.txtPrev": "Poprzedni slajd", + "PE.Views.DocumentPreview.txtReset": "Resetuj", + "PE.Views.FileMenu.btnAboutCaption": "O", + "PE.Views.FileMenu.btnBackCaption": "Przejdź do Dokumentów", + "PE.Views.FileMenu.btnCloseMenuCaption": "Zamknij menu", + "PE.Views.FileMenu.btnCreateNewCaption": "Utwórz nowy", + "PE.Views.FileMenu.btnDownloadCaption": "Pobierz jako...", + "PE.Views.FileMenu.btnHelpCaption": "Pomoc...", + "PE.Views.FileMenu.btnInfoCaption": "Informacje o prezentacji...", + "PE.Views.FileMenu.btnPrintCaption": "Wydrukować", + "PE.Views.FileMenu.btnRecentFilesCaption": "Otwórz ostatnie...", + "PE.Views.FileMenu.btnRenameCaption": "Zmień nazwę...", + "PE.Views.FileMenu.btnReturnCaption": "Powrót do prezentacji", + "PE.Views.FileMenu.btnRightsCaption": "Prawa dostępu...", + "PE.Views.FileMenu.btnSaveAsCaption": "Zapisz jako", + "PE.Views.FileMenu.btnSaveCaption": "Zapisz", + "PE.Views.FileMenu.btnSettingsCaption": "Zaawansowane ustawienia...", + "PE.Views.FileMenu.btnToEditCaption": "Edytuj prezentację", + "PE.Views.FileMenuPanels.CreateNew.fromBlankText": "Z pustego", + "PE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Z szablonu", + "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Utwórz nową pustą prezentację, którą będzie można ułożyć i formatować po jej utworzeniu podczas edycji. Możesz też wybrać jeden z szablonów, aby rozpocząć prezentację określonego typu lub celu, w którym niektóre style zostały wcześniej zastosowane.", + "PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nowa prezentacja", + "PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Tam nie ma żadnych szablonów", + "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", + "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu", + "PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data utworzenia", + "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja", + "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, które mają prawa", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tytuł prezentacji", + "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmień prawa dostępu", + "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, które mają prawa", + "PE.Views.FileMenuPanels.Settings.okButtonText": "Zastosować", + "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Włącz prowadnice wyrównania", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Włącz auto odzyskiwanie", + "PE.Views.FileMenuPanels.Settings.strAutosave": "Włącz automatyczny zapis", + "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Tryb współtworzenia", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Zobaczysz zmiany innych użytkowników od razu", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Zanim będziesz mógł zobaczyć zmiany wprowadzone przez innych użytkowników, musisz je najpierw zaakceptować.", + "PE.Views.FileMenuPanels.Settings.strFast": "Szybki", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Zawsze zapisuj na serwer (w przeciwnym razie zapisz na serwer dopiero przy zamykaniu dokumentu)", + "PE.Views.FileMenuPanels.Settings.strInputMode": "Włącz hieroglify", + "PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmiany w czasie rzeczywistym podczas współtworzenia", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Włącz sprawdzanie pisowni", + "PE.Views.FileMenuPanels.Settings.strStrict": "Ścisły", + "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", + "PE.Views.FileMenuPanels.Settings.text30Minutes": "Każde 30 minut", + "PE.Views.FileMenuPanels.Settings.text5Minutes": "Każde 5 minut", + "PE.Views.FileMenuPanels.Settings.text60Minutes": "Każda godzina", + "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Porady wyrównania", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Automatyczne odzyskiwanie", + "PE.Views.FileMenuPanels.Settings.textAutoSave": "Automatyczny zapis", + "PE.Views.FileMenuPanels.Settings.textDisabled": "Wyłączony", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Zapisz na serwer", + "PE.Views.FileMenuPanels.Settings.textMinute": "Każda minuta", + "PE.Views.FileMenuPanels.Settings.txtAll": "Pokaż wszystkie", + "PE.Views.FileMenuPanels.Settings.txtCm": "Centymetr", + "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Dopasuj do slajdu", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Dopasuj do szerokości", + "PE.Views.FileMenuPanels.Settings.txtInch": "Cale", + "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatywne wejście", + "PE.Views.FileMenuPanels.Settings.txtLast": "Pokaż ostatni", + "PE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Sprawdzanie pisowni", + "PE.Views.HyperlinkSettingsDialog.cancelButtonText": "Anulować", + "PE.Views.HyperlinkSettingsDialog.okButtonText": "OK", + "PE.Views.HyperlinkSettingsDialog.strDisplay": "Pokaż", + "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Link do", + "PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Wybierz miejsce w tym dokumencie", + "PE.Views.HyperlinkSettingsDialog.textDefault": "Wybrany fragment tekstu", + "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Wpisz tutaj podpis", + "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Wprowadź tutaj link", + "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.textLinkType": "Typ linku", + "PE.Views.HyperlinkSettingsDialog.textTipText": "Tekst wskazówki na ekranie", + "PE.Views.HyperlinkSettingsDialog.textTitle": "Ustawienia hiperlinku", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "To pole jest wymagane", + "PE.Views.HyperlinkSettingsDialog.txtFirst": "Pierwszy slajd", + "PE.Views.HyperlinkSettingsDialog.txtLast": "Ostatni slajd", + "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.txtSlide": "Slajd", + "PE.Views.ImageSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.ImageSettings.textEdit": "Edytować", + "PE.Views.ImageSettings.textEditObject": "Edytuj obiekt", + "PE.Views.ImageSettings.textFromFile": "Z pliku", + "PE.Views.ImageSettings.textFromUrl": "Z adresu URL", + "PE.Views.ImageSettings.textHeight": "Wysokość", + "PE.Views.ImageSettings.textInsert": "Zamień obraz", + "PE.Views.ImageSettings.textOriginalSize": "Domyślny rozmiar", + "PE.Views.ImageSettings.textSize": "Rozmiar", + "PE.Views.ImageSettings.textWidth": "Szerokość", + "PE.Views.ImageSettingsAdvanced.cancelButtonText": "Anulować", + "PE.Views.ImageSettingsAdvanced.okButtonText": "OK", + "PE.Views.ImageSettingsAdvanced.textAlt": "Tekst alternatywny", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Opis", + "PE.Views.ImageSettingsAdvanced.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.", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Tytuł", + "PE.Views.ImageSettingsAdvanced.textHeight": "Wysokość", + "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Stałe proporcje", + "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Domyślny rozmiar", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Umieszczenie", + "PE.Views.ImageSettingsAdvanced.textPosition": "Pozycja", + "PE.Views.ImageSettingsAdvanced.textSize": "Rozmiar", + "PE.Views.ImageSettingsAdvanced.textTitle": "Obraz - zaawansowane ustawienia", + "PE.Views.ImageSettingsAdvanced.textWidth": "Szerokość", + "PE.Views.LeftMenu.tipAbout": "O", + "PE.Views.LeftMenu.tipChat": "Czat", + "PE.Views.LeftMenu.tipComments": "Komentarze", + "PE.Views.LeftMenu.tipPlugins": "Wtyczki", + "PE.Views.LeftMenu.tipSearch": "Wyszukiwanie", + "PE.Views.LeftMenu.tipSlides": "Slajdy", + "PE.Views.LeftMenu.tipSupport": "Opinie i wsparcie", + "PE.Views.LeftMenu.tipTitles": "Tytuły", + "PE.Views.LeftMenu.txtDeveloper": "TRYB DEWELOPERA", + "PE.Views.ParagraphSettings.strLineHeight": "Rozstaw wierszy", + "PE.Views.ParagraphSettings.strParagraphSpacing": "Odstępy akapitu", + "PE.Views.ParagraphSettings.strSpacingAfter": "po", + "PE.Views.ParagraphSettings.strSpacingBefore": "Przed", + "PE.Views.ParagraphSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.ParagraphSettings.textAt": "w", + "PE.Views.ParagraphSettings.textAtLeast": "Co najmniej", + "PE.Views.ParagraphSettings.textAuto": "Mnożnik", + "PE.Views.ParagraphSettings.textExact": "Dokładnie", + "PE.Views.ParagraphSettings.txtAutoText": "Automatyczny", + "PE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Anulować", + "PE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty", + "PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", + "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże litery", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie", + "PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Pierwszy wiersz", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy", + "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy", + "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Czcionka", + "PE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Wcięcia i miejsca docelowe", + "PE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Małe litery", + "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.textCharacterSpacing": "Rozstaw znaków", + "PE.Views.ParagraphSettingsAdvanced.textDefault": "Domyślna zakładka", + "PE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", + "PE.Views.ParagraphSettingsAdvanced.textRemove": "Usuń", + "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Usuń wszystko", + "PE.Views.ParagraphSettingsAdvanced.textSet": "Określ", + "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Wyśrodkuj", + "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "Lewy", + "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozycja", + "PE.Views.ParagraphSettingsAdvanced.textTabRight": "Prawy", + "PE.Views.ParagraphSettingsAdvanced.textTitle": "Akapit - Ustawienia zaawansowane", + "PE.Views.RightMenu.txtChartSettings": "Ustawienia wykresu", + "PE.Views.RightMenu.txtImageSettings": "Ustawienia obrazu", + "PE.Views.RightMenu.txtParagraphSettings": "Ustawienia tekstu", + "PE.Views.RightMenu.txtShapeSettings": "Ustawienia kształtu", + "PE.Views.RightMenu.txtSlideSettings": "Ustawienia slajdu", + "PE.Views.RightMenu.txtTableSettings": "Ustawienia tabeli", + "PE.Views.RightMenu.txtTextArtSettings": "Ustawienia tekstu", + "PE.Views.ShapeSettings.strBackground": "Kolor tła", + "PE.Views.ShapeSettings.strChange": "Zmień kształt", + "PE.Views.ShapeSettings.strColor": "Kolor", + "PE.Views.ShapeSettings.strFill": "Wypełnij", + "PE.Views.ShapeSettings.strForeground": "Kolor pierwszoplanowy", + "PE.Views.ShapeSettings.strPattern": "Wzór", + "PE.Views.ShapeSettings.strSize": "Rozmiar", + "PE.Views.ShapeSettings.strStroke": "Obrys", + "PE.Views.ShapeSettings.strTransparency": "Nieprzezroczystość", + "PE.Views.ShapeSettings.strType": "Typ", + "PE.Views.ShapeSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.ShapeSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "PE.Views.ShapeSettings.textColor": "Kolor wypełnienia", + "PE.Views.ShapeSettings.textDirection": "Kierunek", + "PE.Views.ShapeSettings.textEmptyPattern": "Brak wzorca", + "PE.Views.ShapeSettings.textFromFile": "Z pliku", + "PE.Views.ShapeSettings.textFromUrl": "Z adresu URL", + "PE.Views.ShapeSettings.textGradient": "Gradient", + "PE.Views.ShapeSettings.textGradientFill": "Wypełnienie gradientem", + "PE.Views.ShapeSettings.textImageTexture": "Obraz lub tekstura", + "PE.Views.ShapeSettings.textLinear": "Liniowy", + "PE.Views.ShapeSettings.textNewColor": "Własny kolor", + "PE.Views.ShapeSettings.textNoFill": "Brak wypełnienia", + "PE.Views.ShapeSettings.textPatternFill": "Wzór", + "PE.Views.ShapeSettings.textRadial": "Promieniowy", + "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.txtBrownPaper": "Papier pakowy", + "PE.Views.ShapeSettings.txtCanvas": "Płótno", + "PE.Views.ShapeSettings.txtCarton": "Karton", + "PE.Views.ShapeSettings.txtDarkFabric": "Ciemna tkanina", + "PE.Views.ShapeSettings.txtGrain": "Ziarno", + "PE.Views.ShapeSettings.txtGranite": "Granit", + "PE.Views.ShapeSettings.txtGreyPaper": "Szary papier", + "PE.Views.ShapeSettings.txtKnit": "Szydełkowanie", + "PE.Views.ShapeSettings.txtLeather": "Skórzany", + "PE.Views.ShapeSettings.txtNoBorders": "Brak krawędzi", + "PE.Views.ShapeSettings.txtPapyrus": "Papirus", + "PE.Views.ShapeSettings.txtWood": "Drewno", + "PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Anulować", + "PE.Views.ShapeSettingsAdvanced.okButtonText": "OK", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Kolumny", + "PE.Views.ShapeSettingsAdvanced.strMargins": "Wypełnienie tekstem", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Tekst alternatywny", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Opis", + "PE.Views.ShapeSettingsAdvanced.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.", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Tytuł", + "PE.Views.ShapeSettingsAdvanced.textArrows": "Strzałki", + "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Początkowy rozmiar", + "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Styl początkowy", + "PE.Views.ShapeSettingsAdvanced.textBevel": "Ukos", + "PE.Views.ShapeSettingsAdvanced.textBottom": "Dół", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakończenia", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Ilość kolumn", + "PE.Views.ShapeSettingsAdvanced.textEndSize": "Rozmiar końcowy", + "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Styl końcowy", + "PE.Views.ShapeSettingsAdvanced.textFlat": "Płaski", + "PE.Views.ShapeSettingsAdvanced.textHeight": "Wysokość", + "PE.Views.ShapeSettingsAdvanced.textJoinType": "Dołącz typ", + "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Stałe proporcje", + "PE.Views.ShapeSettingsAdvanced.textLeft": "Lewy", + "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Styl wierszy", + "PE.Views.ShapeSettingsAdvanced.textMiter": "prosty", + "PE.Views.ShapeSettingsAdvanced.textRight": "Prawy", + "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.textTitle": "Kształt - Zaawansowane ustawienia", + "PE.Views.ShapeSettingsAdvanced.textTop": "Góra", + "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Wagi i strzałki", + "PE.Views.ShapeSettingsAdvanced.textWidth": "Szerokość", + "PE.Views.ShapeSettingsAdvanced.txtNone": "Nie", + "PE.Views.SlideSettings.strBackground": "Kolor tła", + "PE.Views.SlideSettings.strColor": "Kolor", + "PE.Views.SlideSettings.strDelay": "Opóźnienie", + "PE.Views.SlideSettings.strDuration": "Czas trwania", + "PE.Views.SlideSettings.strEffect": "Efekt", + "PE.Views.SlideSettings.strFill": "Tło", + "PE.Views.SlideSettings.strForeground": "Kolor pierwszoplanowy", + "PE.Views.SlideSettings.strPattern": "Wzór", + "PE.Views.SlideSettings.strStartOnClick": "Uruchomić kliknięciem", + "PE.Views.SlideSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.SlideSettings.textApplyAll": "Zatwierdź dla wszystkich slajdów", + "PE.Views.SlideSettings.textBlack": "Przez czarne", + "PE.Views.SlideSettings.textBottom": "Dół", + "PE.Views.SlideSettings.textBottomLeft": "Lewy dolny", + "PE.Views.SlideSettings.textBottomRight": "Prawy dolny", + "PE.Views.SlideSettings.textClock": "Zegar", + "PE.Views.SlideSettings.textClockwise": "Zgodnie z ruchem wskazówek zegara", + "PE.Views.SlideSettings.textColor": "Kolor wypełnienia", + "PE.Views.SlideSettings.textCounterclockwise": "Przeciwnie do ruchu wskazówek zegara", + "PE.Views.SlideSettings.textCover": "Pokryj", + "PE.Views.SlideSettings.textDirection": "Kierunek", + "PE.Views.SlideSettings.textEmptyPattern": "Brak wzorca", + "PE.Views.SlideSettings.textFade": "Blaknąć", + "PE.Views.SlideSettings.textFromFile": "Z pliku", + "PE.Views.SlideSettings.textFromUrl": "Z adresu URL", + "PE.Views.SlideSettings.textGradient": "Gradient", + "PE.Views.SlideSettings.textGradientFill": "Wypełnienie gradientem", + "PE.Views.SlideSettings.textHorizontalIn": "W poziomie do środka", + "PE.Views.SlideSettings.textHorizontalOut": "W poziomie na zewnątrz", + "PE.Views.SlideSettings.textImageTexture": "Obraz lub tekstura", + "PE.Views.SlideSettings.textLeft": "Lewy", + "PE.Views.SlideSettings.textLinear": "Liniowy", + "PE.Views.SlideSettings.textNewColor": "Własny kolor", + "PE.Views.SlideSettings.textNoFill": "Brak wypełnienia", + "PE.Views.SlideSettings.textNone": "Nie", + "PE.Views.SlideSettings.textPatternFill": "Wzór", + "PE.Views.SlideSettings.textPreview": "Podgląd", + "PE.Views.SlideSettings.textPush": "Pchnij", + "PE.Views.SlideSettings.textRadial": "Promieniowy", + "PE.Views.SlideSettings.textReset": "Zresetuj zmiany", + "PE.Views.SlideSettings.textRight": "Prawy", + "PE.Views.SlideSettings.textSec": "s", + "PE.Views.SlideSettings.textSelectTexture": "Wybierz", + "PE.Views.SlideSettings.textSmoothly": "Płynnie", + "PE.Views.SlideSettings.textSplit": "Podziel", + "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.textTop": "Góra", + "PE.Views.SlideSettings.textTopLeft": "Lewy górny", + "PE.Views.SlideSettings.textTopRight": "Prawy górny", + "PE.Views.SlideSettings.textUnCover": "Odkryj", + "PE.Views.SlideSettings.textVerticalIn": "W pionie", + "PE.Views.SlideSettings.textVerticalOut": "W pionie na zewnątrz", + "PE.Views.SlideSettings.textWedge": "Zaklinuj", + "PE.Views.SlideSettings.textWipe": "Wytrzyj", + "PE.Views.SlideSettings.textZoom": "Powiększenie", + "PE.Views.SlideSettings.textZoomIn": "Powiększ", + "PE.Views.SlideSettings.textZoomOut": "Powiększ", + "PE.Views.SlideSettings.textZoomRotate": "Powiększenie i obrót", + "PE.Views.SlideSettings.txtBrownPaper": "Papier pakowy", + "PE.Views.SlideSettings.txtCanvas": "Płótno", + "PE.Views.SlideSettings.txtCarton": "Karton", + "PE.Views.SlideSettings.txtDarkFabric": "Ciemna tkanina", + "PE.Views.SlideSettings.txtGrain": "Ziarno", + "PE.Views.SlideSettings.txtGranite": "Granit", + "PE.Views.SlideSettings.txtGreyPaper": "Szary papier", + "PE.Views.SlideSettings.txtKnit": "Szydełkowanie", + "PE.Views.SlideSettings.txtLeather": "Skórzany", + "PE.Views.SlideSettings.txtPapyrus": "Papirus", + "PE.Views.SlideSettings.txtWood": "Drewno", + "PE.Views.SlideshowSettings.cancelButtonText": "Anulować", + "PE.Views.SlideshowSettings.okButtonText": "Ok", + "PE.Views.SlideshowSettings.textLoop": "Zapętl do momentu, aż zostanie naciśnięty klawisz \"Esc\"", + "PE.Views.SlideshowSettings.textTitle": "Pokaż ustawienia", + "PE.Views.SlideSizeSettings.cancelButtonText": "Anulować", + "PE.Views.SlideSizeSettings.okButtonText": "OK", + "PE.Views.SlideSizeSettings.strLandscape": "Krajobraz", + "PE.Views.SlideSizeSettings.strPortrait": "Portret", + "PE.Views.SlideSizeSettings.textHeight": "Wysokość", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Orientacja slajdu", + "PE.Views.SlideSizeSettings.textSlideSize": "Rozmiar slajdu", + "PE.Views.SlideSizeSettings.textTitle": "Ustawienia rozmiaru slajdu", + "PE.Views.SlideSizeSettings.textWidth": "Szerokość", + "PE.Views.SlideSizeSettings.txt35": "Szkiełka 35 mm", + "PE.Views.SlideSizeSettings.txtA3": "A3 Papier (297x420 mm)", + "PE.Views.SlideSizeSettings.txtA4": "A4 Papier (210x297 mm)", + "PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Papier (250x353 mm)", + "PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Papier (176x250 mm)", + "PE.Views.SlideSizeSettings.txtBanner": "Banner", + "PE.Views.SlideSizeSettings.txtCustom": "Własny", + "PE.Views.SlideSizeSettings.txtLedger": "Papier księgi głównej (11 x 17 cali)", + "PE.Views.SlideSizeSettings.txtLetter": "Arkusz Letter (8.5x11 cali)", + "PE.Views.SlideSizeSettings.txtOverhead": "Folia", + "PE.Views.SlideSizeSettings.txtStandard": "Standard (4: 3)", + "PE.Views.SlideSizeSettings.txtWidescreen1": "Ekran panoramiczny (16:9)", + "PE.Views.SlideSizeSettings.txtWidescreen2": "Ekran panoramiczny (16:10)", + "PE.Views.Statusbar.goToPageText": "Idź do slajdu", + "PE.Views.Statusbar.pageIndexText": "Slajd {0} z {1}", + "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", + "PE.Views.Statusbar.tipPreview": "Rozpocznij pokaz slajdów", + "PE.Views.Statusbar.tipSetDocLang": "Ustaw język dokumentu", + "PE.Views.Statusbar.tipSetLang": "Ustaw język tekstu", + "PE.Views.Statusbar.tipSetSpelling": "Sprawdzanie pisowni", + "PE.Views.Statusbar.tipZoomFactor": "Powiększenie", + "PE.Views.Statusbar.tipZoomIn": "Powiększ", + "PE.Views.Statusbar.tipZoomOut": "Pomniejsz", + "PE.Views.Statusbar.txtPageNumInvalid": "Błędny numer slajdu", + "PE.Views.TableSettings.deleteColumnText": "Usuń kolumnę", + "PE.Views.TableSettings.deleteRowText": "Usuń wiersz", + "PE.Views.TableSettings.deleteTableText": "Usuń tabelę", + "PE.Views.TableSettings.insertColumnLeftText": "Wstaw kolumnę z lewej", + "PE.Views.TableSettings.insertColumnRightText": "Wstaw kolumnę z prawej", + "PE.Views.TableSettings.insertRowAboveText": "Wstaw wiersz powyżej", + "PE.Views.TableSettings.insertRowBelowText": "Wstaw wiersz poniżej", + "PE.Views.TableSettings.mergeCellsText": "Połącz komórki", + "PE.Views.TableSettings.selectCellText": "Wybierz komórkę", + "PE.Views.TableSettings.selectColumnText": "Wybierz kolumnę", + "PE.Views.TableSettings.selectRowText": "Wybierz wiersz", + "PE.Views.TableSettings.selectTableText": "Wybierz tabelę", + "PE.Views.TableSettings.splitCellsText": "Podziel komórkę...", + "PE.Views.TableSettings.splitCellTitleText": "Podziel komórkę", + "PE.Views.TableSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "PE.Views.TableSettings.textBackColor": "Kolor tła", + "PE.Views.TableSettings.textBanded": "Na przemian", + "PE.Views.TableSettings.textBorderColor": "Kolor", + "PE.Views.TableSettings.textBorders": "Style obramowań", + "PE.Views.TableSettings.textColumns": "Kolumny", + "PE.Views.TableSettings.textEdit": "Wiersze i Kolumny", + "PE.Views.TableSettings.textEmptyTemplate": "Brak szablonów", + "PE.Views.TableSettings.textFirst": "pierwszy", + "PE.Views.TableSettings.textHeader": "Nagłówek", + "PE.Views.TableSettings.textLast": "Ostatni", + "PE.Views.TableSettings.textNewColor": "Własny kolor", + "PE.Views.TableSettings.textRows": "Wiersze", + "PE.Views.TableSettings.textSelectBorders": "Wybierz obramowania, które chcesz zmienić stosując styl wybrany powyżej", + "PE.Views.TableSettings.textTemplate": "Wybierz z szablonu", + "PE.Views.TableSettings.textTotal": "Razem", + "PE.Views.TableSettings.tipAll": "Ustaw krawędź zewnętrzną i wszystkie wewnętrzne linie", + "PE.Views.TableSettings.tipBottom": "Ustaw tylko obramowanie dolnej krawędzi", + "PE.Views.TableSettings.tipInner": "Ustawić tylko linie wewnętrzne", + "PE.Views.TableSettings.tipInnerHor": "Ustawić tylko poziome linie wewnętrzne", + "PE.Views.TableSettings.tipInnerVert": "Ustaw tylko wewnętrzne pionowe linie", + "PE.Views.TableSettings.tipLeft": "Ustaw tylko obramowanie lewej krawędzi", + "PE.Views.TableSettings.tipNone": "Wyłącz krawędzie", + "PE.Views.TableSettings.tipOuter": "Ustaw tylko obramowanie zewnętrzne", + "PE.Views.TableSettings.tipRight": "Ustaw tylko obramowanie prawej krawędzi", + "PE.Views.TableSettings.tipTop": "Ustaw tylko obramowanie górnej krawędzi", + "PE.Views.TableSettings.txtNoBorders": "Bez krawędzi", + "PE.Views.TableSettingsAdvanced.cancelButtonText": "Anulować", + "PE.Views.TableSettingsAdvanced.okButtonText": "OK", + "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.", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Tytuł", + "PE.Views.TableSettingsAdvanced.textBottom": "Dół", + "PE.Views.TableSettingsAdvanced.textCheckMargins": "Użyj domyślnych marginesów", + "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Domyślne marginesy", + "PE.Views.TableSettingsAdvanced.textLeft": "Lewy", + "PE.Views.TableSettingsAdvanced.textMargins": "Marginesy komórki", + "PE.Views.TableSettingsAdvanced.textRight": "Prawy", + "PE.Views.TableSettingsAdvanced.textTitle": "Tabela - zaawansowane ustawienia", + "PE.Views.TableSettingsAdvanced.textTop": "Góra", + "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Marginesy", + "PE.Views.TextArtSettings.strBackground": "Kolor tła", + "PE.Views.TextArtSettings.strColor": "Kolor", + "PE.Views.TextArtSettings.strFill": "Wypełnij", + "PE.Views.TextArtSettings.strForeground": "Kolor pierwszoplanowy", + "PE.Views.TextArtSettings.strPattern": "Wzór", + "PE.Views.TextArtSettings.strSize": "Rozmiar", + "PE.Views.TextArtSettings.strStroke": "Obrys", + "PE.Views.TextArtSettings.strTransparency": "Nieprzezroczystość", + "PE.Views.TextArtSettings.strType": "Typ", + "PE.Views.TextArtSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "PE.Views.TextArtSettings.textColor": "Kolor wypełnienia", + "PE.Views.TextArtSettings.textDirection": "Kierunek", + "PE.Views.TextArtSettings.textEmptyPattern": "Brak wzorca", + "PE.Views.TextArtSettings.textFromFile": "Z pliku", + "PE.Views.TextArtSettings.textFromUrl": "Z adresu URL", + "PE.Views.TextArtSettings.textGradient": "Gradient", + "PE.Views.TextArtSettings.textGradientFill": "Wypełnienie gradientem", + "PE.Views.TextArtSettings.textImageTexture": "Obraz lub tekstura", + "PE.Views.TextArtSettings.textLinear": "Liniowy", + "PE.Views.TextArtSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "PE.Views.TextArtSettings.textNoFill": "Brak wypełnienia", + "PE.Views.TextArtSettings.textPatternFill": "Wzór", + "PE.Views.TextArtSettings.textRadial": "Promieniowy", + "PE.Views.TextArtSettings.textSelectTexture": "Wybierz", + "PE.Views.TextArtSettings.textStretch": "Rozciągnij", + "PE.Views.TextArtSettings.textStyle": "Styl", + "PE.Views.TextArtSettings.textTemplate": "Szablon", + "PE.Views.TextArtSettings.textTexture": "Z tekstury", + "PE.Views.TextArtSettings.textTile": "Płytka", + "PE.Views.TextArtSettings.textTransform": "Przekształcenie", + "PE.Views.TextArtSettings.txtBrownPaper": "Papier pakowy", + "PE.Views.TextArtSettings.txtCanvas": "Płótno", + "PE.Views.TextArtSettings.txtCarton": "Karton", + "PE.Views.TextArtSettings.txtDarkFabric": "Ciemna tkanina", + "PE.Views.TextArtSettings.txtGrain": "Ziarno", + "PE.Views.TextArtSettings.txtGranite": "Granit", + "PE.Views.TextArtSettings.txtGreyPaper": "Szary papier", + "PE.Views.TextArtSettings.txtKnit": "Szydełkowanie", + "PE.Views.TextArtSettings.txtLeather": "Skórzany", + "PE.Views.TextArtSettings.txtNoBorders": "Brak krawędzi", + "PE.Views.TextArtSettings.txtPapyrus": "Papirus", + "PE.Views.TextArtSettings.txtWood": "Drewno", + "PE.Views.Toolbar.capAddSlide": "Dodaj slajd", + "PE.Views.Toolbar.capBtnComment": "Komentarz", + "PE.Views.Toolbar.capInsertChart": "Wykres", + "PE.Views.Toolbar.capInsertEquation": "Równanie", + "PE.Views.Toolbar.capInsertHyperlink": "Hiperlink", + "PE.Views.Toolbar.capInsertImage": "Obraz", + "PE.Views.Toolbar.capInsertShape": "Kształt", + "PE.Views.Toolbar.capInsertTable": "Tabela", + "PE.Views.Toolbar.capInsertText": "Pole tekstowe", + "PE.Views.Toolbar.capTabFile": "Plik", + "PE.Views.Toolbar.capTabHome": "Strona główna", + "PE.Views.Toolbar.capTabInsert": "Wstawić", + "PE.Views.Toolbar.mniCustomTable": "Wstaw tabelę niestandardową", + "PE.Views.Toolbar.mniImageFromFile": "Obraz z pliku", + "PE.Views.Toolbar.mniImageFromUrl": "Obraz z URL", + "PE.Views.Toolbar.mniSlideAdvanced": "Zaawansowane ustawienia", + "PE.Views.Toolbar.mniSlideStandard": "Standard (4: 3)", + "PE.Views.Toolbar.mniSlideWide": "Ekran panoramiczny (16:9)", + "PE.Views.Toolbar.textAlignBottom": "Wyrównaj tekst do dołu", + "PE.Views.Toolbar.textAlignCenter": "Wyśrodkowanie tekstu", + "PE.Views.Toolbar.textAlignJust": "Wyjustuj", + "PE.Views.Toolbar.textAlignLeft": "Wyrównaj tekst do lewej", + "PE.Views.Toolbar.textAlignMiddle": "Wyrównaj tekst do środka", + "PE.Views.Toolbar.textAlignRight": "Wyrównaj tekst do prawej", + "PE.Views.Toolbar.textAlignTop": "Wyrównaj tekst do góry", + "PE.Views.Toolbar.textArea": "Obszar", + "PE.Views.Toolbar.textArrangeBack": "Wyślij do tła", + "PE.Views.Toolbar.textArrangeBackward": "Przenieś do tyłu", + "PE.Views.Toolbar.textArrangeForward": "Przenieś do przodu", + "PE.Views.Toolbar.textArrangeFront": "Przejdź na pierwszy plan", + "PE.Views.Toolbar.textBar": "Pasek", + "PE.Views.Toolbar.textBold": "Pogrubione", + "PE.Views.Toolbar.textCancel": "Anulować", + "PE.Views.Toolbar.textCharts": "Wykresy", + "PE.Views.Toolbar.textColumn": "Kolumna", + "PE.Views.Toolbar.textCompactView": "Wyświetl kompaktowy pasek narzędzi", + "PE.Views.Toolbar.textFitPage": "Dopasuj do slajdu", + "PE.Views.Toolbar.textFitWidth": "Dopasuj do szerokości", + "PE.Views.Toolbar.textHideLines": "Ukryj linijki", + "PE.Views.Toolbar.textHideStatusBar": "Ukryj pasek stanu", + "PE.Views.Toolbar.textHideTitleBar": "Ukryj pasek tytułowy", + "PE.Views.Toolbar.textItalic": "Kursywa", + "PE.Views.Toolbar.textLine": "Wykres", + "PE.Views.Toolbar.textNewColor": "Własny kolor", + "PE.Views.Toolbar.textOK": "OK", + "PE.Views.Toolbar.textPie": "Kołowe", + "PE.Views.Toolbar.textPoint": "XY (Punktowy)", + "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", + "PE.Views.Toolbar.textShapeAlignMiddle": "Wyrównaj do środka", + "PE.Views.Toolbar.textShapeAlignRight": "Wyrównaj do prawej", + "PE.Views.Toolbar.textShapeAlignTop": "Wyrównaj do góry", + "PE.Views.Toolbar.textShowBegin": "Pokaż od początku", + "PE.Views.Toolbar.textShowCurrent": "Pokaż z aktualnego slajdu", + "PE.Views.Toolbar.textShowPresenterView": "Pokaz slajdów w trybie prezentera", + "PE.Views.Toolbar.textShowSettings": "Pokaż ustawienia", + "PE.Views.Toolbar.textStock": "Zbiory", + "PE.Views.Toolbar.textStrikeout": "Skreślenie", + "PE.Views.Toolbar.textSubscript": "Indeks dolny", + "PE.Views.Toolbar.textSuperscript": "Indeks górny", + "PE.Views.Toolbar.textSurface": "Powierzchnia", + "PE.Views.Toolbar.textTabFile": "Plik", + "PE.Views.Toolbar.textTabHome": "Start", + "PE.Views.Toolbar.textTabInsert": "Wstawić", + "PE.Views.Toolbar.textTitleError": "Błąd", + "PE.Views.Toolbar.textUnderline": "Podkreśl", + "PE.Views.Toolbar.textZoom": "Powiększenie", + "PE.Views.Toolbar.tipAddSlide": "Dodaj slajd", + "PE.Views.Toolbar.tipAdvSettings": "Zaawansowane ustawienia", + "PE.Views.Toolbar.tipBack": "Powrót", + "PE.Views.Toolbar.tipChangeChart": "Zmień typ wykresu", + "PE.Views.Toolbar.tipChangeSlide": "Zmień układ slajdów", + "PE.Views.Toolbar.tipClearStyle": "Wyczyść style", + "PE.Views.Toolbar.tipColorSchemas": "Zmień schemat kolorów", + "PE.Views.Toolbar.tipCopy": "Kopiuj", + "PE.Views.Toolbar.tipCopyStyle": "Kopiuj styl", + "PE.Views.Toolbar.tipDecPrLeft": "Zmniejsz wcięcie", + "PE.Views.Toolbar.tipFontColor": "Kolor czcionki", + "PE.Views.Toolbar.tipFontName": "Czcionka", + "PE.Views.Toolbar.tipFontSize": "Rozmiar czcionki", + "PE.Views.Toolbar.tipHAligh": "Wyrównaj poziomo", + "PE.Views.Toolbar.tipHideBars": "Ukryj pasek tytułowy i stanu", + "PE.Views.Toolbar.tipIncPrLeft": "Zwiększ wcięcie", + "PE.Views.Toolbar.tipInsertChart": "Wstaw wykres", + "PE.Views.Toolbar.tipInsertEquation": "Wstaw równanie", + "PE.Views.Toolbar.tipInsertHyperlink": "Dodaj hiperlink", + "PE.Views.Toolbar.tipInsertImage": "Wstaw obraz", + "PE.Views.Toolbar.tipInsertShape": "Wstaw kształt", + "PE.Views.Toolbar.tipInsertTable": "Wstaw tabelę", + "PE.Views.Toolbar.tipInsertText": "Wstaw tekst", + "PE.Views.Toolbar.tipInsertTextArt": "Wstaw tekst Art", + "PE.Views.Toolbar.tipLineSpace": "Rozstaw wierszy", + "PE.Views.Toolbar.tipMarkers": "Lista punktowa", + "PE.Views.Toolbar.tipNumbers": "Lista numeryczna", + "PE.Views.Toolbar.tipPaste": "Wklej", + "PE.Views.Toolbar.tipPreview": "Rozpocznij pokaz slajdów", + "PE.Views.Toolbar.tipPrint": "Wydrukować", + "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.tipShapeAlign": "Wyrównaj kształt", + "PE.Views.Toolbar.tipShapeArrange": "Uformuj kształt", + "PE.Views.Toolbar.tipSlideSize": "Wybierz rozmiar slajdu", + "PE.Views.Toolbar.tipSlideTheme": "Motyw slajdu", + "PE.Views.Toolbar.tipUndo": "Anulować", + "PE.Views.Toolbar.tipVAligh": "Wyrównaj pionowo", + "PE.Views.Toolbar.tipViewSettings": "Wyświetl ustawienia", + "PE.Views.Toolbar.txtDistribHor": "Rozdziel poziomo", + "PE.Views.Toolbar.txtDistribVert": "Rozdziel pionowo", + "PE.Views.Toolbar.txtGroup": "Grupa", + "PE.Views.Toolbar.txtScheme1": "Biuro", + "PE.Views.Toolbar.txtScheme10": "Mediana", + "PE.Views.Toolbar.txtScheme11": "Metro", + "PE.Views.Toolbar.txtScheme12": "Moduł", + "PE.Views.Toolbar.txtScheme13": "Zasobny", + "PE.Views.Toolbar.txtScheme14": "Oriel", + "PE.Views.Toolbar.txtScheme15": "Początek", + "PE.Views.Toolbar.txtScheme16": "Papier", + "PE.Views.Toolbar.txtScheme17": "Przesilenie", + "PE.Views.Toolbar.txtScheme18": "Techniczny", + "PE.Views.Toolbar.txtScheme19": "Trek", + "PE.Views.Toolbar.txtScheme2": "Skala szarości", + "PE.Views.Toolbar.txtScheme20": "Miejski", + "PE.Views.Toolbar.txtScheme21": "Rozmach", + "PE.Views.Toolbar.txtScheme3": "Apex", + "PE.Views.Toolbar.txtScheme4": "Aspekt", + "PE.Views.Toolbar.txtScheme5": "Obywatelski", + "PE.Views.Toolbar.txtScheme6": "Zbiegowisko", + "PE.Views.Toolbar.txtScheme7": "Kapitał", + "PE.Views.Toolbar.txtScheme8": "Przepływ", + "PE.Views.Toolbar.txtScheme9": "Odlewnia", + "PE.Views.Toolbar.txtUngroup": "Rozgrupuj" +} \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 58ea1aac6..6c3d52e8d 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -112,6 +112,7 @@ "Common.Views.OpenDialog.cancelButtonText": "Отмена", "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtEncoding": "Кодировка", + "Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.", "Common.Views.OpenDialog.txtPassword": "Пароль", "Common.Views.OpenDialog.txtTitle": "Выбрать параметры %1", "Common.Views.OpenDialog.txtTitleProtected": "Защищенный файл", @@ -1301,7 +1302,7 @@ "PE.Views.Toolbar.textShapeAlignTop": "Выровнять по верхнему краю", "PE.Views.Toolbar.textShowBegin": "Показ слайдов с начала", "PE.Views.Toolbar.textShowCurrent": "Показ слайдов с текущего слайда", - "PE.Views.Toolbar.textShowPresenterView": "Показать режим докладчика", + "PE.Views.Toolbar.textShowPresenterView": "Показ слайдов в режиме докладчика", "PE.Views.Toolbar.textShowSettings": "Параметры показа слайдов", "PE.Views.Toolbar.textStock": "Биржевая", "PE.Views.Toolbar.textStrikeout": "Зачеркнутый", diff --git a/apps/presentationeditor/main/locale/sk.json b/apps/presentationeditor/main/locale/sk.json index f34972e7e..1e52f38fc 100644 --- a/apps/presentationeditor/main/locale/sk.json +++ b/apps/presentationeditor/main/locale/sk.json @@ -1,28 +1,28 @@ { "Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie", "Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu", - "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.
Iba dvaja používatelia dokážu spolueditovať dokument súčasne.
Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.
Read more\n\n\n\n", + "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.
Iba dvaja používatelia dokážu spolueditovať dokument súčasne.
Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.
Read more", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anonymný", "Common.Controllers.ExternalDiagramEditor.textClose": "Zatvoriť", - "Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.\n\n", + "Common.Controllers.ExternalDiagramEditor.warningText": "Objekt je blokovaný, pretože ho práve upravuje iný používateľ.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Upozornenie", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", - "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly\n\n", + "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", "Common.UI.ExtendedColorDialog.addButtonText": "Pridať", "Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušiť", "Common.UI.ExtendedColorDialog.textCurrent": "Aktuálny", - "Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.\n", + "Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nový", - "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.\n\n\n\n", + "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez farby", "Common.UI.SearchDialog.textHighlight": "Zvýrazniť výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovať veľkosť písmen", - "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text\n\n", + "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text", "Common.UI.SearchDialog.textSearchStart": "Zadať svoj text tu", "Common.UI.SearchDialog.textTitle": "Hľadať", "Common.UI.SearchDialog.textTitle2": "Hľadať", - "Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n", + "Common.UI.SearchDialog.textWholeWords": "Len celé slová", "Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu", "Common.UI.SearchDialog.txtBtnReplace": "Nahradiť", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko", @@ -45,8 +45,8 @@ "Common.Views.About.txtAddress": "adresa:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Lotyšsko, EU, LV-1021", "Common.Views.About.txtLicensee": "DRŽITEĽ LICENCIE", - "Common.Views.About.txtLicensor": "UDEĽOVATEĽ LICENCIE\n", - "Common.Views.About.txtMail": "e-mail: \n", + "Common.Views.About.txtLicensor": "UDEĽOVATEĽ LICENCIE", + "Common.Views.About.txtMail": "e-mail: ", "Common.Views.About.txtPoweredBy": "Poháňaný ", "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verzia", @@ -79,7 +79,7 @@ "Common.Views.ExternalDiagramEditor.textClose": "Zatvoriť", "Common.Views.ExternalDiagramEditor.textSave": "Uložiť a Zavrieť", "Common.Views.ExternalDiagramEditor.textTitle": "Editor grafu", - "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n", + "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.", "Common.Views.Header.textBack": "Prejsť do Dokumentov", "Common.Views.Header.textSaveBegin": "Ukladanie ...", "Common.Views.Header.textSaveChanged": "Modifikovaný", @@ -89,20 +89,20 @@ "Common.Views.Header.tipDownload": "Stiahnuť súbor", "Common.Views.Header.tipGoEdit": "Editovať aktuálny súbor", "Common.Views.Header.tipPrint": "Vytlačiť súbor", - "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n", + "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom", "Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva", "Common.Views.Header.txtRename": "Premenovať", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť", "Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte obrázok URL:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "Common.Views.InsertTableDialog.cancelButtonText": "Zrušiť", "Common.Views.InsertTableDialog.okButtonText": "OK", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte zadať platné číslo riadkov a stĺpcov.\n\n", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Musíte zadať platné číslo riadkov a stĺpcov.", "Common.Views.InsertTableDialog.txtColumns": "Počet stĺpcov", - "Common.Views.InsertTableDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}.\n\n", - "Common.Views.InsertTableDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}.\n\n", + "Common.Views.InsertTableDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}.", + "Common.Views.InsertTableDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}.", "Common.Views.InsertTableDialog.txtRows": "Počet riadkov", "Common.Views.InsertTableDialog.txtTitle": "Veľkosť tabuľky", "Common.Views.InsertTableDialog.txtTitleSplit": "Rozdeliť bunku", @@ -124,42 +124,42 @@ "Common.Views.RenameDialog.cancelButtonText": "Zrušiť", "Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.textName": "Názov súboru", - "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:\n\n", - "PE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaná prezentácia\n\n", - "PE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...\n\n", - "PE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré hľadáte sa nedajú nájsť. Prosím, upravte svoje možnosti vyhľadávania.\n\n", + "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:", + "PE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaná prezentácia", + "PE.Controllers.LeftMenu.requestEditRightsText": "Žiadanie o práva na úpravu ...", + "PE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré hľadáte sa nedajú nájsť. Prosím, upravte svoje možnosti vyhľadávania.", "PE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", "PE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", - "PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n", + "PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", "PE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.", "PE.Controllers.Main.criticalErrorTitle": "Chyba", "PE.Controllers.Main.defaultTitleText": "Editor ONLYOFFICE Prezentácia", "PE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", - "PE.Controllers.Main.downloadTextText": "Sťahovanie prezentácie...\n\n", - "PE.Controllers.Main.downloadTitleText": "Sťahovanie prezentácie\n\n", - "PE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", + "PE.Controllers.Main.downloadTextText": "Sťahovanie prezentácie...", + "PE.Controllers.Main.downloadTitleText": "Sťahovanie prezentácie", + "PE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.\n\n", - "PE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu\n\n\n\n\n\n", - "PE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. \n\n", - "PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", + "PE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu", + "PE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", + "PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", - "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n", - "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n", + "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "PE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo.", - "PE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n", - "PE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.\n\n", - "PE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.\n\n", - "PE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.\n\n", - "PE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", - "PE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", - "PE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. \n\n", - "PE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n", - "PE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n", - "PE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený\n\n", + "PE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "PE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", + "PE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", + "PE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "PE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "PE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "PE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "PE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "PE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "PE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", "PE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", - "PE.Controllers.Main.leavePageText": "V tejto prezentácii máte neuložené zmeny. Kliknite na \"Zostať na tejto stránke\", potom \"Uložiť\" aby sa zmeny uložili. Kliknutím na \"Opustiť túto stránku\" odstránite všetky neuložené zmeny.\n", + "PE.Controllers.Main.leavePageText": "V tejto prezentácii máte neuložené zmeny. Kliknite na \"Zostať na tejto stránke\", potom \"Uložiť\" aby sa zmeny uložili. Kliknutím na \"Opustiť túto stránku\" odstránite všetky neuložené zmeny.", "PE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "PE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "PE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -167,42 +167,42 @@ "PE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", "PE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "PE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "PE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n", - "PE.Controllers.Main.loadingDocumentTextText": "Načítavanie prezentácie...\n\n", - "PE.Controllers.Main.loadingDocumentTitleText": "Načítavanie prezentácie\n\n", - "PE.Controllers.Main.loadThemeTextText": "Načítavanie témy...\n\n", - "PE.Controllers.Main.loadThemeTitleText": "Načítavanie témy\n\n", + "PE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", + "PE.Controllers.Main.loadingDocumentTextText": "Načítavanie prezentácie...", + "PE.Controllers.Main.loadingDocumentTitleText": "Načítavanie prezentácie", + "PE.Controllers.Main.loadThemeTextText": "Načítavanie témy...", + "PE.Controllers.Main.loadThemeTitleText": "Načítavanie témy", "PE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", "PE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", - "PE.Controllers.Main.openTextText": "Otváranie prezentácie...\n", - "PE.Controllers.Main.openTitleText": "Otváranie prezentácie\n\n", + "PE.Controllers.Main.openTextText": "Otváranie prezentácie...", + "PE.Controllers.Main.openTitleText": "Otváranie prezentácie", "PE.Controllers.Main.printTextText": "Tlačenie prezentácie...", "PE.Controllers.Main.printTitleText": "Tlačenie prezentácie", "PE.Controllers.Main.reloadButtonText": "Obnoviť stránku", - "PE.Controllers.Main.requestEditFailedMessageText": "Niekto momentálne upravuje túto prezentáciu. Skúste neskôr prosím.\n\n", + "PE.Controllers.Main.requestEditFailedMessageText": "Niekto momentálne upravuje túto prezentáciu. Skúste neskôr prosím.", "PE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", "PE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "PE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n", - "PE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n", + "PE.Controllers.Main.savePreparingText": "Príprava na uloženie", + "PE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", "PE.Controllers.Main.saveTextText": "Ukladanie prezentácie...", "PE.Controllers.Main.saveTitleText": "Ukladanie prezentácie", - "PE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľný %1.\n\n", - "PE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1.\n\n", - "PE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1.\n\n", + "PE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľný %1.", + "PE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1.", + "PE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1.", "PE.Controllers.Main.textAnonymous": "Anonymný", "PE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "PE.Controllers.Main.textChangesSaved": "Všetky zmeny boli uložené", - "PE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip\n\n", - "PE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n", - "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie\n\n", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n", + "PE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", + "PE.Controllers.Main.textContactUs": "Kontaktujte predajcu", + "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom", "PE.Controllers.Main.textShape": "Tvar", - "PE.Controllers.Main.textStrict": "Prísny režim\n\n", + "PE.Controllers.Main.textStrict": "Prísny režim", "PE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", - "PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n", - "PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n", + "PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", + "PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "PE.Controllers.Main.txtArt": "Váš text tu", - "PE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n", + "PE.Controllers.Main.txtBasicShapes": "Základné tvary", "PE.Controllers.Main.txtButtons": "Tlačidlá", "PE.Controllers.Main.txtCallouts": "Popisky obrázku", "PE.Controllers.Main.txtCharts": "Grafy", @@ -210,16 +210,16 @@ "PE.Controllers.Main.txtDateTime": "Dátum a čas", "PE.Controllers.Main.txtDiagram": "Moderné umenie", "PE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "PE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...\n\n", + "PE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...", "PE.Controllers.Main.txtFiguredArrows": "Šipky", - "PE.Controllers.Main.txtFooter": "Päta stránky\n", + "PE.Controllers.Main.txtFooter": "Päta stránky", "PE.Controllers.Main.txtHeader": "Hlavička", "PE.Controllers.Main.txtImage": "Obrázok", "PE.Controllers.Main.txtLines": "Riadky/čiary", "PE.Controllers.Main.txtLoading": "Nahrávanie...", "PE.Controllers.Main.txtMath": "Matematika", "PE.Controllers.Main.txtMedia": "Médiá ", - "PE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie\n\n", + "PE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", "PE.Controllers.Main.txtPicture": "Obrázok", "PE.Controllers.Main.txtRectangles": "Obdĺžniky", "PE.Controllers.Main.txtSeries": "Rady", @@ -230,20 +230,20 @@ "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Klipart a vertikálny text", "PE.Controllers.Main.txtSldLtTCust": "Vlastný", "PE.Controllers.Main.txtSldLtTDgm": "Diagram", - "PE.Controllers.Main.txtSldLtTFourObj": "Štyri objekty\n\n", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Médiá a text\n\n", + "PE.Controllers.Main.txtSldLtTFourObj": "Štyri objekty", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Médiá a text", "PE.Controllers.Main.txtSldLtTObj": "Názov a objekt", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt a dva objekty\n\n", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt a dva objekty", "PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt a text", "PE.Controllers.Main.txtSldLtTObjOnly": "Objekt", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad textom\n\n", - "PE.Controllers.Main.txtSldLtTObjTx": "Názov, objekt a titulok\n\n", - "PE.Controllers.Main.txtSldLtTPicTx": "Obraz a titulok\n\n", - "PE.Controllers.Main.txtSldLtTSecHead": "Záhlavie sekcie\n", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad textom", + "PE.Controllers.Main.txtSldLtTObjTx": "Názov, objekt a titulok", + "PE.Controllers.Main.txtSldLtTPicTx": "Obraz a titulok", + "PE.Controllers.Main.txtSldLtTSecHead": "Záhlavie sekcie", "PE.Controllers.Main.txtSldLtTTbl": "Tabuľka", "PE.Controllers.Main.txtSldLtTTitle": "Názov", "PE.Controllers.Main.txtSldLtTTitleOnly": "Iba názov", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Text dvojstĺpca\n\n", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Text dvojstĺpca", "PE.Controllers.Main.txtSldLtTTwoObj": "Dva objekty", "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dva objekty a objekt", "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dva objekty a text", @@ -256,34 +256,34 @@ "PE.Controllers.Main.txtSldLtTTxAndObj": "Text a objekt", "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text a dva objekty", "PE.Controllers.Main.txtSldLtTTxOverObj": "Text nad objektom", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikálny názov a text\n\n", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikálny názov a text nad grafom\n\n", - "PE.Controllers.Main.txtSldLtTVertTx": "Vertikálny text\n\n", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikálny názov a text", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikálny názov a text nad grafom", + "PE.Controllers.Main.txtSldLtTVertTx": "Vertikálny text", "PE.Controllers.Main.txtSlideNumber": "Číslo snímku", "PE.Controllers.Main.txtSlideSubtitle": "Podtitul snímku", "PE.Controllers.Main.txtSlideText": "Text snímku", "PE.Controllers.Main.txtSlideTitle": "Názov snímku", - "PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n", - "PE.Controllers.Main.txtXAxis": "Os X\n\n", - "PE.Controllers.Main.txtYAxis": "Os Y\n\n", + "PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", + "PE.Controllers.Main.txtXAxis": "Os X", + "PE.Controllers.Main.txtYAxis": "Os Y", "PE.Controllers.Main.unknownErrorText": "Neznáma chyba.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.\n\n", - "PE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n", - "PE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n", + "PE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", + "PE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", "PE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka", "PE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "PE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "PE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.\n\n", + "PE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.", "PE.Controllers.Main.warnBrowserZoom": "Súčasné nastavenie priblíženia nie je plne podporované prehliadačom. Obnovte štandardné priblíženie stlačením klávesov Ctrl+0.", - "PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n", - "PE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n", + "PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "PE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.", "PE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "PE.Controllers.Statusbar.zoomText": "Priblíženie {0}%", - "PE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?\n\n\n\n", + "PE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?", "PE.Controllers.Toolbar.textAccent": "Akcenty", "PE.Controllers.Toolbar.textBracket": "Zátvorky", "PE.Controllers.Toolbar.textEmptyImgUrl": "Musíte upresniť URL obrázka.", - "PE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 100.\n", + "PE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 100.", "PE.Controllers.Toolbar.textFraction": "Zlomky", "PE.Controllers.Toolbar.textFunction": "Funkcie", "PE.Controllers.Toolbar.textIntegral": "Integrály", @@ -335,7 +335,7 @@ "PE.Controllers.Toolbar.txtBracket_Custom_2": "Prípady (Tri podmienky)", "PE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt", "PE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt", - "PE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov", "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient", "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient", "PE.Controllers.Toolbar.txtBracket_Line": "Zátvorky", @@ -370,7 +370,7 @@ "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferenciál", "PE.Controllers.Toolbar.txtFractionHorizontal": "Lineárny zlomok", "PE.Controllers.Toolbar.txtFractionPi_2": "Pí lomeno dvoma", - "PE.Controllers.Toolbar.txtFractionSmall": "Malý zlomok\n", + "PE.Controllers.Toolbar.txtFractionSmall": "Malý zlomok", "PE.Controllers.Toolbar.txtFractionVertical": "Lomený výraz", "PE.Controllers.Toolbar.txtFunction_1_Cos": "Inverzná funkcia kosínus", "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Inverzná funkcia hyperbolický kosínus", @@ -523,7 +523,7 @@ "PE.Controllers.Toolbar.txtScriptCustom_4": "Skript", "PE.Controllers.Toolbar.txtScriptSub": "Dolný index", "PE.Controllers.Toolbar.txtScriptSubSup": "Dolný index - Horný index", - "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Ľavý dolný index - horný index\n\n", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Ľavý dolný index - horný index", "PE.Controllers.Toolbar.txtScriptSup": "Horný index", "PE.Controllers.Toolbar.txtSymbol_about": "Približne", "PE.Controllers.Toolbar.txtSymbol_additional": "Doplnok/doplnenie", @@ -536,21 +536,21 @@ "PE.Controllers.Toolbar.txtSymbol_bullet": "Operátor odrážka ", "PE.Controllers.Toolbar.txtSymbol_cap": "Prienik", "PE.Controllers.Toolbar.txtSymbol_cbrt": "Tretia odmocnina", - "PE.Controllers.Toolbar.txtSymbol_cdots": "Strednica horizontálnej elipsy\n", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Strednica horizontálnej elipsy", "PE.Controllers.Toolbar.txtSymbol_celsius": "Stupne Celzia", "PE.Controllers.Toolbar.txtSymbol_chi": "Chí ", "PE.Controllers.Toolbar.txtSymbol_cong": "Približne sa rovná", "PE.Controllers.Toolbar.txtSymbol_cup": "Zjednotenie", - "PE.Controllers.Toolbar.txtSymbol_ddots": "Dolná pravá diagonálna elipsa \n\n", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Dolná pravá diagonálna elipsa ", "PE.Controllers.Toolbar.txtSymbol_degree": "Stupeň", "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", "PE.Controllers.Toolbar.txtSymbol_div": "Znak delenia", "PE.Controllers.Toolbar.txtSymbol_downarrow": "Šípka dole", "PE.Controllers.Toolbar.txtSymbol_emptyset": "Prázdna množina", - "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon (grécke písmeno E)\n", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon (grécke písmeno E)", "PE.Controllers.Toolbar.txtSymbol_equals": "Rovná sa", - "PE.Controllers.Toolbar.txtSymbol_equiv": "Rovnaké ako\n\n", - "PE.Controllers.Toolbar.txtSymbol_eta": "H (grécke písmeno)\n", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Rovnaké ako", + "PE.Controllers.Toolbar.txtSymbol_eta": "H (grécke písmeno)", "PE.Controllers.Toolbar.txtSymbol_exists": "Existuje", "PE.Controllers.Toolbar.txtSymbol_factorial": "Faktoriál", "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Stupňov Fahrenheita", @@ -573,13 +573,13 @@ "PE.Controllers.Toolbar.txtSymbol_minus": "Mínus", "PE.Controllers.Toolbar.txtSymbol_mp": "Mínus plus", "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", - "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla\n", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", "PE.Controllers.Toolbar.txtSymbol_neq": "Nerovná sa", - "PE.Controllers.Toolbar.txtSymbol_ni": "Obsahuje ako člena\n\n", - "PE.Controllers.Toolbar.txtSymbol_not": "Nepopísať/bez znaku\n\n", - "PE.Controllers.Toolbar.txtSymbol_notexists": "Tam neexistuje\n\n", + "PE.Controllers.Toolbar.txtSymbol_ni": "Obsahuje ako člena", + "PE.Controllers.Toolbar.txtSymbol_not": "Nepopísať/bez znaku", + "PE.Controllers.Toolbar.txtSymbol_notexists": "Tam neexistuje", "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", - "PE.Controllers.Toolbar.txtSymbol_o": "Omicron\n\n", + "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", "PE.Controllers.Toolbar.txtSymbol_partial": "Parciálny diferenciál", "PE.Controllers.Toolbar.txtSymbol_percent": "Percentuálny podiel", @@ -591,7 +591,7 @@ "PE.Controllers.Toolbar.txtSymbol_psi": "Psí", "PE.Controllers.Toolbar.txtSymbol_qdrt": "Štvrtá odmocnina", "PE.Controllers.Toolbar.txtSymbol_qed": "Znak koniec dôkazu", - "PE.Controllers.Toolbar.txtSymbol_rddots": "Horná pravá diagonálna elipsa/vypustenie\n\n", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Horná pravá diagonálna elipsa/vypustenie", "PE.Controllers.Toolbar.txtSymbol_rho": "Ró", "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Pravá šípka", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma ", @@ -603,12 +603,12 @@ "PE.Controllers.Toolbar.txtSymbol_uparrow": "Šípka hore", "PE.Controllers.Toolbar.txtSymbol_upsilon": "Ypsilon", "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant epsilonu", - "PE.Controllers.Toolbar.txtSymbol_varphi": "Fí Variant\n\n", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Fí Variant", "PE.Controllers.Toolbar.txtSymbol_varpi": "Pí variant", "PE.Controllers.Toolbar.txtSymbol_varrho": "Ró variant", "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", "PE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Theta", - "PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie\n\n", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie", "PE.Controllers.Toolbar.txtSymbol_xsi": "Ksí ", "PE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", "PE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia", @@ -618,7 +618,7 @@ "PE.Views.ChartSettings.textColumn": "Stĺpec", "PE.Views.ChartSettings.textEditData": "Upravovať dáta", "PE.Views.ChartSettings.textHeight": "Výška", - "PE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery\n\n\n", + "PE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery", "PE.Views.ChartSettings.textLine": "Čiara/líniový graf", "PE.Views.ChartSettings.textPie": "Koláčový graf", "PE.Views.ChartSettings.textPoint": "Bodový graf", @@ -659,8 +659,8 @@ "PE.Views.DocumentHolder.hyperlinkText": "Hypertextový odkaz", "PE.Views.DocumentHolder.ignoreAllSpellText": "Ignorovať všetko", "PE.Views.DocumentHolder.ignoreSpellText": "Ignorovať", - "PE.Views.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo\n\n", - "PE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo\n\n", + "PE.Views.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo", + "PE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo", "PE.Views.DocumentHolder.insertColumnText": "Vložiť stĺpec", "PE.Views.DocumentHolder.insertRowAboveText": "Riadok nad", "PE.Views.DocumentHolder.insertRowBelowText": "Riadok pod", @@ -671,7 +671,7 @@ "PE.Views.DocumentHolder.loadSpellText": "Načítavanie variantov ...", "PE.Views.DocumentHolder.mergeCellsText": "Zlúčiť bunky", "PE.Views.DocumentHolder.moreText": "Viac variantov...", - "PE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty\n\n", + "PE.Views.DocumentHolder.noSpellVariantsText": "Žiadne varianty", "PE.Views.DocumentHolder.originalSizeText": "Predvolená veľkosť", "PE.Views.DocumentHolder.removeHyperlinkText": "Odstrániť hypertextový odkaz", "PE.Views.DocumentHolder.rightText": "Vpravo", @@ -698,40 +698,40 @@ "PE.Views.DocumentHolder.textShapeAlignTop": "Zarovnať nahor", "PE.Views.DocumentHolder.textSlideSettings": "Nastavenia snímky", "PE.Views.DocumentHolder.textUndo": "Krok späť", - "PE.Views.DocumentHolder.tipIsLocked": "Túto časť momentálne upravuje iný používateľ.\n\n", + "PE.Views.DocumentHolder.tipIsLocked": "Túto časť momentálne upravuje iný používateľ.", "PE.Views.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie", "PE.Views.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov", "PE.Views.DocumentHolder.txtAddHor": "Pridať vodorovnú čiaru", - "PE.Views.DocumentHolder.txtAddLB": "Pridať ľavý spodný riadok\n\n", + "PE.Views.DocumentHolder.txtAddLB": "Pridať ľavý spodný riadok", "PE.Views.DocumentHolder.txtAddLeft": "Pridať ľavé orámovanie", - "PE.Views.DocumentHolder.txtAddLT": "Pridať ľavý horný riadok\n", + "PE.Views.DocumentHolder.txtAddLT": "Pridať ľavý horný riadok", "PE.Views.DocumentHolder.txtAddRight": "Pridať pravé orámovanie", "PE.Views.DocumentHolder.txtAddTop": "Pridať horné orámovanie", "PE.Views.DocumentHolder.txtAddVer": "Pridať zvislú čiaru", "PE.Views.DocumentHolder.txtAlign": "Zarovnať", - "PE.Views.DocumentHolder.txtAlignToChar": "Zarovnať na znak\n\n", + "PE.Views.DocumentHolder.txtAlignToChar": "Zarovnať na znak", "PE.Views.DocumentHolder.txtArrange": "Upraviť/usporiadať/zarovnať", "PE.Views.DocumentHolder.txtBackground": "Pozadie", "PE.Views.DocumentHolder.txtBorderProps": "Vlastnosti orámovania", "PE.Views.DocumentHolder.txtBottom": "Dole", - "PE.Views.DocumentHolder.txtChangeLayout": "Zmeniť rozloženie\n\n", + "PE.Views.DocumentHolder.txtChangeLayout": "Zmeniť rozloženie", "PE.Views.DocumentHolder.txtChangeTheme": "Zmeniť tému", - "PE.Views.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov\n\n", - "PE.Views.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu\n\n", - "PE.Views.DocumentHolder.txtDeleteArg": "Odstrániť obsah\n\n", + "PE.Views.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov", + "PE.Views.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu", + "PE.Views.DocumentHolder.txtDeleteArg": "Odstrániť obsah", "PE.Views.DocumentHolder.txtDeleteBreak": "Odstrániť manuálny rozdeľovač", - "PE.Views.DocumentHolder.txtDeleteChars": "Odstrániť uzatváracie znaky\n\n", - "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Odstrániť uzatváracie znaky a oddeľovače\n\n", - "PE.Views.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu\n\n", - "PE.Views.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak\n\n", + "PE.Views.DocumentHolder.txtDeleteChars": "Odstrániť uzatváracie znaky", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Odstrániť uzatváracie znaky a oddeľovače", + "PE.Views.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak", "PE.Views.DocumentHolder.txtDeleteRadical": "Odstrániť odmocninu", "PE.Views.DocumentHolder.txtDeleteSlide": "Odstrániť snímku", - "PE.Views.DocumentHolder.txtDistribHor": "Rozložiť horizontálne\n\n", - "PE.Views.DocumentHolder.txtDistribVert": "Rozložiť vertikálne\n", + "PE.Views.DocumentHolder.txtDistribHor": "Rozložiť horizontálne", + "PE.Views.DocumentHolder.txtDistribVert": "Rozložiť vertikálne", "PE.Views.DocumentHolder.txtDuplicateSlide": "Kopírovať snímku", - "PE.Views.DocumentHolder.txtFractionLinear": "Zmeniť na lineárny zlomok\n\n", - "PE.Views.DocumentHolder.txtFractionSkewed": "Zmeniť na skosený zlomok\n\n", - "PE.Views.DocumentHolder.txtFractionStacked": "Zmeniť na zložený zlomok\n\n", + "PE.Views.DocumentHolder.txtFractionLinear": "Zmeniť na lineárny zlomok", + "PE.Views.DocumentHolder.txtFractionSkewed": "Zmeniť na skosený zlomok", + "PE.Views.DocumentHolder.txtFractionStacked": "Zmeniť na zložený zlomok", "PE.Views.DocumentHolder.txtGroup": "Skupina", "PE.Views.DocumentHolder.txtGroupCharOver": "Zadať nad text", "PE.Views.DocumentHolder.txtGroupCharUnder": "Zadať pod text", @@ -740,29 +740,29 @@ "PE.Views.DocumentHolder.txtHideCloseBracket": "Skryť konečnú/záverečnú zátvorku", "PE.Views.DocumentHolder.txtHideDegree": "Skryť stupeň", "PE.Views.DocumentHolder.txtHideHor": "Skryť vodorovnú čiaru", - "PE.Views.DocumentHolder.txtHideLB": "Skryť ľavý dolný riadok\n\n\n", + "PE.Views.DocumentHolder.txtHideLB": "Skryť ľavý dolný riadok", "PE.Views.DocumentHolder.txtHideLeft": "Skryť ľavé orámovanie", - "PE.Views.DocumentHolder.txtHideLT": "Skryť ľavý horný riadok\n\n", + "PE.Views.DocumentHolder.txtHideLT": "Skryť ľavý horný riadok", "PE.Views.DocumentHolder.txtHideOpenBracket": "Skryť začiatočnú/úvodnú zátvorku", - "PE.Views.DocumentHolder.txtHidePlaceholder": "Skryť vlastníka/náhradu textu\n", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Skryť vlastníka/náhradu textu", "PE.Views.DocumentHolder.txtHideRight": "Skryť pravé orámovanie", "PE.Views.DocumentHolder.txtHideTop": "Skryť horné orámovanie", "PE.Views.DocumentHolder.txtHideTopLimit": "Skryť horné ohraničenie", - "PE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru\n\n", + "PE.Views.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru", "PE.Views.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu", - "PE.Views.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po\n\n", - "PE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred\n", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred", "PE.Views.DocumentHolder.txtInsertBreak": "Vložiť manuálny rozdeľovač", "PE.Views.DocumentHolder.txtInsertEqAfter": "Vložiť rovnicu po", "PE.Views.DocumentHolder.txtInsertEqBefore": "Vložiť rovnicu pred", - "PE.Views.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia\n\n", + "PE.Views.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia", "PE.Views.DocumentHolder.txtLimitOver": "Limita nad textom", "PE.Views.DocumentHolder.txtLimitUnder": "Limita pod textom", - "PE.Views.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu\n\n", + "PE.Views.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu", "PE.Views.DocumentHolder.txtMatrixAlign": "Zarovnanie matice", "PE.Views.DocumentHolder.txtNewSlide": "Nová snímka", "PE.Views.DocumentHolder.txtOverbar": "Čiara nad textom", - "PE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz\n\n", + "PE.Views.DocumentHolder.txtPressLink": "Stlačte CTRL a kliknite na odkaz", "PE.Views.DocumentHolder.txtPreview": "Spustiť prezentáciu", "PE.Views.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", "PE.Views.DocumentHolder.txtRemLimit": "Odstrániť limitu", @@ -771,17 +771,17 @@ "PE.Views.DocumentHolder.txtRemScripts": "Odstrániť skripty", "PE.Views.DocumentHolder.txtRemSubscript": "Odstrániť dolný index", "PE.Views.DocumentHolder.txtRemSuperscript": "Odstrániť horný index", - "PE.Views.DocumentHolder.txtScriptsAfter": "Zápisy za textom\n\n", - "PE.Views.DocumentHolder.txtScriptsBefore": "Zápisy pred textom\n", + "PE.Views.DocumentHolder.txtScriptsAfter": "Zápisy za textom", + "PE.Views.DocumentHolder.txtScriptsBefore": "Zápisy pred textom", "PE.Views.DocumentHolder.txtSelectAll": "Vybrať všetko", - "PE.Views.DocumentHolder.txtShowBottomLimit": "Zobraziť dolnú hranicu\n\n", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Zobraziť dolnú hranicu", "PE.Views.DocumentHolder.txtShowCloseBracket": "Zobraziť konečné zátvorky", - "PE.Views.DocumentHolder.txtShowDegree": "Zobraziť stupeň\n\n", + "PE.Views.DocumentHolder.txtShowDegree": "Zobraziť stupeň", "PE.Views.DocumentHolder.txtShowOpenBracket": "Zobraziť začiatočné zátvorky", "PE.Views.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka", - "PE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n", + "PE.Views.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu", "PE.Views.DocumentHolder.txtSlide": "Snímka", - "PE.Views.DocumentHolder.txtSlideHide": "Skryť snímok\n\n", + "PE.Views.DocumentHolder.txtSlideHide": "Skryť snímok", "PE.Views.DocumentHolder.txtStretchBrackets": "Zložená zátvorka", "PE.Views.DocumentHolder.txtTop": "Hore", "PE.Views.DocumentHolder.txtUnderbar": "Čiara pod textom", @@ -791,12 +791,12 @@ "PE.Views.DocumentPreview.slideIndexText": "Snímka {0} z {1}", "PE.Views.DocumentPreview.txtClose": "Zatvoriť prezentáciu", "PE.Views.DocumentPreview.txtEndSlideshow": "Ukončiť prezentáciu", - "PE.Views.DocumentPreview.txtExitFullScreen": "Ukončiť celú obrazovku\n\n", + "PE.Views.DocumentPreview.txtExitFullScreen": "Ukončiť celú obrazovku", "PE.Views.DocumentPreview.txtFinalMessage": "Koniec prezentácie. Kliknutím ukončite.", "PE.Views.DocumentPreview.txtFullScreen": "Celá obrazovka", "PE.Views.DocumentPreview.txtNext": "Nasledujúca snímka", "PE.Views.DocumentPreview.txtPageNumInvalid": "Neplatné číslo snímky", - "PE.Views.DocumentPreview.txtPause": "Pozastaviť prezentáciu\n\n", + "PE.Views.DocumentPreview.txtPause": "Pozastaviť prezentáciu", "PE.Views.DocumentPreview.txtPlay": "Začať prezentáciu", "PE.Views.DocumentPreview.txtPrev": "Predchádzajúca snímka", "PE.Views.DocumentPreview.txtReset": "Obnoviť", @@ -806,11 +806,11 @@ "PE.Views.FileMenu.btnCreateNewCaption": "Vytvoriť nový", "PE.Views.FileMenu.btnDownloadCaption": "Stiahnuť ako...", "PE.Views.FileMenu.btnHelpCaption": "Pomoc...", - "PE.Views.FileMenu.btnInfoCaption": "Informácie o prezentácii...\n\n", + "PE.Views.FileMenu.btnInfoCaption": "Informácie o prezentácii...", "PE.Views.FileMenu.btnPrintCaption": "Tlačiť", - "PE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...\n\n", + "PE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...", "PE.Views.FileMenu.btnRenameCaption": "Premenovať ..", - "PE.Views.FileMenu.btnReturnCaption": "Späť na prezentáciu\n\n", + "PE.Views.FileMenu.btnReturnCaption": "Späť na prezentáciu", "PE.Views.FileMenu.btnRightsCaption": "Prístupové práva...", "PE.Views.FileMenu.btnSaveAsCaption": "Uložiť ako", "PE.Views.FileMenu.btnSaveCaption": "Uložiť", @@ -818,28 +818,28 @@ "PE.Views.FileMenu.btnToEditCaption": "Upraviť prezentáciu", "PE.Views.FileMenuPanels.CreateNew.fromBlankText": "Z prázdneho", "PE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Zo šablóny", - "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Vytvorte novú prázdnu prezentáciu, ktorú budete môcť štýlovať a formátovať po jej vytvorení počas úpravy. Alebo si vyberte jednu zo šablón, aby ste spustili prezentáciu určitého typu alebo účelu, kde niektoré štýly už boli predbežne aplikované.\n\n\n\n", + "PE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Vytvorte novú prázdnu prezentáciu, ktorú budete môcť štýlovať a formátovať po jej vytvorení počas úpravy. Alebo si vyberte jednu zo šablón, aby ste spustili prezentáciu určitého typu alebo účelu, kde niektoré štýly už boli predbežne aplikované.", "PE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nová prezentácia", - "PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Neexistujú žiadne šablóny\n\n", + "PE.Views.FileMenuPanels.CreateNew.noTemplatesText": "Neexistujú žiadne šablóny", "PE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "PE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmeniť prístupové práva", "PE.Views.FileMenuPanels.DocumentInfo.txtDate": "Dátum vytvorenia", "PE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Umiestnenie", "PE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby s oprávneniami", - "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie\n\n", + "PE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Názov prezentácie", "PE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmeniť prístupové práva", "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "PE.Views.FileMenuPanels.Settings.okButtonText": "Použiť", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Zapnúť tipy zarovnávania", "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Zapnúť automatickú obnovu", - "PE.Views.FileMenuPanels.Settings.strAutosave": "Zapnúť automatické ukladanie\n\n", + "PE.Views.FileMenuPanels.Settings.strAutosave": "Zapnúť automatické ukladanie", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Režim spoločnej úpravy", - "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz\n\n", + "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "PE.Views.FileMenuPanels.Settings.strFast": "Rýchly", - "PE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)\n\n", - "PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy\n\n", - "PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase\n\n", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)", + "PE.Views.FileMenuPanels.Settings.strInputMode": "Zapnúť hieroglyfy", + "PE.Views.FileMenuPanels.Settings.strShowChanges": "Zmeny spolupráce v reálnom čase", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Zapnúť kontrolu pravopisu", "PE.Views.FileMenuPanels.Settings.strStrict": "Prísny", "PE.Views.FileMenuPanels.Settings.strUnit": "Jednotka merania", @@ -858,8 +858,8 @@ "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Prispôsobiť snímke", "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Prispôsobiť na šírku", - "PE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)\n", - "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatívny vstup\n\n", + "PE.Views.FileMenuPanels.Settings.txtInch": "Palec (miera 2,54 cm)", + "PE.Views.FileMenuPanels.Settings.txtInput": "Alternatívny vstup", "PE.Views.FileMenuPanels.Settings.txtLast": "Zobraziť posledný", "PE.Views.FileMenuPanels.Settings.txtPt": "Bod", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Kontrola pravopisu", @@ -867,17 +867,17 @@ "PE.Views.HyperlinkSettingsDialog.okButtonText": "OK", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Zobraziť", "PE.Views.HyperlinkSettingsDialog.strLinkTo": "Odkaz na", - "PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Vybrať miesto v tomto dokumente\n\n", - "PE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok\n", - "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Tu zadajte popis/nadpis\n\n", - "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz\n\n", - "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku\n\n", + "PE.Views.HyperlinkSettingsDialog.strPlaceInDocument": "Vybrať miesto v tomto dokumente", + "PE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný textový úryvok", + "PE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Tu zadajte popis/nadpis", + "PE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz", + "PE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku", "PE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", - "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii\n\n", + "PE.Views.HyperlinkSettingsDialog.textInternalLink": "Snímok v tejto prezentácii", "PE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu", "PE.Views.HyperlinkSettingsDialog.textTipText": "Popis", "PE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", - "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "PE.Views.HyperlinkSettingsDialog.txtFirst": "Prvá snímka", "PE.Views.HyperlinkSettingsDialog.txtLast": "Posledná snímka", "PE.Views.HyperlinkSettingsDialog.txtNext": "Nasledujúca snímka", @@ -886,7 +886,7 @@ "PE.Views.HyperlinkSettingsDialog.txtSlide": "Snímka", "PE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.ImageSettings.textEdit": "Upraviť", - "PE.Views.ImageSettings.textEditObject": "Upraviť objekt\n\n", + "PE.Views.ImageSettings.textEditObject": "Upraviť objekt", "PE.Views.ImageSettings.textFromFile": "Zo súboru", "PE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "PE.Views.ImageSettings.textHeight": "Výška", @@ -901,7 +901,7 @@ "PE.Views.ImageSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "PE.Views.ImageSettingsAdvanced.textAltTitle": "Názov", "PE.Views.ImageSettingsAdvanced.textHeight": "Výška", - "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n", + "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Konštantné rozmery", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Predvolená veľkosť", "PE.Views.ImageSettingsAdvanced.textPlacement": "Umiestnenie", "PE.Views.ImageSettingsAdvanced.textPosition": "Pozícia", @@ -923,7 +923,7 @@ "PE.Views.ParagraphSettings.strSpacingBefore": "Pred", "PE.Views.ParagraphSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.ParagraphSettings.textAt": "V/na", - "PE.Views.ParagraphSettings.textAtLeast": "Najmenej\n\n", + "PE.Views.ParagraphSettings.textAtLeast": "Najmenej", "PE.Views.ParagraphSettings.textAuto": "Násobky", "PE.Views.ParagraphSettings.textExact": "Presne", "PE.Views.ParagraphSettings.txtAutoText": "Automaticky", @@ -931,8 +931,8 @@ "PE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli", "PE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým", - "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie\n", - "PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok\n\n", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", + "PE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok", "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", "PE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo", @@ -972,7 +972,7 @@ "PE.Views.ShapeSettings.strTransparency": "Priehľadnosť", "PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", - "PE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.\n", + "PE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.", "PE.Views.ShapeSettings.textColor": "Vyplniť farbou", "PE.Views.ShapeSettings.textDirection": "Smer", "PE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", @@ -991,9 +991,9 @@ "PE.Views.ShapeSettings.textStyle": "Štýl", "PE.Views.ShapeSettings.textTexture": "Z textúry", "PE.Views.ShapeSettings.textTile": "Dlaždica", - "PE.Views.ShapeSettings.txtBrownPaper": "Hnedý/baliaci papier\n", + "PE.Views.ShapeSettings.txtBrownPaper": "Hnedý/baliaci papier", "PE.Views.ShapeSettings.txtCanvas": "Plátno", - "PE.Views.ShapeSettings.txtCarton": "Kartón\n", + "PE.Views.ShapeSettings.txtCarton": "Kartón", "PE.Views.ShapeSettings.txtDarkFabric": "Tmavá štruktúra", "PE.Views.ShapeSettings.txtGrain": "Textúra/zrnitosť", "PE.Views.ShapeSettings.txtGranite": "Mramorovaný", @@ -1006,7 +1006,7 @@ "PE.Views.ShapeSettingsAdvanced.cancelButtonText": "Zrušiť", "PE.Views.ShapeSettingsAdvanced.okButtonText": "OK", "PE.Views.ShapeSettingsAdvanced.strColumns": "Stĺpce", - "PE.Views.ShapeSettingsAdvanced.strMargins": "Textová výplň\n\n", + "PE.Views.ShapeSettingsAdvanced.strMargins": "Textová výplň", "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatívny text", "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Popis", "PE.Views.ShapeSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", @@ -1016,25 +1016,25 @@ "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku", "PE.Views.ShapeSettingsAdvanced.textBevel": "Skosenie", "PE.Views.ShapeSettingsAdvanced.textBottom": "Dole", - "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca", "PE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", "PE.Views.ShapeSettingsAdvanced.textHeight": "Výška", - "PE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n", - "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n", + "PE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia", + "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery", "PE.Views.ShapeSettingsAdvanced.textLeft": "Vľavo", - "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary\n\n", + "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary", "PE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", "PE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "PE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", "PE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", - "PE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami\n\n", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami", "PE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec", "PE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia", "PE.Views.ShapeSettingsAdvanced.textTop": "Hore", - "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru\n\n", + "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru", "PE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "PE.Views.ShapeSettingsAdvanced.txtNone": "Žiadny", "PE.Views.SlideSettings.strBackground": "Farba pozadia", @@ -1045,7 +1045,7 @@ "PE.Views.SlideSettings.strFill": "Pozadie", "PE.Views.SlideSettings.strForeground": "Farba popredia", "PE.Views.SlideSettings.strPattern": "Vzor", - "PE.Views.SlideSettings.strStartOnClick": "Začať kliknutím\n\n", + "PE.Views.SlideSettings.strStartOnClick": "Začať kliknutím", "PE.Views.SlideSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "PE.Views.SlideSettings.textApplyAll": "Použiť na všetky snímky", "PE.Views.SlideSettings.textBlack": "Prostredníctvom čiernej", @@ -1076,7 +1076,7 @@ "PE.Views.SlideSettings.textPreview": "Náhľad", "PE.Views.SlideSettings.textPush": "Posunúť", "PE.Views.SlideSettings.textRadial": "Kruhový/hviezdicovitý", - "PE.Views.SlideSettings.textReset": "Obnoviť zmeny\n\n", + "PE.Views.SlideSettings.textReset": "Obnoviť zmeny", "PE.Views.SlideSettings.textRight": "Vpravo", "PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectTexture": "Vybrať", @@ -1098,9 +1098,9 @@ "PE.Views.SlideSettings.textZoomIn": "Priblížiť", "PE.Views.SlideSettings.textZoomOut": "Oddialiť", "PE.Views.SlideSettings.textZoomRotate": "Priblížiť a otáčať", - "PE.Views.SlideSettings.txtBrownPaper": "Hnedý/baliaci papier\n", + "PE.Views.SlideSettings.txtBrownPaper": "Hnedý/baliaci papier", "PE.Views.SlideSettings.txtCanvas": "Plátno", - "PE.Views.SlideSettings.txtCarton": "Kartón\n", + "PE.Views.SlideSettings.txtCarton": "Kartón", "PE.Views.SlideSettings.txtDarkFabric": "Tmavá štruktúra", "PE.Views.SlideSettings.txtGrain": "Textúra/zrnitosť", "PE.Views.SlideSettings.txtGranite": "Mramorovaný", @@ -1127,12 +1127,12 @@ "PE.Views.SlideSizeSettings.txtA4": "Papier A4 (210x297 mm)", "PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Papier (250x353 mm)", "PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Papier (176x250 mm)", - "PE.Views.SlideSizeSettings.txtBanner": "Úvodný nadpis/titulok\n", + "PE.Views.SlideSizeSettings.txtBanner": "Úvodný nadpis/titulok", "PE.Views.SlideSizeSettings.txtCustom": "Vlastný", - "PE.Views.SlideSizeSettings.txtLedger": "Kancelársky papier (11 x 17 palcov)\n\n", - "PE.Views.SlideSizeSettings.txtLetter": "Listový papier (8,5 x 11 palcov)\n\n", + "PE.Views.SlideSizeSettings.txtLedger": "Kancelársky papier (11 x 17 palcov)", + "PE.Views.SlideSizeSettings.txtLetter": "Listový papier (8,5 x 11 palcov)", "PE.Views.SlideSizeSettings.txtOverhead": "Horný", - "PE.Views.SlideSizeSettings.txtStandard": "Štandard (4:3)\n", + "PE.Views.SlideSizeSettings.txtStandard": "Štandard (4:3)", "PE.Views.SlideSizeSettings.txtWidescreen1": "Širokouhlý (16:9)", "PE.Views.SlideSizeSettings.txtWidescreen2": "Širokouhlý (16:10)", "PE.Views.Statusbar.goToPageText": "Prejsť na snímku", @@ -1142,7 +1142,7 @@ "PE.Views.Statusbar.tipFitWidth": "Prispôsobiť na šírku", "PE.Views.Statusbar.tipPreview": "Spustiť prezentáciu", "PE.Views.Statusbar.tipSetDocLang": "Nastaviť jazyk dokumentov", - "PE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu\n\n", + "PE.Views.Statusbar.tipSetLang": "Nastaviť jazyk textu", "PE.Views.Statusbar.tipSetSpelling": "Kontrola pravopisu", "PE.Views.Statusbar.tipZoomFactor": "Priblíženie", "PE.Views.Statusbar.tipZoomIn": "Priblížiť", @@ -1169,7 +1169,7 @@ "PE.Views.TableSettings.textBorders": "Štýl orámovania", "PE.Views.TableSettings.textColumns": "Stĺpce", "PE.Views.TableSettings.textEdit": "Riadky a stĺpce", - "PE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny\n\n", + "PE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny", "PE.Views.TableSettings.textFirst": "Prvý", "PE.Views.TableSettings.textHeader": "Hlavička", "PE.Views.TableSettings.textLast": "Posledný", @@ -1180,9 +1180,9 @@ "PE.Views.TableSettings.textTotal": "Celkovo", "PE.Views.TableSettings.tipAll": "Nastaviť vonkajšie orámovanie a všetky vnútorné čiary", "PE.Views.TableSettings.tipBottom": "Nastaviť len spodné vonkajšie orámovanie", - "PE.Views.TableSettings.tipInner": "Nastaviť len vnútorné čiary\n\n", - "PE.Views.TableSettings.tipInnerHor": "Nastaviť iba horizontálne vnútorné čiary\n\n", - "PE.Views.TableSettings.tipInnerVert": "Nastaviť len vertikálne vnútorné čiary\n\n", + "PE.Views.TableSettings.tipInner": "Nastaviť len vnútorné čiary", + "PE.Views.TableSettings.tipInnerHor": "Nastaviť iba horizontálne vnútorné čiary", + "PE.Views.TableSettings.tipInnerVert": "Nastaviť len vertikálne vnútorné čiary", "PE.Views.TableSettings.tipLeft": "Nastaviť len ľavé vonkajšie orámovanie", "PE.Views.TableSettings.tipNone": "Nastaviť bez orámovania", "PE.Views.TableSettings.tipOuter": "Nastaviť len vonkajšie orámovanie", @@ -1196,8 +1196,8 @@ "PE.Views.TableSettingsAdvanced.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", "PE.Views.TableSettingsAdvanced.textAltTitle": "Názov", "PE.Views.TableSettingsAdvanced.textBottom": "Dole", - "PE.Views.TableSettingsAdvanced.textCheckMargins": "Použiť predvolené okraje\n\n", - "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Predvolené okraje\n\n", + "PE.Views.TableSettingsAdvanced.textCheckMargins": "Použiť predvolené okraje", + "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Predvolené okraje", "PE.Views.TableSettingsAdvanced.textLeft": "Vľavo", "PE.Views.TableSettingsAdvanced.textMargins": "Okraje bunky", "PE.Views.TableSettingsAdvanced.textRight": "Vpravo", @@ -1213,7 +1213,7 @@ "PE.Views.TextArtSettings.strStroke": "Obrys", "PE.Views.TextArtSettings.strTransparency": "Priehľadnosť", "PE.Views.TextArtSettings.strType": "Typ", - "PE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.\n", + "PE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 1584.", "PE.Views.TextArtSettings.textColor": "Vyplniť farbou", "PE.Views.TextArtSettings.textDirection": "Smer", "PE.Views.TextArtSettings.textEmptyPattern": "Bez vzoru", @@ -1234,9 +1234,9 @@ "PE.Views.TextArtSettings.textTexture": "Z textúry", "PE.Views.TextArtSettings.textTile": "Dlaždica", "PE.Views.TextArtSettings.textTransform": "Transformovať", - "PE.Views.TextArtSettings.txtBrownPaper": "Hnedý/baliaci papier\n", + "PE.Views.TextArtSettings.txtBrownPaper": "Hnedý/baliaci papier", "PE.Views.TextArtSettings.txtCanvas": "Plátno", - "PE.Views.TextArtSettings.txtCarton": "Kartón\n", + "PE.Views.TextArtSettings.txtCarton": "Kartón", "PE.Views.TextArtSettings.txtDarkFabric": "Tmavá štruktúra", "PE.Views.TextArtSettings.txtGrain": "Textúra/zrnitosť", "PE.Views.TextArtSettings.txtGranite": "Mramorovaný", @@ -1254,7 +1254,7 @@ "PE.Views.Toolbar.capInsertImage": "Obrázok", "PE.Views.Toolbar.capInsertShape": "Tvar", "PE.Views.Toolbar.capInsertTable": "Tabuľka", - "PE.Views.Toolbar.capInsertText": "Textové pole\n\n", + "PE.Views.Toolbar.capInsertText": "Textové pole", "PE.Views.Toolbar.capTabFile": "Súbor", "PE.Views.Toolbar.capTabHome": "Hlavná stránka", "PE.Views.Toolbar.capTabInsert": "Vložiť", @@ -1262,7 +1262,7 @@ "PE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "PE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", "PE.Views.Toolbar.mniSlideAdvanced": "Pokročilé nastavenia", - "PE.Views.Toolbar.mniSlideStandard": "Štandard (4:3)\n", + "PE.Views.Toolbar.mniSlideStandard": "Štandard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Širokouhlý (16:9)", "PE.Views.Toolbar.textAlignBottom": "Zarovnať text nadol", "PE.Views.Toolbar.textAlignCenter": "Vycentrovať text", @@ -1284,9 +1284,9 @@ "PE.Views.Toolbar.textCompactView": "Skryť panel s nástrojmi", "PE.Views.Toolbar.textFitPage": "Prispôsobiť snímke", "PE.Views.Toolbar.textFitWidth": "Prispôsobiť na šírku", - "PE.Views.Toolbar.textHideLines": "Skryť pravítka\n\n", + "PE.Views.Toolbar.textHideLines": "Skryť pravítka", "PE.Views.Toolbar.textHideStatusBar": "Schovať stavový riadok", - "PE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu\n\n", + "PE.Views.Toolbar.textHideTitleBar": "Skryť lištu nadpisu", "PE.Views.Toolbar.textItalic": "Kurzíva", "PE.Views.Toolbar.textLine": "Čiara/líniový graf", "PE.Views.Toolbar.textNewColor": "Vlastná farba", @@ -1299,7 +1299,7 @@ "PE.Views.Toolbar.textShapeAlignMiddle": "Zarovnať na stred", "PE.Views.Toolbar.textShapeAlignRight": "Zarovnať doprava", "PE.Views.Toolbar.textShapeAlignTop": "Zarovnať nahor", - "PE.Views.Toolbar.textShowBegin": "Zobraziť od začiatku\n\n", + "PE.Views.Toolbar.textShowBegin": "Zobraziť od začiatku", "PE.Views.Toolbar.textShowCurrent": "Zobraziť od aktuálnej snímky", "PE.Views.Toolbar.textShowPresenterView": "Zobraziť režim prezentácie", "PE.Views.Toolbar.textShowSettings": "Ukázať Nastavenia", @@ -1328,7 +1328,7 @@ "PE.Views.Toolbar.tipFontName": "Písmo", "PE.Views.Toolbar.tipFontSize": "Veľkosť písma", "PE.Views.Toolbar.tipHAligh": "Horizontálne zarovnanie", - "PE.Views.Toolbar.tipHideBars": "Skryť titulok a stavový riadok\n\n", + "PE.Views.Toolbar.tipHideBars": "Skryť titulok a stavový riadok", "PE.Views.Toolbar.tipIncPrLeft": "Zväčšiť zarážku", "PE.Views.Toolbar.tipInsertChart": "Vložiť graf", "PE.Views.Toolbar.tipInsertEquation": "Vložiť rovnicu", @@ -1346,32 +1346,32 @@ "PE.Views.Toolbar.tipPrint": "Tlačiť", "PE.Views.Toolbar.tipRedo": "Krok vpred", "PE.Views.Toolbar.tipSave": "Uložiť", - "PE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.\n\n", - "PE.Views.Toolbar.tipShapeAlign": "Zarovnať tvar\n\n", + "PE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.", + "PE.Views.Toolbar.tipShapeAlign": "Zarovnať tvar", "PE.Views.Toolbar.tipShapeArrange": "Usporiadať tvar", "PE.Views.Toolbar.tipSlideSize": "Vyberte veľkosť snímku", "PE.Views.Toolbar.tipSlideTheme": "Téma snímky", "PE.Views.Toolbar.tipUndo": "Krok späť", - "PE.Views.Toolbar.tipVAligh": "Vertikálne zarovnanie\n\n", + "PE.Views.Toolbar.tipVAligh": "Vertikálne zarovnanie", "PE.Views.Toolbar.tipViewSettings": "Zobraziť nastavenia", - "PE.Views.Toolbar.txtDistribHor": "Rozložiť horizontálne\n\n", - "PE.Views.Toolbar.txtDistribVert": "Rozložiť vertikálne\n", + "PE.Views.Toolbar.txtDistribHor": "Rozložiť horizontálne", + "PE.Views.Toolbar.txtDistribVert": "Rozložiť vertikálne", "PE.Views.Toolbar.txtGroup": "Skupina", "PE.Views.Toolbar.txtScheme1": "Kancelária", "PE.Views.Toolbar.txtScheme10": "Medián", "PE.Views.Toolbar.txtScheme11": "Metro", "PE.Views.Toolbar.txtScheme12": "Modul", "PE.Views.Toolbar.txtScheme13": "Výnos", - "PE.Views.Toolbar.txtScheme14": "Výklenok\n", + "PE.Views.Toolbar.txtScheme14": "Výklenok", "PE.Views.Toolbar.txtScheme15": "Pôvod", "PE.Views.Toolbar.txtScheme16": "Papier", "PE.Views.Toolbar.txtScheme17": "Slnovrat", "PE.Views.Toolbar.txtScheme18": "Technika", "PE.Views.Toolbar.txtScheme19": "Cestovanie", - "PE.Views.Toolbar.txtScheme2": "Odtiene sivej\n", + "PE.Views.Toolbar.txtScheme2": "Odtiene sivej", "PE.Views.Toolbar.txtScheme20": "Mestský", "PE.Views.Toolbar.txtScheme21": "Elán", - "PE.Views.Toolbar.txtScheme3": "Vrchol\n", + "PE.Views.Toolbar.txtScheme3": "Vrchol", "PE.Views.Toolbar.txtScheme4": "Aspekt", "PE.Views.Toolbar.txtScheme5": "Občiansky", "PE.Views.Toolbar.txtScheme6": "Dav", diff --git a/apps/presentationeditor/main/locale/tr.json b/apps/presentationeditor/main/locale/tr.json index 9ecd78f46..d06aa81cc 100644 --- a/apps/presentationeditor/main/locale/tr.json +++ b/apps/presentationeditor/main/locale/tr.json @@ -23,10 +23,13 @@ "Common.UI.SearchDialog.textTitle": "Ara", "Common.UI.SearchDialog.textTitle2": "Ara", "Common.UI.SearchDialog.textWholeWords": "Sadece tam kelimeler", + "Common.UI.SearchDialog.txtBtnHideReplace": "Değiştirmeyi Gizle", "Common.UI.SearchDialog.txtBtnReplace": "Değiştir", "Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir", "Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", + "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -37,6 +40,8 @@ "Common.UI.Window.textInformation": "Bilgi", "Common.UI.Window.textWarning": "Dikkat", "Common.UI.Window.yesButtonText": "Evet", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "adres:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Letonya, AB, LV-1021", "Common.Views.About.txtLicensee": "LİSANS SAHİBİ", @@ -58,6 +63,7 @@ "Common.Views.Comments.textComments": "Yorumlar", "Common.Views.Comments.textEdit": "Düzenle", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", + "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", "Common.Views.Comments.textReply": "Yanıtla", "Common.Views.Comments.textResolve": "Çöz", @@ -73,7 +79,19 @@ "Common.Views.ExternalDiagramEditor.textClose": "Kapat", "Common.Views.ExternalDiagramEditor.textSave": "Kaydet & Çık", "Common.Views.ExternalDiagramEditor.textTitle": "Grafik Editörü", + "Common.Views.Header.labelCoUsersDescr": "Belge şu an bir kaç kullanıcı tarafından düzenleniyor.", "Common.Views.Header.textBack": "Dökümanlara Git", + "Common.Views.Header.textSaveBegin": "Kaydediliyor...", + "Common.Views.Header.textSaveChanged": "Modifiyeli", + "Common.Views.Header.textSaveEnd": "Tüm değişiklikler kaydedildi", + "Common.Views.Header.textSaveExpander": "Tüm değişiklikler kaydedildi", + "Common.Views.Header.tipAccessRights": "Belge erişim haklarını yönet", + "Common.Views.Header.tipDownload": "Dosyayı indir", + "Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle", + "Common.Views.Header.tipPrint": "Belgeyi yazdır", + "Common.Views.Header.tipViewUsers": "Kullanıcıları görüntüle ve belge erişim haklarını yönet", + "Common.Views.Header.txtAccessRights": "Erişim haklarını değiştir", + "Common.Views.Header.txtRename": "Yeniden adlandır", "Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et", "Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM", "Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:", @@ -87,6 +105,27 @@ "Common.Views.InsertTableDialog.txtMinText": "Bu alan için minimum değer: {0}.", "Common.Views.InsertTableDialog.txtRows": "Sıra Sayısı", "Common.Views.InsertTableDialog.txtTitle": "Tablo Boyutu", + "Common.Views.InsertTableDialog.txtTitleSplit": "Hücreyi Böl", + "Common.Views.LanguageDialog.btnCancel": "İptal", + "Common.Views.LanguageDialog.btnOk": "Tamam", + "Common.Views.LanguageDialog.labelSelect": "Belge dilini seçin", + "Common.Views.OpenDialog.cancelButtonText": "İptal", + "Common.Views.OpenDialog.okButtonText": "TAMAM", + "Common.Views.OpenDialog.txtEncoding": "Kodlama", + "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", + "Common.Views.OpenDialog.txtPassword": "Şifre", + "Common.Views.OpenDialog.txtTitle": "%1 seçenekleri seçin", + "Common.Views.OpenDialog.txtTitleProtected": "Korumalı dosya", + "Common.Views.PluginDlg.textLoading": "Yükleniyor", + "Common.Views.Plugins.groupCaption": "Eklentiler", + "Common.Views.Plugins.strPlugins": "Eklentiler", + "Common.Views.Plugins.textLoading": "Yükleniyor", + "Common.Views.Plugins.textStart": "Başlat", + "Common.Views.Plugins.textStop": "Durdur", + "Common.Views.RenameDialog.cancelButtonText": "İptal", + "Common.Views.RenameDialog.okButtonText": "Tamam", + "Common.Views.RenameDialog.textName": "Dosya adı", + "Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:", "PE.Controllers.LeftMenu.newDocumentTitle": "İsim verilmemiş sunum", "PE.Controllers.LeftMenu.requestEditRightsText": "Düzenleme hakları isteniyor...", "PE.Controllers.LeftMenu.textNoTextFound": "Aradığınız veri bulunamadı. Lütfen arama seçeneklerinizi ayarlayınız.", @@ -99,6 +138,8 @@ "PE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.", "PE.Controllers.Main.downloadTextText": "Sunum yükleniyor...", "PE.Controllers.Main.downloadTitleText": "Sunum Yükleniyor", + "PE.Controllers.Main.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", + "PE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "PE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
When you click the 'OK' button, you will be prompted to download the document.

Find more information about connecting Document Server here", "PE.Controllers.Main.errorDatabaseConnection": "Harci hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", @@ -108,10 +149,17 @@ "PE.Controllers.Main.errorKeyEncrypt": "Bilinmeyen anahtar tanımlayıcı", "PE.Controllers.Main.errorKeyExpire": "Anahtar tanımlayıcının süresi doldu", "PE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.", + "PE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", + "PE.Controllers.Main.errorSessionAbsolute": "Belge düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", + "PE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", + "PE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", "PE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", + "PE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış.
Lütfen Belge Sunucu yöneticinize başvurun.", + "PE.Controllers.Main.errorTokenExpire": "Belge güvenlik belirteci süresi doldu.
Lütfen Belge Sunucusu yöneticinize başvurun.", "PE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.", "PE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "PE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", + "PE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı geri yüklenene kadar indirme veya yazdırma yapamazsınız.", "PE.Controllers.Main.leavePageText": "Sunumda kaydedilmemiş değişiklikler var. Kaydetmek için 'Bu Sayfada Kal'a daha sonra da 'Kaydet'e tıklayınız.Kaydedilmemiş tüm değişiklikleri göz ardı etmek için 'Bu Sayfadan Ayrıl'a tıklayın.", "PE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", "PE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", @@ -126,6 +174,7 @@ "PE.Controllers.Main.loadThemeTextText": "Tema yükleniyor...", "PE.Controllers.Main.loadThemeTitleText": "Tema Yükleniyor", "PE.Controllers.Main.notcriticalErrorTitle": "Dikkat", + "PE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", "PE.Controllers.Main.openTextText": "Sunum açılıyor...", "PE.Controllers.Main.openTitleText": "Sunum Açılıyor", "PE.Controllers.Main.printTextText": "Sunum yazdırılıyor...", @@ -133,6 +182,7 @@ "PE.Controllers.Main.reloadButtonText": "Sayfayı Yenile", "PE.Controllers.Main.requestEditFailedMessageText": "Birisi şu anda bu sunumu düzenliyor. Lütfen daha sonra tekrar deneyin.", "PE.Controllers.Main.requestEditFailedTitleText": "Erişim reddedildi", + "PE.Controllers.Main.saveErrorText": "Dosya kaydedilirken bir hata oluştu", "PE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor", "PE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", "PE.Controllers.Main.saveTextText": "Sunum kaydediliyor...", @@ -141,22 +191,37 @@ "PE.Controllers.Main.splitMaxColsErrorText": "Sütun sayısı %1'den az olmalıdır.", "PE.Controllers.Main.splitMaxRowsErrorText": "Satır sayısı %1'den az olmalıdır.", "PE.Controllers.Main.textAnonymous": "Anonim", + "PE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", + "PE.Controllers.Main.textChangesSaved": "Tüm değişiklikler kaydedildi", "PE.Controllers.Main.textCloseTip": "Ucu kapamak için tıklayın", + "PE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin", "PE.Controllers.Main.textLoadingDocument": "Sunum yükleniyor", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", "PE.Controllers.Main.textShape": "Şekil", "PE.Controllers.Main.textStrict": "Strict mode", "PE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", + "PE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", + "PE.Controllers.Main.titleServerVersion": "Editör güncellendi", "PE.Controllers.Main.txtArt": "Your text here", "PE.Controllers.Main.txtBasicShapes": "Temel Şekiller", "PE.Controllers.Main.txtButtons": "Tuşlar", "PE.Controllers.Main.txtCallouts": "Belirtme Çizgileri", "PE.Controllers.Main.txtCharts": "Grafikler", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Tarih ve saat", + "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Diagram Başlığı", "PE.Controllers.Main.txtEditingMode": "Düzenleme modunu belirle...", "PE.Controllers.Main.txtFiguredArrows": "Şekilli Oklar", + "PE.Controllers.Main.txtFooter": "Altbilgi", + "PE.Controllers.Main.txtHeader": "Başlık", + "PE.Controllers.Main.txtImage": "Resim", "PE.Controllers.Main.txtLines": "Satırlar", + "PE.Controllers.Main.txtLoading": "Yükleniyor...", "PE.Controllers.Main.txtMath": "Matematik", + "PE.Controllers.Main.txtMedia": "Medya", "PE.Controllers.Main.txtNeedSynchronize": "Güncellemeleriniz var", + "PE.Controllers.Main.txtPicture": "Resim", "PE.Controllers.Main.txtRectangles": "Dikdörtgenler", "PE.Controllers.Main.txtSeries": "Seriler", "PE.Controllers.Main.txtSldLtTBlank": "Boş", @@ -195,6 +260,10 @@ "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Dikey Başlık ve Metin", "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Dikey Başlık ve Grafik Üstünde Metin", "PE.Controllers.Main.txtSldLtTVertTx": "Dikey Metin", + "PE.Controllers.Main.txtSlideNumber": "Slayt numarası", + "PE.Controllers.Main.txtSlideSubtitle": "Slayt altyazısı", + "PE.Controllers.Main.txtSlideText": "Slayt metni", + "PE.Controllers.Main.txtSlideTitle": "Slayt başlığı", "PE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", "PE.Controllers.Main.txtXAxis": "X Ekseni", "PE.Controllers.Main.txtYAxis": "Y Ekseni", @@ -207,12 +276,343 @@ "PE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", "PE.Controllers.Main.warnBrowserIE9": "Uygulama IE9'da düşük yeteneklere sahip. IE10 yada daha yükseğini kullanınız", "PE.Controllers.Main.warnBrowserZoom": "Tarayıcınızın mevcut zum ayarı tam olarak desteklenmiyor. Ctrl+0'a basarak varsayılan zumu sıfırlayınız.", + "PE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", + "PE.Controllers.Main.warnNoLicense": "ONLYOFFICE'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, belge sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı).
Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.", "PE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", "PE.Controllers.Statusbar.zoomText": "Zum {0}%", "PE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", + "PE.Controllers.Toolbar.textAccent": "Aksanlar", + "PE.Controllers.Toolbar.textBracket": "Köşeli Ayraç", "PE.Controllers.Toolbar.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", "PE.Controllers.Toolbar.textFontSizeErr": "Girilen değer yanlış.
Lütfen 1 ile 100 arasında sayısal değer giriniz.", + "PE.Controllers.Toolbar.textFraction": "Kesirler", + "PE.Controllers.Toolbar.textFunction": "Kesirler", + "PE.Controllers.Toolbar.textIntegral": "İntegraller", + "PE.Controllers.Toolbar.textLargeOperator": "Büyük Operatörler", + "PE.Controllers.Toolbar.textLimitAndLog": "Limit ve Logaritma", + "PE.Controllers.Toolbar.textMatrix": "Matrisler", + "PE.Controllers.Toolbar.textOperator": "Operatörler", + "PE.Controllers.Toolbar.textRadical": "Kökler", + "PE.Controllers.Toolbar.textScript": "Simgeler", + "PE.Controllers.Toolbar.textSymbols": "Semboller", "PE.Controllers.Toolbar.textWarning": "Dikkat", + "PE.Controllers.Toolbar.txtAccent_Accent": "Akut", + "PE.Controllers.Toolbar.txtAccent_ArrowD": "Yukarı Sağ-Sol Ok", + "PE.Controllers.Toolbar.txtAccent_ArrowL": "Sola Yukarı Ok", + "PE.Controllers.Toolbar.txtAccent_ArrowR": "Sağa Yukarı Ok", + "PE.Controllers.Toolbar.txtAccent_Bar": "Çubuk grafik", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Altçizgi", + "PE.Controllers.Toolbar.txtAccent_BarTop": "Üstçizgi", + "PE.Controllers.Toolbar.txtAccent_BorderBox": "Kutulu Formül (Yer Tutuculu)", + "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kutulu formül (örnek)", + "PE.Controllers.Toolbar.txtAccent_Check": "İşaretle", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Altparantez", + "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Üstparantez", + "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vektör A", + "PE.Controllers.Toolbar.txtAccent_Custom_2": "Çizgili ABC", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Üstçizgili", + "PE.Controllers.Toolbar.txtAccent_DDDot": "Üç Nokta", + "PE.Controllers.Toolbar.txtAccent_DDot": "Çift Nokta", + "PE.Controllers.Toolbar.txtAccent_Dot": "Nokta", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Çift Üst Çizgi", + "PE.Controllers.Toolbar.txtAccent_Grave": "Yavaş", + "PE.Controllers.Toolbar.txtAccent_GroupBot": "Aşağı Gruplama Karakteri", + "PE.Controllers.Toolbar.txtAccent_GroupTop": "Yukarı Gruplama Karakteri", + "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Sola Yukarı Süslü Ok", + "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Sağa Yukarı Süslü Ok", + "PE.Controllers.Toolbar.txtAccent_Hat": "Şapka", + "PE.Controllers.Toolbar.txtAccent_Smile": "Kısa", + "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "PE.Controllers.Toolbar.txtBracket_Angle": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Ayırıcılı Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Ayırıcılı Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Curve": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Ayırıcılı Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Custom_1": "Vakalar (İki Koşullu)", + "PE.Controllers.Toolbar.txtBracket_Custom_2": "Vakalar (Üç Koşullu)", + "PE.Controllers.Toolbar.txtBracket_Custom_3": "Yığın Obje", + "PE.Controllers.Toolbar.txtBracket_Custom_4": "Yığın Obje", + "PE.Controllers.Toolbar.txtBracket_Custom_5": "Vakalar Örnek", + "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binom Katsayı", + "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binom Katsayı", + "PE.Controllers.Toolbar.txtBracket_Line": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_LineDouble": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_LowLim": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Round": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Ayırıcılı Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Square": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_UppLim": "Köşeli Ayraç", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Tek Parantez", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Tek Parantez", + "PE.Controllers.Toolbar.txtFractionDiagonal": "Eğimli Kesir", + "PE.Controllers.Toolbar.txtFractionDifferential_1": "Diferansiyel", + "PE.Controllers.Toolbar.txtFractionDifferential_2": "Diferansiyel", + "PE.Controllers.Toolbar.txtFractionDifferential_3": "Diferansiyel", + "PE.Controllers.Toolbar.txtFractionDifferential_4": "Diferansiyel", + "PE.Controllers.Toolbar.txtFractionHorizontal": "Lineer Kesir", + "PE.Controllers.Toolbar.txtFractionPi_2": "2 Üzeri Pi", + "PE.Controllers.Toolbar.txtFractionSmall": "Küçük Kesir", + "PE.Controllers.Toolbar.txtFractionVertical": "Yığın Kesir", + "PE.Controllers.Toolbar.txtFunction_1_Cos": "Ters Kosinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Cosh": "Hiperbolik Ters Kosinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Cot": "Ters Kotanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Coth": "Hiperbolik Ters Kotanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Csc": "Ters Kosekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Csch": "Hiperbolik Ters Kosekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Sec": "Ters Sekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Sech": "Hiperbolik Ters Sekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Sin": "Ters Sinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Hiperbolik Ters Sinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Tan": "Ters Tanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Hiperbolik Ters Tanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Cos": "Kosinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Cosh": "Hiperbolik Kosinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Cot": "Kotanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Coth": "Hiperbolik Kotanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Csc": "Kosekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Csch": "Hiperbolik Kosekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sin teta", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tanjant formülü", + "PE.Controllers.Toolbar.txtFunction_Sec": "Sekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Sech": "Hiperbolik Sekant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Sin": "Sinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Sinh": "Hiperbolik Sinüs Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Tan": "Tanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtFunction_Tanh": "Hiperbolik Tanjant Fonksiyonu", + "PE.Controllers.Toolbar.txtIntegral": "İntegral", + "PE.Controllers.Toolbar.txtIntegral_dtheta": "Diferansiyel teta", + "PE.Controllers.Toolbar.txtIntegral_dx": "Diferansiyel x", + "PE.Controllers.Toolbar.txtIntegral_dy": "Diferansiyel y", + "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "İntegral", + "PE.Controllers.Toolbar.txtIntegralDouble": "Çift İntegral", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Çift İntegral", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Çift İntegral", + "PE.Controllers.Toolbar.txtIntegralOriented": "Kontur İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Kontur İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "Yüzey İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Yüzey İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Yüzey İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Kontur İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedTriple": "Hacim İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Hacim İntegrali", + "PE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Hacim İntegrali", + "PE.Controllers.Toolbar.txtIntegralSubSup": "İntegral", + "PE.Controllers.Toolbar.txtIntegralTriple": "Üçlü İntegral", + "PE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Üçlü İntegral", + "PE.Controllers.Toolbar.txtIntegralTripleSubSup": "Üçlü İntegral", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ortak İş", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ortak İş", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ortak İş", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ortak İş", + "PE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ortak İş", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Ürün", + "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Bileşim", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Kesişim", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Kesişim", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Kesişim", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Kesişim", + "PE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Kesişim", + "PE.Controllers.Toolbar.txtLargeOperator_Prod": "Ürün", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Ürün", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Ürün", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Ürün", + "PE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Ürün", + "PE.Controllers.Toolbar.txtLargeOperator_Sum": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Toplama", + "PE.Controllers.Toolbar.txtLargeOperator_Union": "Bileşim", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Bileşim", + "PE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Bileşim", + "PE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Bileşim", + "PE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Bileşim", + "PE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Örneği", + "PE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maksimum Örnek", + "PE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "PE.Controllers.Toolbar.txtLimitLog_Ln": "Doğal logaritma", + "PE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", + "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", + "PE.Controllers.Toolbar.txtLimitLog_Max": "Maksimum", + "PE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Köşeli Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Köşeli Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Köşeli Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Köşeli Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Boş Matris", + "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Temel Noktalar", + "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Orta Noktalar", + "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diyagonal Noktalar", + "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Dikey Noktalar", + "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Seyrek Matris", + "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Seyrek Matris", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Birim Matrisi", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Birim Matrisi", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Birim Matrisi", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Birim Matrisi", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Aşağı Sağ-Sol Ok", + "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Yukarı Sağ-Sol Ok", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Sola Aşağı Ok", + "PE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Sola Yukarı Ok", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Sağa Aşağı Ok", + "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Sağa Yukarı Ok", + "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Sütun Boyutu", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Getiriler", + "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta Miktarları", + "PE.Controllers.Toolbar.txtOperator_Definition": "Tanımla eşittir", + "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Eşittir", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Aşağı Sağ-Sol Ok", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Yukarı Sağ-Sol Ok", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Sola Aşağı Ok", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Sola Yukarı Ok", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Sağa Aşağı Ok", + "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Sağa Yukarı Ok", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "Eşit eşittir", + "PE.Controllers.Toolbar.txtOperator_MinusEquals": "Eksi eşit", + "PE.Controllers.Toolbar.txtOperator_PlusEquals": "Artı Eşittir", + "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Ölçüm", + "PE.Controllers.Toolbar.txtRadicalCustom_1": "Kök", + "PE.Controllers.Toolbar.txtRadicalCustom_2": "Kök", + "PE.Controllers.Toolbar.txtRadicalRoot_2": "Dereceli Kare Kök", + "PE.Controllers.Toolbar.txtRadicalRoot_3": "Küp Kökü", + "PE.Controllers.Toolbar.txtRadicalRoot_n": "Dereceli Kök", + "PE.Controllers.Toolbar.txtRadicalSqrt": "Kare Kök", + "PE.Controllers.Toolbar.txtScriptCustom_1": "Simge", + "PE.Controllers.Toolbar.txtScriptCustom_2": "Simge", + "PE.Controllers.Toolbar.txtScriptCustom_3": "Simge", + "PE.Controllers.Toolbar.txtScriptCustom_4": "Simge", + "PE.Controllers.Toolbar.txtScriptSub": "Altsimge", + "PE.Controllers.Toolbar.txtScriptSubSup": "Altsimge-Üstsimge", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Sol altsimge-üstsimge", + "PE.Controllers.Toolbar.txtScriptSup": "Üstsimge", + "PE.Controllers.Toolbar.txtSymbol_about": "Yaklaşık", + "PE.Controllers.Toolbar.txtSymbol_additional": "Tamamlayıcı", + "PE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "PE.Controllers.Toolbar.txtSymbol_approx": "Yaklaşık Değer", + "PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk Operatörü", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Madde Operatörü", + "PE.Controllers.Toolbar.txtSymbol_cap": "Kesişim", + "PE.Controllers.Toolbar.txtSymbol_cbrt": "Küp Kökü", + "PE.Controllers.Toolbar.txtSymbol_cdots": "Orta Yatay Elipsler", + "PE.Controllers.Toolbar.txtSymbol_celsius": "Derece Santigrat", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "PE.Controllers.Toolbar.txtSymbol_cong": "Yaklaşık", + "PE.Controllers.Toolbar.txtSymbol_cup": "Bileşim", + "PE.Controllers.Toolbar.txtSymbol_ddots": "Aşağı Sağ Diyagonal Elips", + "PE.Controllers.Toolbar.txtSymbol_degree": "Derece", + "PE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "PE.Controllers.Toolbar.txtSymbol_div": "Bölme İşareti", + "PE.Controllers.Toolbar.txtSymbol_downarrow": "Aşağı Oku", + "PE.Controllers.Toolbar.txtSymbol_emptyset": "Boş Küme", + "PE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_equals": "Eşittir", + "PE.Controllers.Toolbar.txtSymbol_equiv": "Eşittir", + "PE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "PE.Controllers.Toolbar.txtSymbol_exists": "Mevcut", + "PE.Controllers.Toolbar.txtSymbol_factorial": "Faktöriyel", + "PE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derece Fahrenhayt", + "PE.Controllers.Toolbar.txtSymbol_forall": "Tümüne", + "PE.Controllers.Toolbar.txtSymbol_gamma": "Gama", + "PE.Controllers.Toolbar.txtSymbol_geq": "Büyük Eşittir", + "PE.Controllers.Toolbar.txtSymbol_gg": "Çok büyüktür", + "PE.Controllers.Toolbar.txtSymbol_greater": "Büyüktür", + "PE.Controllers.Toolbar.txtSymbol_in": "Elemanı", + "PE.Controllers.Toolbar.txtSymbol_inc": "Orantısal", + "PE.Controllers.Toolbar.txtSymbol_infinity": "Sonsuz", + "PE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Sol Ok", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-Sağ Ok", + "PE.Controllers.Toolbar.txtSymbol_leq": "Küçük eşittir", + "PE.Controllers.Toolbar.txtSymbol_less": "Küçüktür", + "PE.Controllers.Toolbar.txtSymbol_ll": "Çok Küçüktür", + "PE.Controllers.Toolbar.txtSymbol_minus": "Eksi", + "PE.Controllers.Toolbar.txtSymbol_mp": "Eksi Artı", + "PE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "PE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "PE.Controllers.Toolbar.txtSymbol_neq": "Eşit değildir", + "PE.Controllers.Toolbar.txtSymbol_ni": "Üye İçerir", + "PE.Controllers.Toolbar.txtSymbol_not": "Değildir simgesi", + "PE.Controllers.Toolbar.txtSymbol_notexists": "Mevcut Değil", + "PE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "PE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "PE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "PE.Controllers.Toolbar.txtSymbol_partial": "Parçalı Diferansiyel", + "PE.Controllers.Toolbar.txtSymbol_percent": "Yüzde", + "PE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "PE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "PE.Controllers.Toolbar.txtSymbol_plus": "Artı", + "PE.Controllers.Toolbar.txtSymbol_pm": "Artı Eksi", + "PE.Controllers.Toolbar.txtSymbol_propto": "Orantısal", + "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "PE.Controllers.Toolbar.txtSymbol_qdrt": "Dördüncü kök", + "PE.Controllers.Toolbar.txtSymbol_qed": "İspat Sonu", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Yukarı Sağ Diyagonal Elips", + "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağ Ok", + "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "PE.Controllers.Toolbar.txtSymbol_sqrt": "Kök İşareti", + "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "PE.Controllers.Toolbar.txtSymbol_therefore": "Bu nedenle", + "PE.Controllers.Toolbar.txtSymbol_theta": "Teta", + "PE.Controllers.Toolbar.txtSymbol_times": "Çarpma İşareti", + "PE.Controllers.Toolbar.txtSymbol_uparrow": "Yukarı Oku", + "PE.Controllers.Toolbar.txtSymbol_upsilon": "Epsilon", + "PE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Varyantı", + "PE.Controllers.Toolbar.txtSymbol_varphi": "Phi Varyantı", + "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi Varyantı", + "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho Varyantı", + "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Varyantı", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Teta Varyantı", + "PE.Controllers.Toolbar.txtSymbol_vdots": "Dikey Elips", + "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "PE.Views.ChartSettings.textAdvanced": "Gelişmiş Ayarları Göster", "PE.Views.ChartSettings.textArea": "Bölge Grafiği", "PE.Views.ChartSettings.textBar": "Çubuk grafik", "PE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir", @@ -226,16 +626,26 @@ "PE.Views.ChartSettings.textSize": "Boyut", "PE.Views.ChartSettings.textStock": "Stok Grafiği", "PE.Views.ChartSettings.textStyle": "Stil", + "PE.Views.ChartSettings.textSurface": "Yüzey", "PE.Views.ChartSettings.textWidth": "Genişlik", + "PE.Views.ChartSettingsAdvanced.cancelButtonText": "İptal", + "PE.Views.ChartSettingsAdvanced.okButtonText": "Tamam", + "PE.Views.ChartSettingsAdvanced.textAlt": "Alternatif Metin", + "PE.Views.ChartSettingsAdvanced.textAltDescription": "Açıklama", + "PE.Views.ChartSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "PE.Views.ChartSettingsAdvanced.textAltTitle": "Başlık", + "PE.Views.ChartSettingsAdvanced.textTitle": "Grafik - Gelişmiş Ayarlar", "PE.Views.DocumentHolder.aboveText": "Yukarıda", "PE.Views.DocumentHolder.addCommentText": "Yorum Ekle", "PE.Views.DocumentHolder.advancedImageText": "Resim Gelişmiş Ayarlar", "PE.Views.DocumentHolder.advancedParagraphText": "Metin Gelişmiş Ayarlar", "PE.Views.DocumentHolder.advancedShapeText": "Şekil Gelişmiş Ayarlar", "PE.Views.DocumentHolder.advancedTableText": "Tablo Gelişmiş Ayarlar", + "PE.Views.DocumentHolder.alignmentText": "Hizalama", "PE.Views.DocumentHolder.belowText": "Altında", "PE.Views.DocumentHolder.cellAlignText": "Hücre Dikey Hizalama", "PE.Views.DocumentHolder.cellText": "Hücre", + "PE.Views.DocumentHolder.centerText": "Orta", "PE.Views.DocumentHolder.columnText": "Sütun", "PE.Views.DocumentHolder.deleteColumnText": "Sütunu Sil", "PE.Views.DocumentHolder.deleteRowText": "Satırı Sil", @@ -248,6 +658,8 @@ "PE.Views.DocumentHolder.editChartText": "Veri düzenle", "PE.Views.DocumentHolder.editHyperlinkText": "Hiper bağı düzenle", "PE.Views.DocumentHolder.hyperlinkText": "Hiper bağ", + "PE.Views.DocumentHolder.ignoreAllSpellText": "Hepsini yoksay", + "PE.Views.DocumentHolder.ignoreSpellText": "Yoksay", "PE.Views.DocumentHolder.insertColumnLeftText": "Sol Sütun", "PE.Views.DocumentHolder.insertColumnRightText": "Sağ Sütun", "PE.Views.DocumentHolder.insertColumnText": "Sütun Ekle", @@ -255,16 +667,23 @@ "PE.Views.DocumentHolder.insertRowBelowText": "Alttaki Satır", "PE.Views.DocumentHolder.insertRowText": "Satır Ekle", "PE.Views.DocumentHolder.insertText": "Ekle", + "PE.Views.DocumentHolder.langText": "Dil Seç", + "PE.Views.DocumentHolder.leftText": "Sol", + "PE.Views.DocumentHolder.loadSpellText": "Varyantlar yükleniyor...", "PE.Views.DocumentHolder.mergeCellsText": "Hücreleri birleştir", + "PE.Views.DocumentHolder.moreText": "Daha fazla varyant...", + "PE.Views.DocumentHolder.noSpellVariantsText": "Varyant yok", "PE.Views.DocumentHolder.originalSizeText": "Varsayılan Boyut", "PE.Views.DocumentHolder.removeHyperlinkText": "Hiper bağı kaldır", + "PE.Views.DocumentHolder.rightText": "Sağ", "PE.Views.DocumentHolder.rowText": "Satır", "PE.Views.DocumentHolder.selectText": "Seç", + "PE.Views.DocumentHolder.spellcheckText": "Yazım denetimi", "PE.Views.DocumentHolder.splitCellsText": "Hücreyi Böl...", "PE.Views.DocumentHolder.splitCellTitleText": "Hücreyi Böl", "PE.Views.DocumentHolder.tableText": "Tablo", "PE.Views.DocumentHolder.textArrangeBack": "Arkaplana gönder", - "PE.Views.DocumentHolder.textArrangeBackward": "Geri Taşı", + "PE.Views.DocumentHolder.textArrangeBackward": "Geri Gönder", "PE.Views.DocumentHolder.textArrangeForward": "İleri Taşı", "PE.Views.DocumentHolder.textArrangeFront": "Önplana Getir", "PE.Views.DocumentHolder.textCopy": "Kopyala", @@ -279,26 +698,100 @@ "PE.Views.DocumentHolder.textShapeAlignRight": "Sağa Hizala", "PE.Views.DocumentHolder.textShapeAlignTop": "Üste Hizala", "PE.Views.DocumentHolder.textSlideSettings": "Slide Settings", + "PE.Views.DocumentHolder.textUndo": "Geri Al", "PE.Views.DocumentHolder.tipIsLocked": "Bu element şu an başka bir kullanıcı tarafından düzenleniyor.", + "PE.Views.DocumentHolder.txtAddBottom": "Alt sınır ekle", + "PE.Views.DocumentHolder.txtAddFractionBar": "Kesir çizgisi ekle", + "PE.Views.DocumentHolder.txtAddHor": "Yatay çizgi ekle", + "PE.Views.DocumentHolder.txtAddLB": "Sol alt çizgi ekle", + "PE.Views.DocumentHolder.txtAddLeft": "Sol sınır ekle", + "PE.Views.DocumentHolder.txtAddLT": "Sol üst çizgi ekle", + "PE.Views.DocumentHolder.txtAddRight": "Sağ sınır ekle", + "PE.Views.DocumentHolder.txtAddTop": "Üst sınır ekle", + "PE.Views.DocumentHolder.txtAddVer": "Dikey çizgi ekle", "PE.Views.DocumentHolder.txtAlign": "Hizala", + "PE.Views.DocumentHolder.txtAlignToChar": "Karaktere uyarla", "PE.Views.DocumentHolder.txtArrange": "Düzenle", "PE.Views.DocumentHolder.txtBackground": "Arka plan", + "PE.Views.DocumentHolder.txtBorderProps": "Sınır özellikleri", + "PE.Views.DocumentHolder.txtBottom": "Alt", "PE.Views.DocumentHolder.txtChangeLayout": "Tasarımı Değiştir", + "PE.Views.DocumentHolder.txtChangeTheme": "Tema Değiştir", + "PE.Views.DocumentHolder.txtColumnAlign": "Sütun hizalama", + "PE.Views.DocumentHolder.txtDecreaseArg": "Argüman boyutunu azalt", + "PE.Views.DocumentHolder.txtDeleteArg": "Argümanı sil", + "PE.Views.DocumentHolder.txtDeleteBreak": "Manüel sonu sil", + "PE.Views.DocumentHolder.txtDeleteChars": "Çevreleyen karakterleri sil", + "PE.Views.DocumentHolder.txtDeleteCharsAndSeparators": "Çevreleyen karakterleri sil", + "PE.Views.DocumentHolder.txtDeleteEq": "Denklemi sil", + "PE.Views.DocumentHolder.txtDeleteGroupChar": "Karakter sil", + "PE.Views.DocumentHolder.txtDeleteRadical": "Kökü sil", "PE.Views.DocumentHolder.txtDeleteSlide": "Slaytı Sil", "PE.Views.DocumentHolder.txtDistribHor": "Yatay olarak dağıt", "PE.Views.DocumentHolder.txtDistribVert": "Dikey olarak dağıt", "PE.Views.DocumentHolder.txtDuplicateSlide": "Kopya Slayt", + "PE.Views.DocumentHolder.txtFractionLinear": "Lineer fraksiyonu değiştir", + "PE.Views.DocumentHolder.txtFractionSkewed": "Eğimli fraksiyonu değiştir", + "PE.Views.DocumentHolder.txtFractionStacked": "Yığılı fraksiyona değiştir", "PE.Views.DocumentHolder.txtGroup": "Grup", + "PE.Views.DocumentHolder.txtGroupCharOver": "Metin üstünde char", + "PE.Views.DocumentHolder.txtGroupCharUnder": "Metin altında char", + "PE.Views.DocumentHolder.txtHideBottom": "Alt sınırı gizle", + "PE.Views.DocumentHolder.txtHideBottomLimit": "Alt limiti gizle", + "PE.Views.DocumentHolder.txtHideCloseBracket": "Kapatma parantezini gizle", + "PE.Views.DocumentHolder.txtHideDegree": "Dereceyi gizle", + "PE.Views.DocumentHolder.txtHideHor": "Yatay çizgiyi gizle", + "PE.Views.DocumentHolder.txtHideLB": "Sol alt çizgiyi gizle", + "PE.Views.DocumentHolder.txtHideLeft": "Sol sınırı gizle", + "PE.Views.DocumentHolder.txtHideLT": "Sol üst çizgiyi gizle", + "PE.Views.DocumentHolder.txtHideOpenBracket": "Açma parantezini gizle", + "PE.Views.DocumentHolder.txtHidePlaceholder": "Yer tutucuyu gizle", + "PE.Views.DocumentHolder.txtHideRight": "Sağ sınırı gizle", + "PE.Views.DocumentHolder.txtHideTop": "Üst sınırı gizle", + "PE.Views.DocumentHolder.txtHideTopLimit": "Üst limiti gizle", + "PE.Views.DocumentHolder.txtHideVer": "Dikey çizgiyi gizle", + "PE.Views.DocumentHolder.txtIncreaseArg": "Argüman boyutunu artır", + "PE.Views.DocumentHolder.txtInsertArgAfter": "Sonuna argüman ekle", + "PE.Views.DocumentHolder.txtInsertArgBefore": "Önüne argüman ekle", + "PE.Views.DocumentHolder.txtInsertBreak": "Manüel son ekle", + "PE.Views.DocumentHolder.txtInsertEqAfter": "Sonuna denklem ekle", + "PE.Views.DocumentHolder.txtInsertEqBefore": "Önüne denklem ekle", + "PE.Views.DocumentHolder.txtLimitChange": "Sınır konumunu değiştir", + "PE.Views.DocumentHolder.txtLimitOver": "Metin üstüne limit", + "PE.Views.DocumentHolder.txtLimitUnder": "Metin altına limit", + "PE.Views.DocumentHolder.txtMatchBrackets": "Argüman uzunluğuyla parantezleri eşle", + "PE.Views.DocumentHolder.txtMatrixAlign": "Matris hizalama", "PE.Views.DocumentHolder.txtNewSlide": "Yeni Slayt", + "PE.Views.DocumentHolder.txtOverbar": "Metin üstünde bar", "PE.Views.DocumentHolder.txtPressLink": "CTRL'ye basın ve bağlantıya tıklayın", "PE.Views.DocumentHolder.txtPreview": "Önizleme", + "PE.Views.DocumentHolder.txtRemFractionBar": "Kesir barını kaldır", + "PE.Views.DocumentHolder.txtRemLimit": "Limiti kaldır", + "PE.Views.DocumentHolder.txtRemoveAccentChar": "Aksan karakterini kaldır", + "PE.Views.DocumentHolder.txtRemoveBar": "Barı kaldır", + "PE.Views.DocumentHolder.txtRemScripts": "Script kaldır", + "PE.Views.DocumentHolder.txtRemSubscript": "Altsimge kaldır", + "PE.Views.DocumentHolder.txtRemSuperscript": "Üstsimge kaldır", + "PE.Views.DocumentHolder.txtScriptsAfter": "Metinden sonra simge", + "PE.Views.DocumentHolder.txtScriptsBefore": "Metinden önce simge", "PE.Views.DocumentHolder.txtSelectAll": "Hepsini seç", + "PE.Views.DocumentHolder.txtShowBottomLimit": "Alt sınırı göster", + "PE.Views.DocumentHolder.txtShowCloseBracket": "Kapatma parantezini göster", + "PE.Views.DocumentHolder.txtShowDegree": "Dereceyi göster", + "PE.Views.DocumentHolder.txtShowOpenBracket": "Açma parantezini göster", + "PE.Views.DocumentHolder.txtShowPlaceholder": "Yer tutucuyu göster", + "PE.Views.DocumentHolder.txtShowTopLimit": "Üst sınırı göster", "PE.Views.DocumentHolder.txtSlide": "Slayt", + "PE.Views.DocumentHolder.txtSlideHide": "Slaytı gizle", + "PE.Views.DocumentHolder.txtStretchBrackets": "Parantezleri genişlet", + "PE.Views.DocumentHolder.txtTop": "Üst", + "PE.Views.DocumentHolder.txtUnderbar": "Metin altında bar", "PE.Views.DocumentHolder.txtUngroup": "Gruptan çıkar", "PE.Views.DocumentHolder.vertAlignText": "Dikey Hizalama", "PE.Views.DocumentPreview.goToSlideText": "Slayta Git", "PE.Views.DocumentPreview.slideIndexText": "Slayt {1}'in {0}'ı", "PE.Views.DocumentPreview.txtClose": "Önizlemeyi Kapat", + "PE.Views.DocumentPreview.txtEndSlideshow": "Slayt gösterisi sonu", "PE.Views.DocumentPreview.txtExitFullScreen": "Exit Full Screen", "PE.Views.DocumentPreview.txtFinalMessage": "Slayt önizleminin sonu. Çıkış için tıklayın.", "PE.Views.DocumentPreview.txtFullScreen": "Full Screen", @@ -307,14 +800,17 @@ "PE.Views.DocumentPreview.txtPause": "Sunumu Durdur", "PE.Views.DocumentPreview.txtPlay": "Sunuma Başla", "PE.Views.DocumentPreview.txtPrev": "Önceki slayt", + "PE.Views.DocumentPreview.txtReset": "Sıfırla", "PE.Views.FileMenu.btnAboutCaption": "Hakkında", "PE.Views.FileMenu.btnBackCaption": "Dökümanlara Git", + "PE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat", "PE.Views.FileMenu.btnCreateNewCaption": "Yeni oluştur", "PE.Views.FileMenu.btnDownloadCaption": "Farklı Yükle...", "PE.Views.FileMenu.btnHelpCaption": "Yardım...", "PE.Views.FileMenu.btnInfoCaption": "Sunum Bilgisi...", "PE.Views.FileMenu.btnPrintCaption": "Yazdır", "PE.Views.FileMenu.btnRecentFilesCaption": "En sonunucuyu aç...", + "PE.Views.FileMenu.btnRenameCaption": "Yeniden adlandır...", "PE.Views.FileMenu.btnReturnCaption": "Sunuma Geri Dön", "PE.Views.FileMenu.btnRightsCaption": "Access Rights...", "PE.Views.FileMenu.btnSaveAsCaption": "Save as", @@ -336,13 +832,16 @@ "PE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "PE.Views.FileMenuPanels.Settings.okButtonText": "Uygula", "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Turn on alignment guides", + "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Otomatik kaydetmeyi aç", "PE.Views.FileMenuPanels.Settings.strAutosave": "Otomatik kaydetmeyi aç", "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Co-editing mode", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Other users will see your changes at once", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "PE.Views.FileMenuPanels.Settings.strFast": "Fast", + "PE.Views.FileMenuPanels.Settings.strForcesave": "Her zaman sunucuya kaydet (aksi takdirde belge kapandığında sunucuya kaydet)", "PE.Views.FileMenuPanels.Settings.strInputMode": "Hiyeroglifleri aç", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Gerçek Zamanlı Ortak Düzenleme Değişiklikleri", + "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Yazım denetimi seçeneğini aç", "PE.Views.FileMenuPanels.Settings.strStrict": "Strict", "PE.Views.FileMenuPanels.Settings.strUnit": "Ölçüm birimi", "PE.Views.FileMenuPanels.Settings.strZoom": "Varsayılan Zum Değeri", @@ -351,15 +850,20 @@ "PE.Views.FileMenuPanels.Settings.text5Minutes": "Her 5 Dakika", "PE.Views.FileMenuPanels.Settings.text60Minutes": "Her Saat", "PE.Views.FileMenuPanels.Settings.textAlignGuides": "Alignment Guides", + "PE.Views.FileMenuPanels.Settings.textAutoRecover": "Otomatik Kurtarma", "PE.Views.FileMenuPanels.Settings.textAutoSave": "Otomatik Kaydetme", "PE.Views.FileMenuPanels.Settings.textDisabled": "Devre Dışı", + "PE.Views.FileMenuPanels.Settings.textForceSave": "Sunucuya Kaydet", "PE.Views.FileMenuPanels.Settings.textMinute": "Her Dakika", "PE.Views.FileMenuPanels.Settings.txtAll": "Tümünü göster", "PE.Views.FileMenuPanels.Settings.txtCm": "Santimetre", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Slaytı sığdır", + "PE.Views.FileMenuPanels.Settings.txtFitWidth": "Genişliğe Sığdır", + "PE.Views.FileMenuPanels.Settings.txtInch": "İnç", "PE.Views.FileMenuPanels.Settings.txtInput": "Girdiyi Değiştir", "PE.Views.FileMenuPanels.Settings.txtLast": "Sonuncuyu göster", "PE.Views.FileMenuPanels.Settings.txtPt": "Nokta", + "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Yazım denetimi", "PE.Views.HyperlinkSettingsDialog.cancelButtonText": "İptal Et", "PE.Views.HyperlinkSettingsDialog.okButtonText": "TAMAM", "PE.Views.HyperlinkSettingsDialog.strDisplay": "Görüntüle", @@ -382,6 +886,8 @@ "PE.Views.HyperlinkSettingsDialog.txtPrev": "Önceki slayt", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Slayt", "PE.Views.ImageSettings.textAdvanced": "Gelişmiş ayarları göster", + "PE.Views.ImageSettings.textEdit": "Düzenle", + "PE.Views.ImageSettings.textEditObject": "Obje Düzenle", "PE.Views.ImageSettings.textFromFile": "Dosyadan", "PE.Views.ImageSettings.textFromUrl": "URL'den", "PE.Views.ImageSettings.textHeight": "Yükseklik", @@ -391,9 +897,14 @@ "PE.Views.ImageSettings.textWidth": "Genişlik", "PE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal Et", "PE.Views.ImageSettingsAdvanced.okButtonText": "TAMAM", + "PE.Views.ImageSettingsAdvanced.textAlt": "Alternatif Metin", + "PE.Views.ImageSettingsAdvanced.textAltDescription": "Açıklama", + "PE.Views.ImageSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "PE.Views.ImageSettingsAdvanced.textAltTitle": "Başlık", "PE.Views.ImageSettingsAdvanced.textHeight": "Yükseklik", "PE.Views.ImageSettingsAdvanced.textKeepRatio": "Sabit Orantılar", "PE.Views.ImageSettingsAdvanced.textOriginalSize": "Varsayılan Boyut", + "PE.Views.ImageSettingsAdvanced.textPlacement": "Yerleştirme", "PE.Views.ImageSettingsAdvanced.textPosition": "Pozisyon", "PE.Views.ImageSettingsAdvanced.textSize": "Boyut", "PE.Views.ImageSettingsAdvanced.textTitle": "Resim - Gelişmiş Ayarlar", @@ -401,10 +912,12 @@ "PE.Views.LeftMenu.tipAbout": "Hakkında", "PE.Views.LeftMenu.tipChat": "Sohbet", "PE.Views.LeftMenu.tipComments": "Yorumlar", + "PE.Views.LeftMenu.tipPlugins": "Eklentiler", "PE.Views.LeftMenu.tipSearch": "Ara", "PE.Views.LeftMenu.tipSlides": "Slaytlar", "PE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek", "PE.Views.LeftMenu.tipTitles": "Başlıklar", + "PE.Views.LeftMenu.txtDeveloper": "GELİŞTİRİCİ MODU", "PE.Views.ParagraphSettings.strLineHeight": "Satır Aralığı", "PE.Views.ParagraphSettings.strParagraphSpacing": "Aralık", "PE.Views.ParagraphSettings.strSpacingAfter": "sonra", @@ -458,6 +971,7 @@ "PE.Views.ShapeSettings.strSize": "Boyut", "PE.Views.ShapeSettings.strStroke": "Bölü işareti", "PE.Views.ShapeSettings.strTransparency": "Opasite", + "PE.Views.ShapeSettings.strType": "Tip", "PE.Views.ShapeSettings.textAdvanced": "Gelişmiş ayarları göster", "PE.Views.ShapeSettings.textBorderSizeErr": "Girilen değer yanlış.
Lütfen 0 ile 1584 pt arasında değer giriniz.", "PE.Views.ShapeSettings.textColor": "Renk Dolgusu", @@ -492,13 +1006,19 @@ "PE.Views.ShapeSettings.txtWood": "Ahşap", "PE.Views.ShapeSettingsAdvanced.cancelButtonText": "İptal Et", "PE.Views.ShapeSettingsAdvanced.okButtonText": "TAMAM", + "PE.Views.ShapeSettingsAdvanced.strColumns": "Sütunlar", "PE.Views.ShapeSettingsAdvanced.strMargins": "Metin Dolgulama", + "PE.Views.ShapeSettingsAdvanced.textAlt": "Alternatif Metin", + "PE.Views.ShapeSettingsAdvanced.textAltDescription": "Açıklama", + "PE.Views.ShapeSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Başlık", "PE.Views.ShapeSettingsAdvanced.textArrows": "Oklar", "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Başlama Boyutu", "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Başlama Stili", "PE.Views.ShapeSettingsAdvanced.textBevel": "Eğimli", "PE.Views.ShapeSettingsAdvanced.textBottom": "Alt", "PE.Views.ShapeSettingsAdvanced.textCapType": "Başlık Tipi", + "PE.Views.ShapeSettingsAdvanced.textColNumber": "Sütun Sayısı", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Bitiş Boyutu", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Bitiş Stili", "PE.Views.ShapeSettingsAdvanced.textFlat": "Düz", @@ -511,6 +1031,7 @@ "PE.Views.ShapeSettingsAdvanced.textRight": "Sağ", "PE.Views.ShapeSettingsAdvanced.textRound": "Yuvarlak", "PE.Views.ShapeSettingsAdvanced.textSize": "Boyut", + "PE.Views.ShapeSettingsAdvanced.textSpacing": "Sütunlar arasında boşluk", "PE.Views.ShapeSettingsAdvanced.textSquare": "Kare", "PE.Views.ShapeSettingsAdvanced.textTitle": "Şekil - Gelişmiş Ayarlar", "PE.Views.ShapeSettingsAdvanced.textTop": "Üst", @@ -558,6 +1079,7 @@ "PE.Views.SlideSettings.textRadial": "Radyal", "PE.Views.SlideSettings.textReset": "Reset Changes", "PE.Views.SlideSettings.textRight": "Sağ", + "PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectTexture": "Seç", "PE.Views.SlideSettings.textSmoothly": "Kolayca", "PE.Views.SlideSettings.textSplit": "Ayır", @@ -588,9 +1110,16 @@ "PE.Views.SlideSettings.txtLeather": "Deri", "PE.Views.SlideSettings.txtPapyrus": "Papirus", "PE.Views.SlideSettings.txtWood": "Ahşap", + "PE.Views.SlideshowSettings.cancelButtonText": "İptal", + "PE.Views.SlideshowSettings.okButtonText": "Tamam", + "PE.Views.SlideshowSettings.textLoop": "'Esc' tuşuna basılana kadar loop devam eder", + "PE.Views.SlideshowSettings.textTitle": "Ayarları göster", "PE.Views.SlideSizeSettings.cancelButtonText": "İptal Et", "PE.Views.SlideSizeSettings.okButtonText": "TAMAM", + "PE.Views.SlideSizeSettings.strLandscape": "Yatay", + "PE.Views.SlideSizeSettings.strPortrait": "Portre", "PE.Views.SlideSizeSettings.textHeight": "Yükseklik", + "PE.Views.SlideSizeSettings.textSlideOrientation": "Slayt Oryantasyonu", "PE.Views.SlideSizeSettings.textSlideSize": "Slayt Boyutu", "PE.Views.SlideSizeSettings.textTitle": "Slayt Boyutu Ayarları", "PE.Views.SlideSizeSettings.textWidth": "Genişlik", @@ -613,7 +1142,10 @@ "PE.Views.Statusbar.tipFitPage": "Slaytı sığdır", "PE.Views.Statusbar.tipFitWidth": "Genişliğe Sığdır", "PE.Views.Statusbar.tipPreview": "Start Preview", - "PE.Views.Statusbar.tipZoomFactor": "Büyütme", + "PE.Views.Statusbar.tipSetDocLang": "Belge dilini belirle", + "PE.Views.Statusbar.tipSetLang": "Metin Dili Belirle", + "PE.Views.Statusbar.tipSetSpelling": "Yazım denetimi", + "PE.Views.Statusbar.tipZoomFactor": "Büyüt", "PE.Views.Statusbar.tipZoomIn": "Yakınlaştır", "PE.Views.Statusbar.tipZoomOut": "Uzaklaştır", "PE.Views.Statusbar.txtPageNumInvalid": "Invalid slide number", @@ -660,6 +1192,10 @@ "PE.Views.TableSettings.txtNoBorders": "Sınır yok", "PE.Views.TableSettingsAdvanced.cancelButtonText": "İptal Et", "PE.Views.TableSettingsAdvanced.okButtonText": "TAMAM", + "PE.Views.TableSettingsAdvanced.textAlt": "Alternatif Metin", + "PE.Views.TableSettingsAdvanced.textAltDescription": "Açıklama", + "PE.Views.TableSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "PE.Views.TableSettingsAdvanced.textAltTitle": "Başlık", "PE.Views.TableSettingsAdvanced.textBottom": "Alt", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Varsayılan kenar boşluklarını kullan", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Varsayılan Kenar Boşlukları", @@ -677,6 +1213,7 @@ "PE.Views.TextArtSettings.strSize": "Size", "PE.Views.TextArtSettings.strStroke": "Stroke", "PE.Views.TextArtSettings.strTransparency": "Opacity", + "PE.Views.TextArtSettings.strType": "Tip", "PE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "PE.Views.TextArtSettings.textColor": "Color Fill", "PE.Views.TextArtSettings.textDirection": "Direction", @@ -710,6 +1247,18 @@ "PE.Views.TextArtSettings.txtNoBorders": "No Line", "PE.Views.TextArtSettings.txtPapyrus": "Papyrus", "PE.Views.TextArtSettings.txtWood": "Wood", + "PE.Views.Toolbar.capAddSlide": "Slayt ekle", + "PE.Views.Toolbar.capBtnComment": "Yorum yap", + "PE.Views.Toolbar.capInsertChart": "Grafik", + "PE.Views.Toolbar.capInsertEquation": "Denklem", + "PE.Views.Toolbar.capInsertHyperlink": "Hiper Link", + "PE.Views.Toolbar.capInsertImage": "Resim", + "PE.Views.Toolbar.capInsertShape": "Şekil", + "PE.Views.Toolbar.capInsertTable": "Tablo", + "PE.Views.Toolbar.capInsertText": "Metin Kutusu", + "PE.Views.Toolbar.capTabFile": "Dosya", + "PE.Views.Toolbar.capTabHome": "Ana Sayfa", + "PE.Views.Toolbar.capTabInsert": "Ekle", "PE.Views.Toolbar.mniCustomTable": "Özel Tablo Ekle", "PE.Views.Toolbar.mniImageFromFile": "Dosyadan resim", "PE.Views.Toolbar.mniImageFromUrl": "URL'den resim", @@ -725,14 +1274,15 @@ "PE.Views.Toolbar.textAlignTop": "Metni yukarı hizala", "PE.Views.Toolbar.textArea": "Bölge Grafiği", "PE.Views.Toolbar.textArrangeBack": "Arkaplana gönder", - "PE.Views.Toolbar.textArrangeBackward": "Geri Taşı", + "PE.Views.Toolbar.textArrangeBackward": "Geri Gönder", "PE.Views.Toolbar.textArrangeForward": "İleri Taşı", "PE.Views.Toolbar.textArrangeFront": "Önplana Getir", "PE.Views.Toolbar.textBar": "Çubuk grafik", "PE.Views.Toolbar.textBold": "Kalın", "PE.Views.Toolbar.textCancel": "İptal Et", + "PE.Views.Toolbar.textCharts": "Grafikler", "PE.Views.Toolbar.textColumn": "Sütun grafik", - "PE.Views.Toolbar.textCompactView": "Kompakt Aletçantasını göster", + "PE.Views.Toolbar.textCompactView": "Araç listesini gizle", "PE.Views.Toolbar.textFitPage": "Slaytı sığdır", "PE.Views.Toolbar.textFitWidth": "Genişliğe Sığdır", "PE.Views.Toolbar.textHideLines": "Cetvelleri Gizle", @@ -750,16 +1300,25 @@ "PE.Views.Toolbar.textShapeAlignMiddle": "Ortaya hizala", "PE.Views.Toolbar.textShapeAlignRight": "Sağa Hizala", "PE.Views.Toolbar.textShapeAlignTop": "Üste Hizala", + "PE.Views.Toolbar.textShowBegin": "Başlangıçtan itibaren göster", + "PE.Views.Toolbar.textShowCurrent": "Mevcut slayttan itibaren göster", + "PE.Views.Toolbar.textShowPresenterView": "Sunucu görünümüne geç", + "PE.Views.Toolbar.textShowSettings": "Ayarları göster", "PE.Views.Toolbar.textStock": "Stok Grafiği", "PE.Views.Toolbar.textStrikeout": "Üstü çizili", "PE.Views.Toolbar.textSubscript": "Altsimge", "PE.Views.Toolbar.textSuperscript": "Üstsimge", + "PE.Views.Toolbar.textSurface": "Yüzey", + "PE.Views.Toolbar.textTabFile": "Dosya", + "PE.Views.Toolbar.textTabHome": "Ana Sayfa", + "PE.Views.Toolbar.textTabInsert": "Ekle", "PE.Views.Toolbar.textTitleError": "Hata", "PE.Views.Toolbar.textUnderline": "Altı çizili", "PE.Views.Toolbar.textZoom": "Zum", "PE.Views.Toolbar.tipAddSlide": "Slayt ekle", "PE.Views.Toolbar.tipAdvSettings": "Gelişmiş Ayarlar", "PE.Views.Toolbar.tipBack": "Geri", + "PE.Views.Toolbar.tipChangeChart": "Grafik Tipini Değiştir", "PE.Views.Toolbar.tipChangeSlide": "Slayt Tasarımını Değiştir", "PE.Views.Toolbar.tipClearStyle": "Stili Temizle", "PE.Views.Toolbar.tipColorSchemas": "Renk Şemasını Değiştir", @@ -767,17 +1326,19 @@ "PE.Views.Toolbar.tipCopyStyle": "Stili Kopyala", "PE.Views.Toolbar.tipDecPrLeft": "Girintiyi Azalt", "PE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", - "PE.Views.Toolbar.tipFontName": "Yazı Tipi İsmi", + "PE.Views.Toolbar.tipFontName": "Yazı Tipi", "PE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", "PE.Views.Toolbar.tipHAligh": "Yatay Hizala", "PE.Views.Toolbar.tipHideBars": "Başlık Çubuğu & Durum Çubuğunu Gizle", "PE.Views.Toolbar.tipIncPrLeft": "Girintiyi Arttır", "PE.Views.Toolbar.tipInsertChart": "Tablo ekle", + "PE.Views.Toolbar.tipInsertEquation": "Denklem Ekle", "PE.Views.Toolbar.tipInsertHyperlink": "Hiperbağ ekle", "PE.Views.Toolbar.tipInsertImage": "Resim ekle", "PE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle", "PE.Views.Toolbar.tipInsertTable": "Tablo ekle", "PE.Views.Toolbar.tipInsertText": "Metin ekle", + "PE.Views.Toolbar.tipInsertTextArt": "Metin Art Ekle", "PE.Views.Toolbar.tipLineSpace": "Satır Aralığı", "PE.Views.Toolbar.tipMarkers": "İmler", "PE.Views.Toolbar.tipNumbers": "Numaralandırma", diff --git a/apps/presentationeditor/main/locale/uk.json b/apps/presentationeditor/main/locale/uk.json index 964a87274..7e861c391 100644 --- a/apps/presentationeditor/main/locale/uk.json +++ b/apps/presentationeditor/main/locale/uk.json @@ -40,14 +40,14 @@ "Common.UI.Window.textInformation": "Інформація", "Common.UI.Window.textWarning": "Застереження", "Common.UI.Window.yesButtonText": "Так", - "Common.Utils.Metric.txtCm": "см\n", + "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", "Common.Views.About.txtAddress": "адреса:", "Common.Views.About.txtAscAddress": "Вул. Лубанас 125а-25, Рига, Латвія, ЄС, LV-1021", "Common.Views.About.txtLicensee": "ЛІЦЕНЗІЯ", "Common.Views.About.txtLicensor": "Ліцензіар", "Common.Views.About.txtMail": "пошта:", - "Common.Views.About.txtPoweredBy": "Під керуванням\n", + "Common.Views.About.txtPoweredBy": "Під керуванням", "Common.Views.About.txtTel": "Тел.:", "Common.Views.About.txtVersion": "Версія", "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Скасувати", @@ -95,7 +95,7 @@ "Common.Views.ImageFromUrlDialog.cancelButtonText": "Скасувати", "Common.Views.ImageFromUrlDialog.okButtonText": "OК", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим\n", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "Common.Views.InsertTableDialog.cancelButtonText": "Скасувати", "Common.Views.InsertTableDialog.okButtonText": "OК", @@ -611,7 +611,7 @@ "PE.Controllers.Toolbar.txtSymbol_vdots": "Вертикальний Еліпсіс", "PE.Controllers.Toolbar.txtSymbol_xsi": "ксі", "PE.Controllers.Toolbar.txtSymbol_zeta": "Зета", - "PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування\n", + "PE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ChartSettings.textArea": "Площа", "PE.Views.ChartSettings.textBar": "Вставити", "PE.Views.ChartSettings.textChartType": "Змінити тип діаграми", @@ -877,14 +877,14 @@ "PE.Views.HyperlinkSettingsDialog.textLinkType": "Тип посилання", "PE.Views.HyperlinkSettingsDialog.textTipText": "Текст ScreenTip", "PE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки", - "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим\n", + "PE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", "PE.Views.HyperlinkSettingsDialog.txtFirst": "Перший слайд", "PE.Views.HyperlinkSettingsDialog.txtLast": "Останній слайд", "PE.Views.HyperlinkSettingsDialog.txtNext": "Наступний слайд", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Попередній слайд", "PE.Views.HyperlinkSettingsDialog.txtSlide": "слайд", - "PE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування\n", + "PE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ImageSettings.textEdit": "Редагувати", "PE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", "PE.Views.ImageSettings.textFromFile": "З файлу", @@ -921,7 +921,7 @@ "PE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", "PE.Views.ParagraphSettings.strSpacingAfter": "після", "PE.Views.ParagraphSettings.strSpacingBefore": "Перед", - "PE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування\n", + "PE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ParagraphSettings.textAt": "при", "PE.Views.ParagraphSettings.textAtLeast": "принаймні", "PE.Views.ParagraphSettings.textAuto": "Багаторазовий", @@ -961,7 +961,7 @@ "PE.Views.RightMenu.txtSlideSettings": "Налаштування слайду", "PE.Views.RightMenu.txtTableSettings": "Налаштування таблиці", "PE.Views.RightMenu.txtTextArtSettings": "Налаштування текст Art", - "PE.Views.ShapeSettings.strBackground": "Колір фону\n", + "PE.Views.ShapeSettings.strBackground": "Колір фону", "PE.Views.ShapeSettings.strChange": "Змінити автофігуру", "PE.Views.ShapeSettings.strColor": "Колір", "PE.Views.ShapeSettings.strFill": "Заповнити", @@ -971,7 +971,7 @@ "PE.Views.ShapeSettings.strStroke": "Штрих", "PE.Views.ShapeSettings.strTransparency": "Непрозорість", "PE.Views.ShapeSettings.strType": "Тип", - "PE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування\n", + "PE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.ShapeSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "PE.Views.ShapeSettings.textColor": "Заповнити колір", "PE.Views.ShapeSettings.textDirection": "Напрямок", @@ -1037,7 +1037,7 @@ "PE.Views.ShapeSettingsAdvanced.textWeightArrows": "Ваги та стрілки", "PE.Views.ShapeSettingsAdvanced.textWidth": "Ширина", "PE.Views.ShapeSettingsAdvanced.txtNone": "немає", - "PE.Views.SlideSettings.strBackground": "Колір фону\n", + "PE.Views.SlideSettings.strBackground": "Колір фону", "PE.Views.SlideSettings.strColor": "Колір", "PE.Views.SlideSettings.strDelay": "Затримка", "PE.Views.SlideSettings.strDuration": "Тривалість", @@ -1046,7 +1046,7 @@ "PE.Views.SlideSettings.strForeground": "Колір переднього плану", "PE.Views.SlideSettings.strPattern": "Візерунок", "PE.Views.SlideSettings.strStartOnClick": "Натисніть на старт", - "PE.Views.SlideSettings.textAdvanced": "Показати додаткові налаштування\n", + "PE.Views.SlideSettings.textAdvanced": "Показати додаткові налаштування", "PE.Views.SlideSettings.textApplyAll": "Додати до усіх слайдів", "PE.Views.SlideSettings.textBlack": "Через Чорний", "PE.Views.SlideSettings.textBottom": "Внизу", @@ -1162,8 +1162,8 @@ "PE.Views.TableSettings.selectTableText": "Виберіть таблицю", "PE.Views.TableSettings.splitCellsText": "Розщеплені клітини...", "PE.Views.TableSettings.splitCellTitleText": "Розщеплені клітини", - "PE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування\n", - "PE.Views.TableSettings.textBackColor": "Колір фону\n", + "PE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування", + "PE.Views.TableSettings.textBackColor": "Колір фону", "PE.Views.TableSettings.textBanded": "У смужку", "PE.Views.TableSettings.textBorderColor": "Колір", "PE.Views.TableSettings.textBorders": "Стиль меж", @@ -1204,7 +1204,7 @@ "PE.Views.TableSettingsAdvanced.textTitle": "Таблиця - розширені налаштування", "PE.Views.TableSettingsAdvanced.textTop": "Верх", "PE.Views.TableSettingsAdvanced.textWidthSpaces": "Поля", - "PE.Views.TextArtSettings.strBackground": "Колір фону\n", + "PE.Views.TextArtSettings.strBackground": "Колір фону", "PE.Views.TextArtSettings.strColor": "Колір", "PE.Views.TextArtSettings.strFill": "Заповнити", "PE.Views.TextArtSettings.strForeground": "Колір переднього плану", diff --git a/apps/presentationeditor/main/locale/zh.json b/apps/presentationeditor/main/locale/zh.json index 8560ac0d8..c31beaf5a 100644 --- a/apps/presentationeditor/main/locale/zh.json +++ b/apps/presentationeditor/main/locale/zh.json @@ -214,7 +214,7 @@ "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "对象和两个对象", "PE.Controllers.Main.txtSldLtTObjAndTx": "对象和文本", "PE.Controllers.Main.txtSldLtTObjOnly": "目的", - "PE.Controllers.Main.txtSldLtTObjOverTx": "对象在文本之上\n", + "PE.Controllers.Main.txtSldLtTObjOverTx": "对象在文本之上", "PE.Controllers.Main.txtSldLtTObjTx": "标题,对象和标题", "PE.Controllers.Main.txtSldLtTPicTx": "图片和标题", "PE.Controllers.Main.txtSldLtTSecHead": "段首", @@ -378,9 +378,9 @@ "PE.Controllers.Toolbar.txtIntegral_dx": "差分x", "PE.Controllers.Toolbar.txtIntegral_dy": "差分y", "PE.Controllers.Toolbar.txtIntegralCenterSubSup": "积分", - "PE.Controllers.Toolbar.txtIntegralDouble": "双积分\n", - "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "双积分\n", - "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "双积分\n", + "PE.Controllers.Toolbar.txtIntegralDouble": "双积分", + "PE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "双积分", + "PE.Controllers.Toolbar.txtIntegralDoubleSubSup": "双积分", "PE.Controllers.Toolbar.txtIntegralOriented": "轮廓积分", "PE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "轮廓积分", "PE.Controllers.Toolbar.txtIntegralOrientedDouble": "曲面积分", @@ -481,7 +481,7 @@ "PE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "向左箭头", "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "下面箭头向右", "PE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "向右箭头上方", - "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "等于\n", + "PE.Controllers.Toolbar.txtOperator_EqualsEquals": "等于", "PE.Controllers.Toolbar.txtOperator_MinusEquals": "减号相等", "PE.Controllers.Toolbar.txtOperator_PlusEquals": "加上等于", "PE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "被测量", @@ -620,7 +620,7 @@ "PE.Views.DocumentHolder.centerText": "中心", "PE.Views.DocumentHolder.columnText": "列", "PE.Views.DocumentHolder.deleteColumnText": "删除列", - "PE.Views.DocumentHolder.deleteRowText": "删除行\n", + "PE.Views.DocumentHolder.deleteRowText": "删除行", "PE.Views.DocumentHolder.deleteTableText": "删除表", "PE.Views.DocumentHolder.deleteText": "删除", "PE.Views.DocumentHolder.direct270Text": "旋转270°", @@ -705,7 +705,7 @@ "PE.Views.DocumentHolder.txtFractionSkewed": "改为倾斜分数", "PE.Views.DocumentHolder.txtFractionStacked": "改为堆积分数", "PE.Views.DocumentHolder.txtGroup": "团队", - "PE.Views.DocumentHolder.txtGroupCharOver": "字符在文字上\n", + "PE.Views.DocumentHolder.txtGroupCharOver": "字符在文字上", "PE.Views.DocumentHolder.txtGroupCharUnder": "文字下的Char", "PE.Views.DocumentHolder.txtHideBottom": "隐藏底部边框", "PE.Views.DocumentHolder.txtHideBottomLimit": "隐藏下限", @@ -747,7 +747,7 @@ "PE.Views.DocumentHolder.txtScriptsBefore": "文字前的脚本", "PE.Views.DocumentHolder.txtSelectAll": "全选", "PE.Views.DocumentHolder.txtShowBottomLimit": "显示下限", - "PE.Views.DocumentHolder.txtShowCloseBracket": "显示关闭括号\n", + "PE.Views.DocumentHolder.txtShowCloseBracket": "显示关闭括号", "PE.Views.DocumentHolder.txtShowDegree": "显示学位", "PE.Views.DocumentHolder.txtShowOpenBracket": "显示开放支架", "PE.Views.DocumentHolder.txtShowPlaceholder": "显示占位符", @@ -1106,7 +1106,7 @@ "PE.Views.SlideSizeSettings.txtWidescreen2": "宽屏(16:10)", "PE.Views.Statusbar.goToPageText": "转到幻灯片", "PE.Views.Statusbar.pageIndexText": "{1}的幻灯片{0}", - "PE.Views.Statusbar.tipAccessRights": "管理文档访问权限\n", + "PE.Views.Statusbar.tipAccessRights": "管理文档访问权限", "PE.Views.Statusbar.tipFitPage": "适合幻灯片", "PE.Views.Statusbar.tipFitWidth": "适合宽度", "PE.Views.Statusbar.tipPreview": "开始幻灯片放映", @@ -1118,7 +1118,7 @@ "PE.Views.Statusbar.tipZoomOut": "缩小", "PE.Views.Statusbar.txtPageNumInvalid": "幻灯片编号无效", "PE.Views.TableSettings.deleteColumnText": "删除列", - "PE.Views.TableSettings.deleteRowText": "删除行\n", + "PE.Views.TableSettings.deleteRowText": "删除行", "PE.Views.TableSettings.deleteTableText": "删除表", "PE.Views.TableSettings.insertColumnLeftText": "在左侧插入列", "PE.Views.TableSettings.insertColumnRightText": "向右侧插入列", diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json new file mode 100644 index 000000000..771eb31f4 --- /dev/null +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -0,0 +1,445 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", + "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "PE.Controllers.AddContainer.textImage": "Obraz", + "PE.Controllers.AddContainer.textLink": "Link", + "PE.Controllers.AddContainer.textShape": "Kształt", + "PE.Controllers.AddContainer.textSlide": "Slajd", + "PE.Controllers.AddContainer.textTable": "Tabela", + "PE.Controllers.AddImage.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "PE.Controllers.AddImage.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "PE.Controllers.AddLink.textDefault": "Wybrany tekst", + "PE.Controllers.AddLink.textExternalLink": "Link zewnętrzny", + "PE.Controllers.AddLink.textFirst": "Pierwszy slajd", + "PE.Controllers.AddLink.textInternalLink": "Slajd w tej prezentacji", + "PE.Controllers.AddLink.textLast": "Ostatni slajd", + "PE.Controllers.AddLink.textNext": "Następny slajd", + "PE.Controllers.AddLink.textPrev": "Poprzedni slajd", + "PE.Controllers.AddLink.textSlide": "Slajd", + "PE.Controllers.AddLink.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "PE.Controllers.AddTable.textCancel": "Anuluj", + "PE.Controllers.AddTable.textColumns": "Kolumny", + "PE.Controllers.AddTable.textRows": "Wiersze", + "PE.Controllers.AddTable.textTableSize": "Rozmiar tablicy", + "PE.Controllers.DocumentHolder.menuAddLink": "Dodaj link", + "PE.Controllers.DocumentHolder.menuCopy": "Kopiuj", + "PE.Controllers.DocumentHolder.menuCut": "Wytnij", + "PE.Controllers.DocumentHolder.menuDelete": "Usunąć", + "PE.Controllers.DocumentHolder.menuEdit": "Edytować", + "PE.Controllers.DocumentHolder.menuMore": "Więcej", + "PE.Controllers.DocumentHolder.menuOpenLink": "Otwórz link", + "PE.Controllers.DocumentHolder.menuPaste": "Wklej", + "PE.Controllers.DocumentHolder.sheetCancel": "Anuluj", + "PE.Controllers.EditContainer.textChart": "Wykres", + "PE.Controllers.EditContainer.textHyperlink": "Hiperlink", + "PE.Controllers.EditContainer.textImage": "Obraz", + "PE.Controllers.EditContainer.textSettings": "Ustawienia", + "PE.Controllers.EditContainer.textShape": "Kształt", + "PE.Controllers.EditContainer.textSlide": "Slajd", + "PE.Controllers.EditContainer.textTable": "Tabela", + "PE.Controllers.EditContainer.textText": "Tekst", + "PE.Controllers.EditImage.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "PE.Controllers.EditImage.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "PE.Controllers.EditLink.textDefault": "Wybrany tekst", + "PE.Controllers.EditLink.textExternalLink": "Link zewnętrzny", + "PE.Controllers.EditLink.textFirst": "Pierwszy slajd", + "PE.Controllers.EditLink.textInternalLink": "Slajd w tej prezentacji", + "PE.Controllers.EditLink.textLast": "Ostatni slajd", + "PE.Controllers.EditLink.textNext": "Następny slajd", + "PE.Controllers.EditLink.textPrev": "Poprzedni slajd", + "PE.Controllers.EditLink.textSlide": "Slajd", + "PE.Controllers.EditLink.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "PE.Controllers.EditSlide.textSec": "s", + "PE.Controllers.EditText.textAuto": "Automatyczny", + "PE.Controllers.EditText.textFonts": "Czcionki", + "PE.Controllers.EditText.textPt": "pt", + "PE.Controllers.Main.advDRMEnterPassword": "Wprowadź swoje hasło:", + "PE.Controllers.Main.advDRMOptions": "Plik chroniony", + "PE.Controllers.Main.advDRMPassword": "Hasło", + "PE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", + "PE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", + "PE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", + "PE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.", + "PE.Controllers.Main.criticalErrorTitle": "Błąd", + "PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor prezentacji", + "PE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", + "PE.Controllers.Main.downloadTextText": "Pobieranie dokumentu...", + "PE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu", + "PE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie możesz już edytować.", + "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.

Dowiedz się więcej o połączeniu serwera dokumentów tutaj", + "PE.Controllers.Main.errorDatabaseConnection": "Zewnętrzny błąd.
Błąd połączenia z bazą danych. Proszę skontaktuj się z administratorem.", + "PE.Controllers.Main.errorDataRange": "Błędny zakres danych.", + "PE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "PE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem.", + "PE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", + "PE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", + "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.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "PE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", + "PE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", + "PE.Controllers.Main.errorUsersExceed": "Liczba użytkowników została przekroczona.", + "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.", + "PE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "PE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", + "PE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", + "PE.Controllers.Main.loadFontTextText": "Ładowanie danych...", + "PE.Controllers.Main.loadFontTitleText": "Ładowanie danych", + "PE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", + "PE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", + "PE.Controllers.Main.loadImageTextText": "Ładowanie obrazu", + "PE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", + "PE.Controllers.Main.loadingDocumentTextText": "Ładowanie prezentacji...", + "PE.Controllers.Main.loadingDocumentTitleText": "Ładowanie prezentacji", + "PE.Controllers.Main.loadThemeTextText": "Ładowanie motywu...", + "PE.Controllers.Main.loadThemeTitleText": "Ładowanie motywu", + "PE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", + "PE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", + "PE.Controllers.Main.openTextText": "Otwieranie dokumentu...", + "PE.Controllers.Main.openTitleText": "Otwieranie dokumentu", + "PE.Controllers.Main.printTextText": "Drukowanie dokumentu...", + "PE.Controllers.Main.printTitleText": "Drukowanie dokumentu", + "PE.Controllers.Main.reloadButtonText": "Przeładuj stronę", + "PE.Controllers.Main.requestEditFailedMessageText": "Ktoś właśnie edytuje ten dokument. 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.savePreparingText": "Przygotowywanie do zapisu", + "PE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", + "PE.Controllers.Main.saveTextText": "Zapisywanie dokumentu...", + "PE.Controllers.Main.saveTitleText": "Zapisywanie dokumentu", + "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", + "PE.Controllers.Main.textAnonymous": "Anonimowy użytkownik ", + "PE.Controllers.Main.textBack": "Powrót", + "PE.Controllers.Main.textBuyNow": "Odwiedź stronę web", + "PE.Controllers.Main.textCancel": "Anuluj", + "PE.Controllers.Main.textClose": "Zamknij", + "PE.Controllers.Main.textCloseTip": "Dotknij, aby zamknąć podpowiedź.", + "PE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "PE.Controllers.Main.textDone": "Gotowe", + "PE.Controllers.Main.textLoadingDocument": "Ładowanie prezentacji", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", + "PE.Controllers.Main.textOK": "OK", + "PE.Controllers.Main.textPassword": "Hasło", + "PE.Controllers.Main.textPreloader": "Ładowanie...", + "PE.Controllers.Main.textShape": "Kształt", + "PE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie Szybkim współtworzenia.", + "PE.Controllers.Main.textUsername": "Nazwa użytkownika", + "PE.Controllers.Main.titleLicenseExp": "Upłynął okres ważności licencji", + "PE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "PE.Controllers.Main.txtArt": "Twój tekst tutaj", + "PE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", + "PE.Controllers.Main.txtButtons": "Przyciski", + "PE.Controllers.Main.txtCallouts": "Objaśnienia", + "PE.Controllers.Main.txtCharts": "Wykresy", + "PE.Controllers.Main.txtClipArt": "Klipart", + "PE.Controllers.Main.txtDateTime": "Data i czas", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", + "PE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", + "PE.Controllers.Main.txtFiguredArrows": "Strzałki", + "PE.Controllers.Main.txtFooter": "Stopka", + "PE.Controllers.Main.txtHeader": "Nagłówek", + "PE.Controllers.Main.txtImage": "Obraz", + "PE.Controllers.Main.txtLines": "Linie", + "PE.Controllers.Main.txtMath": "Matematyczne", + "PE.Controllers.Main.txtMedia": "Klip multimedialny", + "PE.Controllers.Main.txtNeedSynchronize": "Masz aktualizacje", + "PE.Controllers.Main.txtPicture": "Obraz", + "PE.Controllers.Main.txtRectangles": "Prostokąty", + "PE.Controllers.Main.txtSeries": "Serie", + "PE.Controllers.Main.txtSldLtTBlank": "Pusty", + "PE.Controllers.Main.txtSldLtTChart": "Wykres", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Wykres i tekst", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art and Text", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Grafika i tekst pionowy", + "PE.Controllers.Main.txtSldLtTCust": "Niestandardowy", + "PE.Controllers.Main.txtSldLtTDgm": "Diagram", + "PE.Controllers.Main.txtSldLtTFourObj": "Cztery obiekty", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media i tekst", + "PE.Controllers.Main.txtSldLtTObj": "Tytuł i obiekt", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Obiekt i dwa obiekty", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Obiekt i tekst", + "PE.Controllers.Main.txtSldLtTObjOnly": "Obiekt", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Obiekt nad tekstem", + "PE.Controllers.Main.txtSldLtTObjTx": "Tytuł, Obiekt i Podpis", + "PE.Controllers.Main.txtSldLtTPicTx": "Obraz i napis", + "PE.Controllers.Main.txtSldLtTSecHead": "Nagłówek sekcji", + "PE.Controllers.Main.txtSldLtTTbl": "Tabela", + "PE.Controllers.Main.txtSldLtTTitle": "Tytuł", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Tylko tytuł", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Dwie kolumny tekstowe", + "PE.Controllers.Main.txtSldLtTTwoObj": "Dwa obiekty", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dwa obiekty i obiekt", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dwa obiekty i tekst", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dwa obiekty nad tekstem", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dwa teksty i dwa obiekty", + "PE.Controllers.Main.txtSldLtTTx": "Tekst", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Tekst i wykres", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Tekst i obrazek", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Tekst i media", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Tekst i obiekt", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Tekst i dwa obiekty", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Tekst nad obiektem", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Pionowy tytuł i tekst", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Pionowy tytuł i tekst nad wykresem", + "PE.Controllers.Main.txtSldLtTVertTx": "Pionowy tekst", + "PE.Controllers.Main.txtSlideNumber": "Numer slajdu", + "PE.Controllers.Main.txtSlideSubtitle": "Podtytuł slajdu", + "PE.Controllers.Main.txtSlideText": "Treść slajdu", + "PE.Controllers.Main.txtSlideTitle": "Tytuł slajdu", + "PE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", + "PE.Controllers.Main.txtXAxis": "Oś X", + "PE.Controllers.Main.txtYAxis": "Oś Y", + "PE.Controllers.Main.unknownErrorText": "Nieznany błąd.", + "PE.Controllers.Main.unsupportedBrowserErrorText ": "Twoja przeglądarka nie jest wspierana.", + "PE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", + "PE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu został przekroczony.", + "PE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", + "PE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", + "PE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "PE.Controllers.Main.warnNoLicense": "Używasz wersji ONLYOFFICE 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.warnProcessRightsChange": "Nie masz prawa edytować tego pliku.", + "PE.Controllers.Search.textNoTextFound": "Nie znaleziono tekstu", + "PE.Controllers.Settings.notcriticalErrorTitle": "Ostrzeżenie", + "PE.Controllers.Settings.txtLoading": "Ładowanie...", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "PE.Controllers.Toolbar.dlgLeaveTitleText": "Opuszczasz aplikację", + "PE.Controllers.Toolbar.leaveButtonText": "Zostaw tę stronę", + "PE.Controllers.Toolbar.stayButtonText": "Zostań na tej stronie", + "PE.Views.AddImage.textAddress": "adres", + "PE.Views.AddImage.textBack": "Powrót", + "PE.Views.AddImage.textFromLibrary": "Obraz z biblioteki", + "PE.Views.AddImage.textFromURL": "Obraz z URL", + "PE.Views.AddImage.textImageURL": "Adres URL obrazu", + "PE.Views.AddImage.textInsertImage": "Wstaw obraz", + "PE.Views.AddImage.textLinkSettings": "Ustawienia linku", + "PE.Views.AddLink.textBack": "Powrót", + "PE.Views.AddLink.textDisplay": "Pokaż", + "PE.Views.AddLink.textExternalLink": "Link zewnętrzny", + "PE.Views.AddLink.textFirst": "Pierwszy slajd", + "PE.Views.AddLink.textInsert": "Wstawić", + "PE.Views.AddLink.textInternalLink": "Slajd w tej prezentacji", + "PE.Views.AddLink.textLast": "Ostatni slajd", + "PE.Views.AddLink.textLink": "Link", + "PE.Views.AddLink.textLinkSlide": "Link do", + "PE.Views.AddLink.textLinkType": "Typ linku", + "PE.Views.AddLink.textNext": "Następny slajd", + "PE.Views.AddLink.textNumber": "Numer slajdu", + "PE.Views.AddLink.textPrev": "Poprzedni slajd", + "PE.Views.AddLink.textTip": "Wskazówka", + "PE.Views.EditChart.textAlign": "Wyrównaj", + "PE.Views.EditChart.textAlignBottom": "Wyrównaj do dołu", + "PE.Views.EditChart.textAlignCenter": "Wyrównaj do środka", + "PE.Views.EditChart.textAlignLeft": "Wyrównaj po lewej", + "PE.Views.EditChart.textAlignMiddle": "Wyrównaj do środka", + "PE.Views.EditChart.textAlignRight": "Wyrównaj do prawej", + "PE.Views.EditChart.textAlignTop": "Wyrównaj do góry", + "PE.Views.EditChart.textBack": "Powrót", + "PE.Views.EditChart.textBackward": "Przenieś do tyłu", + "PE.Views.EditChart.textBorder": "Obramowanie", + "PE.Views.EditChart.textColor": "Kolor", + "PE.Views.EditChart.textFill": "Wypełnij", + "PE.Views.EditChart.textForward": "Przenieś do przodu", + "PE.Views.EditChart.textRemoveChart": "Usuń wykres", + "PE.Views.EditChart.textReorder": "Zmień kolejność", + "PE.Views.EditChart.textSize": "Rozmiar", + "PE.Views.EditChart.textStyle": "Styl", + "PE.Views.EditChart.textToBackground": "Wyślij do tła", + "PE.Views.EditChart.textToForeground": "Przejdź na pierwszy plan", + "PE.Views.EditChart.textType": "Typ", + "PE.Views.EditChart.txtDistribHor": "Rozdziel poziomo", + "PE.Views.EditChart.txtDistribVert": "Rozdziel pionowo", + "PE.Views.EditImage.textAddress": "adres", + "PE.Views.EditImage.textAlign": "Wyrównaj", + "PE.Views.EditImage.textAlignBottom": "Wyrównaj do dołu", + "PE.Views.EditImage.textAlignCenter": "Wyrównaj do środka", + "PE.Views.EditImage.textAlignLeft": "Wyrównaj po lewej", + "PE.Views.EditImage.textAlignMiddle": "Wyrównaj do środka", + "PE.Views.EditImage.textAlignRight": "Wyrównaj do prawej", + "PE.Views.EditImage.textAlignTop": "Wyrównaj do góry", + "PE.Views.EditImage.textBack": "Powrót", + "PE.Views.EditImage.textBackward": "Przenieś do tyłu", + "PE.Views.EditImage.textDefault": "Domyślny rozmiar", + "PE.Views.EditImage.textForward": "Przenieś do przodu", + "PE.Views.EditImage.textFromLibrary": "Obraz z biblioteki", + "PE.Views.EditImage.textFromURL": "Obraz z URL", + "PE.Views.EditImage.textImageURL": "Adres URL obrazu", + "PE.Views.EditImage.textLinkSettings": "Ustawienia linku", + "PE.Views.EditImage.textRemove": "Usuń obraz", + "PE.Views.EditImage.textReorder": "Zmień kolejność", + "PE.Views.EditImage.textReplace": "Zamienić", + "PE.Views.EditImage.textReplaceImg": "Zamień obraz", + "PE.Views.EditImage.textToBackground": "Wyślij do tła", + "PE.Views.EditImage.textToForeground": "Przejdź na pierwszy plan", + "PE.Views.EditImage.txtDistribHor": "Rozdziel poziomo", + "PE.Views.EditImage.txtDistribVert": "Rozdziel pionowo", + "PE.Views.EditLink.textBack": "Powrót", + "PE.Views.EditLink.textDisplay": "Pokaż", + "PE.Views.EditLink.textEdit": "Edytuj link", + "PE.Views.EditLink.textExternalLink": "Link zewnętrzny", + "PE.Views.EditLink.textFirst": "Pierwszy slajd", + "PE.Views.EditLink.textInternalLink": "Slajd w tej prezentacji", + "PE.Views.EditLink.textLast": "Ostatni slajd", + "PE.Views.EditLink.textLink": "Link", + "PE.Views.EditLink.textLinkSlide": "Link do", + "PE.Views.EditLink.textLinkType": "Typ linku", + "PE.Views.EditLink.textNext": "Następny slajd", + "PE.Views.EditLink.textNumber": "Numer slajdu", + "PE.Views.EditLink.textPrev": "Poprzedni slajd", + "PE.Views.EditLink.textRemove": "Usuń link", + "PE.Views.EditLink.textTip": "Wskazówka", + "PE.Views.EditShape.textAlign": "Wyrównaj", + "PE.Views.EditShape.textAlignBottom": "Wyrównaj do dołu", + "PE.Views.EditShape.textAlignCenter": "Wyrównaj do środka", + "PE.Views.EditShape.textAlignLeft": "Wyrównaj po lewej", + "PE.Views.EditShape.textAlignMiddle": "Wyrównaj do środka", + "PE.Views.EditShape.textAlignRight": "Wyrównaj do prawej", + "PE.Views.EditShape.textAlignTop": "Wyrównaj do góry", + "PE.Views.EditShape.textBack": "Powrót", + "PE.Views.EditShape.textBackward": "Przenieś do tyłu", + "PE.Views.EditShape.textBorder": "Obramowanie", + "PE.Views.EditShape.textColor": "Kolor", + "PE.Views.EditShape.textEffects": "Efekty", + "PE.Views.EditShape.textFill": "Wypełnij", + "PE.Views.EditShape.textForward": "Przenieś do przodu", + "PE.Views.EditShape.textOpacity": "Nieprzezroczystość", + "PE.Views.EditShape.textRemoveShape": "Usuń kształt", + "PE.Views.EditShape.textReorder": "Zmień kolejność", + "PE.Views.EditShape.textReplace": "Zamienić", + "PE.Views.EditShape.textSize": "Rozmiar", + "PE.Views.EditShape.textStyle": "Styl", + "PE.Views.EditShape.textToBackground": "Wyślij do tła", + "PE.Views.EditShape.textToForeground": "Przejdź na pierwszy plan", + "PE.Views.EditShape.txtDistribHor": "Rozdziel poziomo", + "PE.Views.EditShape.txtDistribVert": "Rozdziel pionowo", + "PE.Views.EditSlide.textApplyAll": "Zatwierdź dla wszystkich slajdów", + "PE.Views.EditSlide.textBack": "Powrót", + "PE.Views.EditSlide.textBlack": "Przez czarne", + "PE.Views.EditSlide.textBottom": "Dół", + "PE.Views.EditSlide.textBottomLeft": "Na dole po lewej", + "PE.Views.EditSlide.textBottomRight": "Prawy dolny", + "PE.Views.EditSlide.textClock": "Zegar", + "PE.Views.EditSlide.textClockwise": "Zgodnie z ruchem wskazówek zegara", + "PE.Views.EditSlide.textColor": "Kolor", + "PE.Views.EditSlide.textCounterclockwise": "Przeciwnie do ruchu wskazówek zegara", + "PE.Views.EditSlide.textCover": "Pokryj", + "PE.Views.EditSlide.textDelay": "Opóźnienie", + "PE.Views.EditSlide.textDuplicateSlide": "Duplikat slajdu", + "PE.Views.EditSlide.textDuration": "Trwanie", + "PE.Views.EditSlide.textEffect": "Efekt", + "PE.Views.EditSlide.textFade": "Blaknąć", + "PE.Views.EditSlide.textFill": "Wypełnij", + "PE.Views.EditSlide.textHorizontalIn": "W poziomie do środka", + "PE.Views.EditSlide.textHorizontalOut": "W poziomie na zewnątrz", + "PE.Views.EditSlide.textLayout": "Układ", + "PE.Views.EditSlide.textLeft": "Lewy", + "PE.Views.EditSlide.textNone": "Nie", + "PE.Views.EditSlide.textOpacity": "Nieprzezroczystość", + "PE.Views.EditSlide.textPush": "Pchnij", + "PE.Views.EditSlide.textRemoveSlide": "Usuń slajd", + "PE.Views.EditSlide.textRight": "Prawy", + "PE.Views.EditSlide.textSmoothly": "Płynnie", + "PE.Views.EditSlide.textSplit": "Podziel", + "PE.Views.EditSlide.textStartOnClick": "Zacznij od kliknięcia", + "PE.Views.EditSlide.textStyle": "Styl", + "PE.Views.EditSlide.textTheme": "Motyw", + "PE.Views.EditSlide.textTop": "Góra", + "PE.Views.EditSlide.textTopLeft": "Lewy górny", + "PE.Views.EditSlide.textTopRight": "W prawym górnym rogu", + "PE.Views.EditSlide.textTransition": "Przejście", + "PE.Views.EditSlide.textType": "Typ", + "PE.Views.EditSlide.textUnCover": "Odkryj", + "PE.Views.EditSlide.textVerticalIn": "W pionie", + "PE.Views.EditSlide.textVerticalOut": "W pionie na zewnątrz", + "PE.Views.EditSlide.textWedge": "Zaklinuj", + "PE.Views.EditSlide.textWipe": "Wytrzyj", + "PE.Views.EditSlide.textZoom": "Powiększenie", + "PE.Views.EditSlide.textZoomIn": "Powiększ", + "PE.Views.EditSlide.textZoomOut": "Pomniejsz", + "PE.Views.EditSlide.textZoomRotate": "Powiększenie i obrót", + "PE.Views.EditTable.textAlign": "Wyrównaj", + "PE.Views.EditTable.textAlignBottom": "Wyrównaj do dołu", + "PE.Views.EditTable.textAlignCenter": "Wyrównaj do środka", + "PE.Views.EditTable.textAlignLeft": "Wyrównaj po lewej", + "PE.Views.EditTable.textAlignMiddle": "Wyrównaj do środka", + "PE.Views.EditTable.textAlignRight": "Wyrównaj do prawej", + "PE.Views.EditTable.textAlignTop": "Wyrównaj do góry", + "PE.Views.EditTable.textBack": "Powrót", + "PE.Views.EditTable.textBackward": "Przenieś do tyłu", + "PE.Views.EditTable.textBandedColumn": "Kolumna w paski", + "PE.Views.EditTable.textBandedRow": "Na przemian wiersze", + "PE.Views.EditTable.textBorder": "Obramowanie", + "PE.Views.EditTable.textCellMargins": "Marginesy komórki", + "PE.Views.EditTable.textColor": "Kolor", + "PE.Views.EditTable.textFill": "Wypełnij", + "PE.Views.EditTable.textFirstColumn": "Pierwsza kolumna", + "PE.Views.EditTable.textForward": "Przenieś do przodu", + "PE.Views.EditTable.textHeaderRow": "Wiersz nagłówka", + "PE.Views.EditTable.textLastColumn": "Ostatnia kolumna", + "PE.Views.EditTable.textOptions": "Opcje", + "PE.Views.EditTable.textRemoveTable": "Usuń tabelę", + "PE.Views.EditTable.textReorder": "Zmień kolejność", + "PE.Views.EditTable.textSize": "Rozmiar", + "PE.Views.EditTable.textStyle": "Styl", + "PE.Views.EditTable.textStyleOptions": "Opcje stylu", + "PE.Views.EditTable.textTableOptions": "Opcje tabeli", + "PE.Views.EditTable.textToBackground": "Wyślij do tła", + "PE.Views.EditTable.textToForeground": "Przejdź na pierwszy plan", + "PE.Views.EditTable.textTotalRow": "Cały wiersz", + "PE.Views.EditTable.txtDistribHor": "Rozdziel poziomo", + "PE.Views.EditTable.txtDistribVert": "Rozdziel pionowo", + "PE.Views.EditText.textAdditional": "Inne funkcje", + "PE.Views.EditText.textAdditionalFormat": "Dodatkowe formatowanie", + "PE.Views.EditText.textAfter": "po", + "PE.Views.EditText.textAllCaps": "Wszystkie duże litery", + "PE.Views.EditText.textAutomatic": "Automatyczny", + "PE.Views.EditText.textBack": "Powrót", + "PE.Views.EditText.textBefore": "Przed", + "PE.Views.EditText.textBullets": "Lista punktowa", + "PE.Views.EditText.textDblStrikethrough": "Podwójne przekreślenie", + "PE.Views.EditText.textDblSuperscript": "Indeks górny", + "PE.Views.EditText.textFontColor": "Kolor czcionki", + "PE.Views.EditText.textFontColors": "Kolory czcionki", + "PE.Views.EditText.textFonts": "Czcionki", + "PE.Views.EditText.textFromText": "Odległość od tekstu", + "PE.Views.EditText.textLetterSpacing": "Odstęp między literami", + "PE.Views.EditText.textLineSpacing": "Rozstaw wierszy", + "PE.Views.EditText.textNone": "Nie", + "PE.Views.EditText.textNumbers": "Liczby", + "PE.Views.EditText.textSize": "Rozmiar", + "PE.Views.EditText.textSmallCaps": "Małe litery", + "PE.Views.EditText.textStrikethrough": "Przekreślony", + "PE.Views.EditText.textSubscript": "Indeks", + "PE.Views.Search.textSearch": "Wyszukiwanie", + "PE.Views.Settings.mniSlideStandard": "Standard (4: 3)", + "PE.Views.Settings.mniSlideWide": "Ekran panoramiczny (16:9)", + "PE.Views.Settings.textAbout": "O", + "PE.Views.Settings.textAddress": "adres", + "PE.Views.Settings.textAuthor": "Autor", + "PE.Views.Settings.textBack": "Powrót", + "PE.Views.Settings.textCreateDate": "Data utworzenia", + "PE.Views.Settings.textDone": "Gotowe", + "PE.Views.Settings.textDownload": "Pobierz", + "PE.Views.Settings.textDownloadAs": "Pobierz jako...", + "PE.Views.Settings.textEditPresent": "Edytuj prezentację", + "PE.Views.Settings.textEmail": "e-mail", + "PE.Views.Settings.textFind": "Znajdź", + "PE.Views.Settings.textHelp": "Pomoc", + "PE.Views.Settings.textLoading": "Ładowanie...", + "PE.Views.Settings.textPoweredBy": "zasilany przez", + "PE.Views.Settings.textPresentInfo": "Informacje o prezentacji", + "PE.Views.Settings.textPresentSetup": "Konfiguracja prezentacji", + "PE.Views.Settings.textPresentTitle": "Tytuł prezentacji", + "PE.Views.Settings.textSettings": "Ustawienia", + "PE.Views.Settings.textSlideSize": "Rozmiar slajdu", + "PE.Views.Settings.textTel": "tel", + "PE.Views.Settings.textVersion": "Wersja", + "PE.Views.Settings.unknownText": "Nieznany", + "PE.Views.Toolbar.textBack": "Powrót" +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 411971ffd..6b084edde 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -13,7 +13,7 @@ "PE.Controllers.AddLink.textDefault": "Vybraný text", "PE.Controllers.AddLink.textExternalLink": "Externý odkaz", "PE.Controllers.AddLink.textFirst": "Prvá snímka", - "PE.Controllers.AddLink.textInternalLink": "Snímok v tejto prezentácii\n\n", + "PE.Controllers.AddLink.textInternalLink": "Snímok v tejto prezentácii", "PE.Controllers.AddLink.textLast": "Posledná snímka", "PE.Controllers.AddLink.textNext": "Nasledujúca snímka", "PE.Controllers.AddLink.textPrev": "Predchádzajúca snímka", @@ -29,7 +29,7 @@ "PE.Controllers.DocumentHolder.menuDelete": "Vymazať", "PE.Controllers.DocumentHolder.menuEdit": "Upraviť", "PE.Controllers.DocumentHolder.menuMore": "Viac", - "PE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz\n\n", + "PE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz", "PE.Controllers.DocumentHolder.menuPaste": "Vložiť", "PE.Controllers.DocumentHolder.sheetCancel": "Zrušiť", "PE.Controllers.EditContainer.textChart": "Graf", @@ -45,7 +45,7 @@ "PE.Controllers.EditLink.textDefault": "Vybraný text", "PE.Controllers.EditLink.textExternalLink": "Externý odkaz", "PE.Controllers.EditLink.textFirst": "Prvá snímka", - "PE.Controllers.EditLink.textInternalLink": "Snímok v tejto prezentácii\n\n", + "PE.Controllers.EditLink.textInternalLink": "Snímok v tejto prezentácii", "PE.Controllers.EditLink.textLast": "Posledná snímka", "PE.Controllers.EditLink.textNext": "Nasledujúca snímka", "PE.Controllers.EditLink.textPrev": "Predchádzajúca snímka", @@ -60,30 +60,30 @@ "PE.Controllers.Main.advDRMPassword": "Heslo", "PE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", "PE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", - "PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n", - "PE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.\n\n", + "PE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", + "PE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.", "PE.Controllers.Main.criticalErrorTitle": "Chyba", "PE.Controllers.Main.defaultTitleText": "Editor ONLYOFFICE Prezentácia", "PE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", "PE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", "PE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", "PE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.\n\n", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.", "PE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Skontrolujte nastavenia pripojenia alebo sa obráťte na správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na stiahnutie dokumentu.

Viac informácií o pripojení dokumentového servera tu", "PE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Obráťte sa prosím na podporu.", - "PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n", + "PE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "PE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.\n\n", - "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n", - "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n", + "PE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom.", + "PE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "PE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "PE.Controllers.Main.errorProcessSaveResult": "Uloženie zlyhalo.", - "PE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n", - "PE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", - "PE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n", - "PE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n", - "PE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený\n\n", + "PE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "PE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "PE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "PE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "PE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený", "PE.Controllers.Main.errorViewerDisconnect": "Spojenie je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", - "PE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n", + "PE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", "PE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "PE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "PE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -91,11 +91,11 @@ "PE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", "PE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "PE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "PE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n", - "PE.Controllers.Main.loadingDocumentTextText": "Načítavanie prezentácie...\n\n", - "PE.Controllers.Main.loadingDocumentTitleText": "Načítavanie prezentácie\n\n", - "PE.Controllers.Main.loadThemeTextText": "Načítavanie témy...\n\n", - "PE.Controllers.Main.loadThemeTitleText": "Načítavanie témy\n\n", + "PE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", + "PE.Controllers.Main.loadingDocumentTextText": "Načítavanie prezentácie...", + "PE.Controllers.Main.loadingDocumentTitleText": "Načítavanie prezentácie", + "PE.Controllers.Main.loadThemeTextText": "Načítavanie témy...", + "PE.Controllers.Main.loadThemeTitleText": "Načítavanie témy", "PE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", "PE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", "PE.Controllers.Main.openTextText": "Otváranie dokumentu...", @@ -103,36 +103,36 @@ "PE.Controllers.Main.printTextText": "Tlač dokumentu...", "PE.Controllers.Main.printTitleText": "Tlač dokumentu", "PE.Controllers.Main.reloadButtonText": "Obnoviť stránku", - "PE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.\n\n", + "PE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", "PE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", "PE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "PE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n", - "PE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n", + "PE.Controllers.Main.savePreparingText": "Príprava na uloženie", + "PE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", "PE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", "PE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", - "PE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom %1\n\n", - "PE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1\n\n", - "PE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1\n\n\n\n", + "PE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom %1", + "PE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako %1", + "PE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako %1", "PE.Controllers.Main.textAnonymous": "Anonymný", "PE.Controllers.Main.textBack": "Späť", "PE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "PE.Controllers.Main.textCancel": "Zrušiť", "PE.Controllers.Main.textClose": "Zatvoriť", - "PE.Controllers.Main.textCloseTip": "Klepnutím zavrite nápovedu.\n\n", - "PE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n", + "PE.Controllers.Main.textCloseTip": "Klepnutím zavrite nápovedu.", + "PE.Controllers.Main.textContactUs": "Kontaktujte predajcu", "PE.Controllers.Main.textDone": "Hotovo", - "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie\n\n", - "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n", + "PE.Controllers.Main.textLoadingDocument": "Načítavanie prezentácie", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom", "PE.Controllers.Main.textOK": "OK", "PE.Controllers.Main.textPassword": "Heslo", "PE.Controllers.Main.textPreloader": "Nahrávanie...", "PE.Controllers.Main.textShape": "Tvar", "PE.Controllers.Main.textTryUndoRedo": "Funkcie späť/opakovať sú pre rýchly spolu-editačný režim vypnuté.", "PE.Controllers.Main.textUsername": "Užívateľské meno", - "PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n", - "PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n", + "PE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", + "PE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "PE.Controllers.Main.txtArt": "Váš text tu", - "PE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n", + "PE.Controllers.Main.txtBasicShapes": "Základné tvary", "PE.Controllers.Main.txtButtons": "Tlačidlá", "PE.Controllers.Main.txtCallouts": "Bubliny", "PE.Controllers.Main.txtCharts": "Grafy", @@ -140,15 +140,15 @@ "PE.Controllers.Main.txtDateTime": "Dátum a čas", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "PE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n", + "PE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", "PE.Controllers.Main.txtFiguredArrows": "Šipky", - "PE.Controllers.Main.txtFooter": "Päta stránky\n", + "PE.Controllers.Main.txtFooter": "Päta stránky", "PE.Controllers.Main.txtHeader": "Hlavička", "PE.Controllers.Main.txtImage": "Obrázok", "PE.Controllers.Main.txtLines": "Čiary", "PE.Controllers.Main.txtMath": "Matematika", "PE.Controllers.Main.txtMedia": "Médiá ", - "PE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie\n\n", + "PE.Controllers.Main.txtNeedSynchronize": "Máte aktualizácie", "PE.Controllers.Main.txtPicture": "Obrázok", "PE.Controllers.Main.txtRectangles": "Obdĺžniky", "PE.Controllers.Main.txtSeries": "Rady", @@ -159,20 +159,20 @@ "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Klipart a vertikálny text", "PE.Controllers.Main.txtSldLtTCust": "Vlastný", "PE.Controllers.Main.txtSldLtTDgm": "Diagram", - "PE.Controllers.Main.txtSldLtTFourObj": "Štyri objekty\n\n", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Médiá a text\n\n", + "PE.Controllers.Main.txtSldLtTFourObj": "Štyri objekty", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Médiá a text", "PE.Controllers.Main.txtSldLtTObj": "Názov a objekt", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt a dva objekty\n\n", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt a dva objekty", "PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt a text", "PE.Controllers.Main.txtSldLtTObjOnly": "Objekt", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad textom\n\n", - "PE.Controllers.Main.txtSldLtTObjTx": "Názov, objekt a titulok\n\n", - "PE.Controllers.Main.txtSldLtTPicTx": "Obraz a titulok\n\n", - "PE.Controllers.Main.txtSldLtTSecHead": "Záhlavie sekcie\n", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad textom", + "PE.Controllers.Main.txtSldLtTObjTx": "Názov, objekt a titulok", + "PE.Controllers.Main.txtSldLtTPicTx": "Obraz a titulok", + "PE.Controllers.Main.txtSldLtTSecHead": "Záhlavie sekcie", "PE.Controllers.Main.txtSldLtTTbl": "Tabuľka", "PE.Controllers.Main.txtSldLtTTitle": "Názov", "PE.Controllers.Main.txtSldLtTTitleOnly": "Iba názov", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Text dvojstĺpca\n\n", + "PE.Controllers.Main.txtSldLtTTwoColTx": "Text dvojstĺpca", "PE.Controllers.Main.txtSldLtTTwoObj": "Dva objekty", "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dva objekty a objekt", "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dva objekty a text", @@ -185,46 +185,46 @@ "PE.Controllers.Main.txtSldLtTTxAndObj": "Text a objekt", "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text a dva objekty", "PE.Controllers.Main.txtSldLtTTxOverObj": "Text nad objektom", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikálny názov a text\n\n", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikálny názov a text nad grafom\n\n", - "PE.Controllers.Main.txtSldLtTVertTx": "Vertikálny text\n\n", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikálny názov a text", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikálny názov a text nad grafom", + "PE.Controllers.Main.txtSldLtTVertTx": "Vertikálny text", "PE.Controllers.Main.txtSlideNumber": "Číslo snímku", "PE.Controllers.Main.txtSlideSubtitle": "Podtitul snímku", "PE.Controllers.Main.txtSlideText": "Text snímku", "PE.Controllers.Main.txtSlideTitle": "Názov snímku", - "PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n", - "PE.Controllers.Main.txtXAxis": "Os X\n\n", - "PE.Controllers.Main.txtYAxis": "Os Y\n\n", + "PE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", + "PE.Controllers.Main.txtXAxis": "Os X", + "PE.Controllers.Main.txtYAxis": "Os Y", "PE.Controllers.Main.unknownErrorText": "Neznáma chyba.", - "PE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.\n\n", - "PE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n", - "PE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n", + "PE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.", + "PE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", "PE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.", "PE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "PE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n", - "PE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n", + "PE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "PE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.", "PE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "PE.Controllers.Search.textNoTextFound": "Text nebol nájdený", "PE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie", "PE.Controllers.Settings.txtLoading": "Nahrávanie...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", "PE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu", "PE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku", - "PE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke\n\n", + "PE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke", "PE.Views.AddImage.textAddress": "Adresa", "PE.Views.AddImage.textBack": "Späť", "PE.Views.AddImage.textFromLibrary": "Obrázok z Knižnice", "PE.Views.AddImage.textFromURL": "Obrázok z URL adresy", "PE.Views.AddImage.textImageURL": "URL obrázka", "PE.Views.AddImage.textInsertImage": "Vložiť obrázok", - "PE.Views.AddImage.textLinkSettings": "Nastavenia odkazu\n\n", + "PE.Views.AddImage.textLinkSettings": "Nastavenia odkazu", "PE.Views.AddLink.textBack": "Späť", "PE.Views.AddLink.textDisplay": "Zobraziť", "PE.Views.AddLink.textExternalLink": "Externý odkaz", "PE.Views.AddLink.textFirst": "Prvá snímka", "PE.Views.AddLink.textInsert": "Vložiť", - "PE.Views.AddLink.textInternalLink": "Snímok v tejto prezentácii\n\n", + "PE.Views.AddLink.textInternalLink": "Snímok v tejto prezentácii", "PE.Views.AddLink.textLast": "Posledná snímka", "PE.Views.AddLink.textLink": "Odkaz", "PE.Views.AddLink.textLinkSlide": "Odkaz na", @@ -247,14 +247,14 @@ "PE.Views.EditChart.textFill": "Vyplniť", "PE.Views.EditChart.textForward": "Posunúť vpred", "PE.Views.EditChart.textRemoveChart": "Odstrániť graf", - "PE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "PE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia", "PE.Views.EditChart.textSize": "Veľkosť", "PE.Views.EditChart.textStyle": "Štýl", "PE.Views.EditChart.textToBackground": "Presunúť do pozadia", "PE.Views.EditChart.textToForeground": "Premiestniť do popredia", "PE.Views.EditChart.textType": "Typ", - "PE.Views.EditChart.txtDistribHor": "Rozložiť horizontálne\n\n", - "PE.Views.EditChart.txtDistribVert": "Rozložiť vertikálne\n", + "PE.Views.EditChart.txtDistribHor": "Rozložiť horizontálne", + "PE.Views.EditChart.txtDistribVert": "Rozložiť vertikálne", "PE.Views.EditImage.textAddress": "Adresa", "PE.Views.EditImage.textAlign": "Zarovnať", "PE.Views.EditImage.textAlignBottom": "Zarovnať dole", @@ -270,21 +270,21 @@ "PE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice", "PE.Views.EditImage.textFromURL": "Obrázok z URL adresy", "PE.Views.EditImage.textImageURL": "URL obrázka", - "PE.Views.EditImage.textLinkSettings": "Nastavenia odkazu\n\n", + "PE.Views.EditImage.textLinkSettings": "Nastavenia odkazu", "PE.Views.EditImage.textRemove": "Odstrániť obrázok", - "PE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "PE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia", "PE.Views.EditImage.textReplace": "Nahradiť", "PE.Views.EditImage.textReplaceImg": "Nahradiť obrázok", "PE.Views.EditImage.textToBackground": "Presunúť do pozadia", "PE.Views.EditImage.textToForeground": "Premiestniť do popredia", - "PE.Views.EditImage.txtDistribHor": "Rozložiť horizontálne\n\n", - "PE.Views.EditImage.txtDistribVert": "Rozložiť vertikálne\n", + "PE.Views.EditImage.txtDistribHor": "Rozložiť horizontálne", + "PE.Views.EditImage.txtDistribVert": "Rozložiť vertikálne", "PE.Views.EditLink.textBack": "Späť", "PE.Views.EditLink.textDisplay": "Zobraziť", "PE.Views.EditLink.textEdit": "Upraviť odkaz", "PE.Views.EditLink.textExternalLink": "Externý odkaz", "PE.Views.EditLink.textFirst": "Prvá snímka", - "PE.Views.EditLink.textInternalLink": "Snímok v tejto prezentácii\n\n", + "PE.Views.EditLink.textInternalLink": "Snímok v tejto prezentácii", "PE.Views.EditLink.textLast": "Posledná snímka", "PE.Views.EditLink.textLink": "Odkaz", "PE.Views.EditLink.textLinkSlide": "Odkaz na", @@ -310,14 +310,14 @@ "PE.Views.EditShape.textForward": "Posunúť vpred", "PE.Views.EditShape.textOpacity": "Priehľadnosť", "PE.Views.EditShape.textRemoveShape": "Odstrániť tvar", - "PE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "PE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia", "PE.Views.EditShape.textReplace": "Nahradiť", "PE.Views.EditShape.textSize": "Veľkosť", "PE.Views.EditShape.textStyle": "Štýl", "PE.Views.EditShape.textToBackground": "Presunúť do pozadia", "PE.Views.EditShape.textToForeground": "Premiestniť do popredia", - "PE.Views.EditShape.txtDistribHor": "Rozložiť horizontálne\n\n", - "PE.Views.EditShape.txtDistribVert": "Rozložiť vertikálne\n", + "PE.Views.EditShape.txtDistribHor": "Rozložiť horizontálne", + "PE.Views.EditShape.txtDistribVert": "Rozložiť vertikálne", "PE.Views.EditSlide.textApplyAll": "Použiť na všetky snímky", "PE.Views.EditSlide.textBack": "Späť", "PE.Views.EditSlide.textBlack": "Prostredníctvom čiernej", @@ -346,7 +346,7 @@ "PE.Views.EditSlide.textRight": "Vpravo", "PE.Views.EditSlide.textSmoothly": "Plynule", "PE.Views.EditSlide.textSplit": "Rozdeliť", - "PE.Views.EditSlide.textStartOnClick": "Začať kliknutím\n\n", + "PE.Views.EditSlide.textStartOnClick": "Začať kliknutím", "PE.Views.EditSlide.textStyle": "Štýl", "PE.Views.EditSlide.textTheme": "Téma", "PE.Views.EditSlide.textTop": "Hore", @@ -372,7 +372,7 @@ "PE.Views.EditTable.textAlignTop": "Zarovnať nahor", "PE.Views.EditTable.textBack": "Späť", "PE.Views.EditTable.textBackward": "Posunúť späť", - "PE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec\n\n", + "PE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec", "PE.Views.EditTable.textBandedRow": "Pruhovaný riadok", "PE.Views.EditTable.textBorder": "Orámovanie", "PE.Views.EditTable.textCellMargins": "Okraje bunky", @@ -381,28 +381,28 @@ "PE.Views.EditTable.textFirstColumn": "Prvý stĺpec", "PE.Views.EditTable.textForward": "Posunúť vpred", "PE.Views.EditTable.textHeaderRow": "Riadok hlavičky", - "PE.Views.EditTable.textLastColumn": "Posledný stĺpec\n\n", + "PE.Views.EditTable.textLastColumn": "Posledný stĺpec", "PE.Views.EditTable.textOptions": "Možnosti", "PE.Views.EditTable.textRemoveTable": "Odstrániť tabuľku", - "PE.Views.EditTable.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "PE.Views.EditTable.textReorder": "Znovu usporiadať/zmena poradia", "PE.Views.EditTable.textSize": "Veľkosť", "PE.Views.EditTable.textStyle": "Štýl", - "PE.Views.EditTable.textStyleOptions": "Možnosti štýlu\n\n", + "PE.Views.EditTable.textStyleOptions": "Možnosti štýlu", "PE.Views.EditTable.textTableOptions": "Možnosti tabuľky", "PE.Views.EditTable.textToBackground": "Presunúť do pozadia", "PE.Views.EditTable.textToForeground": "Premiestniť do popredia", - "PE.Views.EditTable.textTotalRow": "Celkový riadok\n\n", - "PE.Views.EditTable.txtDistribHor": "Rozložiť horizontálne\n\n", - "PE.Views.EditTable.txtDistribVert": "Rozložiť vertikálne\n", + "PE.Views.EditTable.textTotalRow": "Celkový riadok", + "PE.Views.EditTable.txtDistribHor": "Rozložiť horizontálne", + "PE.Views.EditTable.txtDistribVert": "Rozložiť vertikálne", "PE.Views.EditText.textAdditional": "Ďalšie", - "PE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie\n\n", + "PE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie", "PE.Views.EditText.textAfter": "Za", "PE.Views.EditText.textAllCaps": "Všetko veľkým", "PE.Views.EditText.textAutomatic": "Automaticky", "PE.Views.EditText.textBack": "Späť", "PE.Views.EditText.textBefore": "Pred", "PE.Views.EditText.textBullets": "Odrážky", - "PE.Views.EditText.textDblStrikethrough": "Dvojité prečiarknutie\n", + "PE.Views.EditText.textDblStrikethrough": "Dvojité prečiarknutie", "PE.Views.EditText.textDblSuperscript": "Horný index", "PE.Views.EditText.textFontColor": "Farba písma", "PE.Views.EditText.textFontColors": "Farby písma", @@ -417,7 +417,7 @@ "PE.Views.EditText.textStrikethrough": "Prečiarknutie", "PE.Views.EditText.textSubscript": "Dolný index", "PE.Views.Search.textSearch": "Hľadať", - "PE.Views.Settings.mniSlideStandard": "Štandard (4:3)\n", + "PE.Views.Settings.mniSlideStandard": "Štandard (4:3)", "PE.Views.Settings.mniSlideWide": "Širokouhlý (16:9)", "PE.Views.Settings.textAbout": "O aplikácii", "PE.Views.Settings.textAddress": "adresa", @@ -433,9 +433,9 @@ "PE.Views.Settings.textHelp": "Pomoc", "PE.Views.Settings.textLoading": "Nahrávanie...", "PE.Views.Settings.textPoweredBy": "Poháňaný ", - "PE.Views.Settings.textPresentInfo": "Informácie o prezentácii\n\n", - "PE.Views.Settings.textPresentSetup": "Nastavenie prezentácie\n\n", - "PE.Views.Settings.textPresentTitle": "Názov prezentácie\n\n", + "PE.Views.Settings.textPresentInfo": "Informácie o prezentácii", + "PE.Views.Settings.textPresentSetup": "Nastavenie prezentácie", + "PE.Views.Settings.textPresentTitle": "Názov prezentácie", "PE.Views.Settings.textSettings": "Nastavenia", "PE.Views.Settings.textSlideSize": "Veľkosť snímku", "PE.Views.Settings.textTel": "Tel", diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json new file mode 100644 index 000000000..4e50ce1ac --- /dev/null +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -0,0 +1,445 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", + "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "PE.Controllers.AddContainer.textImage": "Resim", + "PE.Controllers.AddContainer.textLink": "Link", + "PE.Controllers.AddContainer.textShape": "Şekil", + "PE.Controllers.AddContainer.textSlide": "Slayt", + "PE.Controllers.AddContainer.textTable": "Tablo", + "PE.Controllers.AddImage.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", + "PE.Controllers.AddImage.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", + "PE.Controllers.AddLink.textDefault": "Seçili metin", + "PE.Controllers.AddLink.textExternalLink": "Harici Bağlantı", + "PE.Controllers.AddLink.textFirst": "İlk Slayt", + "PE.Controllers.AddLink.textInternalLink": "Sunumdaki Slayt", + "PE.Controllers.AddLink.textLast": "Son Slayt", + "PE.Controllers.AddLink.textNext": "Sonraki Slayt", + "PE.Controllers.AddLink.textPrev": "Önceki slayt", + "PE.Controllers.AddLink.textSlide": "Slayt", + "PE.Controllers.AddLink.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", + "PE.Controllers.AddTable.textCancel": "İptal", + "PE.Controllers.AddTable.textColumns": "Sütunlar", + "PE.Controllers.AddTable.textRows": "Satırlar", + "PE.Controllers.AddTable.textTableSize": "Tablo Boyutu", + "PE.Controllers.DocumentHolder.menuAddLink": "Link Ekle", + "PE.Controllers.DocumentHolder.menuCopy": "Kopyala", + "PE.Controllers.DocumentHolder.menuCut": "Kes", + "PE.Controllers.DocumentHolder.menuDelete": "Sil", + "PE.Controllers.DocumentHolder.menuEdit": "Düzenle", + "PE.Controllers.DocumentHolder.menuMore": "Daha fazla", + "PE.Controllers.DocumentHolder.menuOpenLink": "Linki Aç", + "PE.Controllers.DocumentHolder.menuPaste": "Yapıştır", + "PE.Controllers.DocumentHolder.sheetCancel": "İptal", + "PE.Controllers.EditContainer.textChart": "Grafik", + "PE.Controllers.EditContainer.textHyperlink": "Hiper Link", + "PE.Controllers.EditContainer.textImage": "Resim", + "PE.Controllers.EditContainer.textSettings": "Ayarlar", + "PE.Controllers.EditContainer.textShape": "Şekil", + "PE.Controllers.EditContainer.textSlide": "Slayt", + "PE.Controllers.EditContainer.textTable": "Tablo", + "PE.Controllers.EditContainer.textText": "Metin", + "PE.Controllers.EditImage.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", + "PE.Controllers.EditImage.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", + "PE.Controllers.EditLink.textDefault": "Seçili metin", + "PE.Controllers.EditLink.textExternalLink": "Harici Bağlantı", + "PE.Controllers.EditLink.textFirst": "İlk Slayt", + "PE.Controllers.EditLink.textInternalLink": "Sunumdaki Slayt", + "PE.Controllers.EditLink.textLast": "Son Slayt", + "PE.Controllers.EditLink.textNext": "Sonraki Slayt", + "PE.Controllers.EditLink.textPrev": "Önceki slayt", + "PE.Controllers.EditLink.textSlide": "Slayt", + "PE.Controllers.EditLink.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", + "PE.Controllers.EditSlide.textSec": "s", + "PE.Controllers.EditText.textAuto": "Otomatik", + "PE.Controllers.EditText.textFonts": "Yazı Tipleri", + "PE.Controllers.EditText.textPt": "pt", + "PE.Controllers.Main.advDRMEnterPassword": "Şifrenizi girin:", + "PE.Controllers.Main.advDRMOptions": "Korumalı Dosya", + "PE.Controllers.Main.advDRMPassword": "Şifre", + "PE.Controllers.Main.applyChangesTextText": "Veri yükleniyor...", + "PE.Controllers.Main.applyChangesTitleText": "Veri yükleniyor", + "PE.Controllers.Main.convertationTimeoutText": "Değişim süresi geçti.", + "PE.Controllers.Main.criticalErrorExtText": "Belge listesine dönmek için 'TAMAM' tuşuna tıklayın.", + "PE.Controllers.Main.criticalErrorTitle": "Hata", + "PE.Controllers.Main.defaultTitleText": "ONLYOFFICE Sunum Editörü", + "PE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.", + "PE.Controllers.Main.downloadTextText": "Belge indiriliyor...", + "PE.Controllers.Main.downloadTitleText": "Belge indiriliyor", + "PE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", + "PE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kayboldu. Artık düzenleyemezsiniz.", + "PE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.

Belge Sunucusuna bağlanma konusunda daha fazla bilgi için buraya tıklayın", + "PE.Controllers.Main.errorDatabaseConnection": "Dışsal hata.
Veritabanı bağlantı hatası. Lütfen destek ile iletişime geçin.", + "PE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", + "PE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1", + "PE.Controllers.Main.errorFilePassProtect": "Belge şifre korumalı.", + "PE.Controllers.Main.errorKeyEncrypt": "Bilinmeyen anahtar tanımlayıcı", + "PE.Controllers.Main.errorKeyExpire": "Anahtar tanımlayıcının süresi doldu", + "PE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız.", + "PE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", + "PE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı.", + "PE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.", + "PE.Controllers.Main.errorUserDrop": "Belgeye şu an erişilemiyor.", + "PE.Controllers.Main.errorUsersExceed": "Kullanıcı sayısı aşıldı", + "PE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı geri yüklenene kadar indirme veya yazdırma yapamazsınız.", + "PE.Controllers.Main.leavePageText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", + "PE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", + "PE.Controllers.Main.loadFontsTitleText": "Veri yükleniyor", + "PE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", + "PE.Controllers.Main.loadFontTitleText": "Veri yükleniyor", + "PE.Controllers.Main.loadImagesTextText": "Resimler yükleniyor...", + "PE.Controllers.Main.loadImagesTitleText": "Resimler yükleniyor", + "PE.Controllers.Main.loadImageTextText": "Resim yükleniyor...", + "PE.Controllers.Main.loadImageTitleText": "Resim yükleniyor", + "PE.Controllers.Main.loadingDocumentTextText": "Sunum yükleniyor...", + "PE.Controllers.Main.loadingDocumentTitleText": "Sunum yükleniyor", + "PE.Controllers.Main.loadThemeTextText": "Tema yükleniyor...", + "PE.Controllers.Main.loadThemeTitleText": "Tema Yükleniyor", + "PE.Controllers.Main.notcriticalErrorTitle": "Uyarı", + "PE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", + "PE.Controllers.Main.openTextText": "Belge açılıyor...", + "PE.Controllers.Main.openTitleText": "Belge Açılıyor", + "PE.Controllers.Main.printTextText": "Belge yazdırılıyor...", + "PE.Controllers.Main.printTitleText": "Belge Yazdırılıyor", + "PE.Controllers.Main.reloadButtonText": "Sayfayı Yenile", + "PE.Controllers.Main.requestEditFailedMessageText": "Şu anda bu belge başka birisi tarafından düzenleniyor. Lütfen daha sonra tekrar deneyin.", + "PE.Controllers.Main.requestEditFailedTitleText": "Erişim reddedildi", + "PE.Controllers.Main.saveErrorText": "Dosya kaydedilirken bir hata oluştu", + "PE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor", + "PE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", + "PE.Controllers.Main.saveTextText": "Belge kaydediliyor...", + "PE.Controllers.Main.saveTitleText": "Belge Kaydediliyor", + "PE.Controllers.Main.splitDividerErrorText": "Satır sayısı %1 bölmelidir", + "PE.Controllers.Main.splitMaxColsErrorText": "Sütun sayısı %1 geçmemelidir", + "PE.Controllers.Main.splitMaxRowsErrorText": "Satır sayısı %1 geçmemelidir", + "PE.Controllers.Main.textAnonymous": "Anonim", + "PE.Controllers.Main.textBack": "Geri", + "PE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", + "PE.Controllers.Main.textCancel": "İptal", + "PE.Controllers.Main.textClose": "Kapat", + "PE.Controllers.Main.textCloseTip": "İpucunu kapatmak için dokunun.", + "PE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin", + "PE.Controllers.Main.textDone": "Bitti", + "PE.Controllers.Main.textLoadingDocument": "Sunum yükleniyor", + "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", + "PE.Controllers.Main.textOK": "TAMAM", + "PE.Controllers.Main.textPassword": "Şifre", + "PE.Controllers.Main.textPreloader": "Yükleniyor...", + "PE.Controllers.Main.textShape": "Şekil", + "PE.Controllers.Main.textTryUndoRedo": "Hızlı birlikte düzenleme modunda geri al/ileri al fonksiyonları devre dışıdır.", + "PE.Controllers.Main.textUsername": "Kullanıcı adı", + "PE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", + "PE.Controllers.Main.titleServerVersion": "Editör güncellendi", + "PE.Controllers.Main.txtArt": "Metni buraya giriniz", + "PE.Controllers.Main.txtBasicShapes": "Temel Şekiller", + "PE.Controllers.Main.txtButtons": "Maddeler", + "PE.Controllers.Main.txtCallouts": "Belirtme Çizgileri", + "PE.Controllers.Main.txtCharts": "Grafikler", + "PE.Controllers.Main.txtClipArt": "Clip Art", + "PE.Controllers.Main.txtDateTime": "Tarih ve saat", + "PE.Controllers.Main.txtDiagram": "SmartArt", + "PE.Controllers.Main.txtDiagramTitle": "Grafik Başlığı", + "PE.Controllers.Main.txtEditingMode": "Düzenleme modunu belirle...", + "PE.Controllers.Main.txtFiguredArrows": "Şekilli Oklar", + "PE.Controllers.Main.txtFooter": "Altbilgi", + "PE.Controllers.Main.txtHeader": "Başlık", + "PE.Controllers.Main.txtImage": "Resim", + "PE.Controllers.Main.txtLines": "Satırlar", + "PE.Controllers.Main.txtMath": "Matematik", + "PE.Controllers.Main.txtMedia": "Medya", + "PE.Controllers.Main.txtNeedSynchronize": "Güncellemeleriniz var", + "PE.Controllers.Main.txtPicture": "Resim", + "PE.Controllers.Main.txtRectangles": "Dikdörtgenler", + "PE.Controllers.Main.txtSeries": "Seriler", + "PE.Controllers.Main.txtSldLtTBlank": "Boş", + "PE.Controllers.Main.txtSldLtTChart": "Grafik", + "PE.Controllers.Main.txtSldLtTChartAndTx": "Grafik ve Metin", + "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Clip Art ve Metin", + "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Clip Art ve Dikey Metin", + "PE.Controllers.Main.txtSldLtTCust": "Özel", + "PE.Controllers.Main.txtSldLtTDgm": "Diyagram", + "PE.Controllers.Main.txtSldLtTFourObj": "Dört Obje", + "PE.Controllers.Main.txtSldLtTMediaAndTx": "Medya ve Metin", + "PE.Controllers.Main.txtSldLtTObj": "Başlık ve Obje", + "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Obje ve İki Obje", + "PE.Controllers.Main.txtSldLtTObjAndTx": "Obje ve Metin", + "PE.Controllers.Main.txtSldLtTObjOnly": "Obje", + "PE.Controllers.Main.txtSldLtTObjOverTx": "Metin Üstünde Obje", + "PE.Controllers.Main.txtSldLtTObjTx": "Başlık, Obje ve Altyazı", + "PE.Controllers.Main.txtSldLtTPicTx": "Resim ve Başlık", + "PE.Controllers.Main.txtSldLtTSecHead": "Bölüm Üst Başlığı", + "PE.Controllers.Main.txtSldLtTTbl": "Tablo", + "PE.Controllers.Main.txtSldLtTTitle": "Başlık", + "PE.Controllers.Main.txtSldLtTTitleOnly": "Sadece Başlık", + "PE.Controllers.Main.txtSldLtTTwoColTx": "İki Sütunlu Metin", + "PE.Controllers.Main.txtSldLtTTwoObj": "İki Obje", + "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "İki Obje ve Obje", + "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "İki Obje ve Metin", + "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Metin Üstünde İki Obje", + "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "İki Metin ve İki Obje", + "PE.Controllers.Main.txtSldLtTTx": "Metin", + "PE.Controllers.Main.txtSldLtTTxAndChart": "Metin ve Grafik", + "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Metin ve Clip Art", + "PE.Controllers.Main.txtSldLtTTxAndMedia": "Metin ve Medya", + "PE.Controllers.Main.txtSldLtTTxAndObj": "Metin ve Obje", + "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Metin ve İki Obje", + "PE.Controllers.Main.txtSldLtTTxOverObj": "Obje üstünde Metin", + "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Dikey Başlık ve Metin", + "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Dikey Başlık ve Grafik Üstünde Metin", + "PE.Controllers.Main.txtSldLtTVertTx": "Dikey Metin", + "PE.Controllers.Main.txtSlideNumber": "Slayt numarası", + "PE.Controllers.Main.txtSlideSubtitle": "Slayt altyazısı", + "PE.Controllers.Main.txtSlideText": "Slayt metni", + "PE.Controllers.Main.txtSlideTitle": "Slayt başlığı", + "PE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", + "PE.Controllers.Main.txtXAxis": "X Ekseni", + "PE.Controllers.Main.txtYAxis": "Y Ekseni", + "PE.Controllers.Main.unknownErrorText": "Bilinmeyen hata.", + "PE.Controllers.Main.unsupportedBrowserErrorText ": "Tarayıcınız desteklenmiyor.", + "PE.Controllers.Main.uploadImageExtMessage": "Bilinmeyen resim formatı.", + "PE.Controllers.Main.uploadImageFileCountMessage": "Resim yüklenmedi.", + "PE.Controllers.Main.uploadImageSizeMessage": "Maksimum resim boyutu aşıldı.", + "PE.Controllers.Main.uploadImageTextText": "Resim yükleniyor...", + "PE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", + "PE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", + "PE.Controllers.Main.warnNoLicense": "ONLYOFFICE'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, belge sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı).
Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.", + "PE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi.", + "PE.Controllers.Search.textNoTextFound": "Metin Bulunamadı", + "PE.Controllers.Settings.notcriticalErrorTitle": "Uyarı", + "PE.Controllers.Settings.txtLoading": "Yükleniyor...", + "PE.Controllers.Toolbar.dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", + "PE.Controllers.Toolbar.dlgLeaveTitleText": "Uygulamadan çıktınız", + "PE.Controllers.Toolbar.leaveButtonText": "Bu Sayfadan Ayrıl", + "PE.Controllers.Toolbar.stayButtonText": "Bu Sayfada Kal", + "PE.Views.AddImage.textAddress": "Adres", + "PE.Views.AddImage.textBack": "Geri", + "PE.Views.AddImage.textFromLibrary": "Kütüphane'den Resim", + "PE.Views.AddImage.textFromURL": "URL'den resim", + "PE.Views.AddImage.textImageURL": "Resim URL'si", + "PE.Views.AddImage.textInsertImage": "Resim Ekle", + "PE.Views.AddImage.textLinkSettings": "Link Ayarları", + "PE.Views.AddLink.textBack": "Geri", + "PE.Views.AddLink.textDisplay": "Görünüm", + "PE.Views.AddLink.textExternalLink": "Harici Bağlantı", + "PE.Views.AddLink.textFirst": "İlk Slayt", + "PE.Views.AddLink.textInsert": "Ekle", + "PE.Views.AddLink.textInternalLink": "Sunumdaki Slayt", + "PE.Views.AddLink.textLast": "Son Slayt", + "PE.Views.AddLink.textLink": "Link", + "PE.Views.AddLink.textLinkSlide": "Şuna bağlantıla:", + "PE.Views.AddLink.textLinkType": "Link Tipi", + "PE.Views.AddLink.textNext": "Sonraki Slayt", + "PE.Views.AddLink.textNumber": "Slayt Numarası", + "PE.Views.AddLink.textPrev": "Önceki slayt", + "PE.Views.AddLink.textTip": "Ekran İpucu", + "PE.Views.EditChart.textAlign": "Hizala", + "PE.Views.EditChart.textAlignBottom": "Alta Hizala", + "PE.Views.EditChart.textAlignCenter": "Ortaya Hizala", + "PE.Views.EditChart.textAlignLeft": "Sola Hizala", + "PE.Views.EditChart.textAlignMiddle": "Ortaya Hizala", + "PE.Views.EditChart.textAlignRight": "Sağa Hizala", + "PE.Views.EditChart.textAlignTop": "Üste Hizala", + "PE.Views.EditChart.textBack": "Geri", + "PE.Views.EditChart.textBackward": "Geri Taşı", + "PE.Views.EditChart.textBorder": "Sınır", + "PE.Views.EditChart.textColor": "Renk", + "PE.Views.EditChart.textFill": "Doldur", + "PE.Views.EditChart.textForward": "İleri Taşı", + "PE.Views.EditChart.textRemoveChart": "Grafiği Kaldır", + "PE.Views.EditChart.textReorder": "Yeniden Sırala", + "PE.Views.EditChart.textSize": "Boyut", + "PE.Views.EditChart.textStyle": "Stil", + "PE.Views.EditChart.textToBackground": "Arka Plana gönder", + "PE.Views.EditChart.textToForeground": "Ön Plana Getir", + "PE.Views.EditChart.textType": "Tip", + "PE.Views.EditChart.txtDistribHor": "Yatay olarak dağıt", + "PE.Views.EditChart.txtDistribVert": "Dikey olarak dağıt", + "PE.Views.EditImage.textAddress": "Adres", + "PE.Views.EditImage.textAlign": "Hizala", + "PE.Views.EditImage.textAlignBottom": "Alta Hizala", + "PE.Views.EditImage.textAlignCenter": "Ortaya Hizala", + "PE.Views.EditImage.textAlignLeft": "Sola Hizala", + "PE.Views.EditImage.textAlignMiddle": "Ortaya Hizala", + "PE.Views.EditImage.textAlignRight": "Sağa Hizala", + "PE.Views.EditImage.textAlignTop": "Üste Hizala", + "PE.Views.EditImage.textBack": "Geri", + "PE.Views.EditImage.textBackward": "Geri Taşı", + "PE.Views.EditImage.textDefault": "Varsayılan Boyut", + "PE.Views.EditImage.textForward": "İleri Taşı", + "PE.Views.EditImage.textFromLibrary": "Kütüphane'den Resim", + "PE.Views.EditImage.textFromURL": "URL'den resim", + "PE.Views.EditImage.textImageURL": "Resim URL'si", + "PE.Views.EditImage.textLinkSettings": "Link Ayarları", + "PE.Views.EditImage.textRemove": "Resmi Kaldır", + "PE.Views.EditImage.textReorder": "Yeniden Sırala", + "PE.Views.EditImage.textReplace": "Değiştir", + "PE.Views.EditImage.textReplaceImg": "Resmi Değiştir", + "PE.Views.EditImage.textToBackground": "Arka Plana gönder", + "PE.Views.EditImage.textToForeground": "Ön Plana Getir", + "PE.Views.EditImage.txtDistribHor": "Yatay olarak dağıt", + "PE.Views.EditImage.txtDistribVert": "Dikey olarak dağıt", + "PE.Views.EditLink.textBack": "Geri", + "PE.Views.EditLink.textDisplay": "Görünüm", + "PE.Views.EditLink.textEdit": "Link Düzenle", + "PE.Views.EditLink.textExternalLink": "Harici Bağlantı", + "PE.Views.EditLink.textFirst": "İlk Slayt", + "PE.Views.EditLink.textInternalLink": "Sunumdaki Slayt", + "PE.Views.EditLink.textLast": "Son Slayt", + "PE.Views.EditLink.textLink": "Link", + "PE.Views.EditLink.textLinkSlide": "Şuna bağlantıla:", + "PE.Views.EditLink.textLinkType": "Link Tipi", + "PE.Views.EditLink.textNext": "Sonraki Slayt", + "PE.Views.EditLink.textNumber": "Slayt Numarası", + "PE.Views.EditLink.textPrev": "Önceki slayt", + "PE.Views.EditLink.textRemove": "Linki Kaldır", + "PE.Views.EditLink.textTip": "Ekran İpucu", + "PE.Views.EditShape.textAlign": "Hizala", + "PE.Views.EditShape.textAlignBottom": "Alta Hizala", + "PE.Views.EditShape.textAlignCenter": "Ortaya Hizala", + "PE.Views.EditShape.textAlignLeft": "Sola Hizala", + "PE.Views.EditShape.textAlignMiddle": "Ortaya Hizala", + "PE.Views.EditShape.textAlignRight": "Sağa Hizala", + "PE.Views.EditShape.textAlignTop": "Üste Hizala", + "PE.Views.EditShape.textBack": "Geri", + "PE.Views.EditShape.textBackward": "Geri Taşı", + "PE.Views.EditShape.textBorder": "Sınır", + "PE.Views.EditShape.textColor": "Renk", + "PE.Views.EditShape.textEffects": "Efektler", + "PE.Views.EditShape.textFill": "Doldur", + "PE.Views.EditShape.textForward": "İleri Taşı", + "PE.Views.EditShape.textOpacity": "Opasite", + "PE.Views.EditShape.textRemoveShape": "Şekli Kaldır", + "PE.Views.EditShape.textReorder": "Yeniden Sırala", + "PE.Views.EditShape.textReplace": "Değiştir", + "PE.Views.EditShape.textSize": "Boyut", + "PE.Views.EditShape.textStyle": "Stil", + "PE.Views.EditShape.textToBackground": "Arka Plana gönder", + "PE.Views.EditShape.textToForeground": "Ön Plana Getir", + "PE.Views.EditShape.txtDistribHor": "Yatay olarak dağıt", + "PE.Views.EditShape.txtDistribVert": "Dikey olarak dağıt", + "PE.Views.EditSlide.textApplyAll": "Tüm Slaytlara Uygula", + "PE.Views.EditSlide.textBack": "Geri", + "PE.Views.EditSlide.textBlack": "Siyah Üzerinden", + "PE.Views.EditSlide.textBottom": "Alt", + "PE.Views.EditSlide.textBottomLeft": "Alt-Sol", + "PE.Views.EditSlide.textBottomRight": "Alt-Sağ", + "PE.Views.EditSlide.textClock": "Saat", + "PE.Views.EditSlide.textClockwise": "Saat Yönünde", + "PE.Views.EditSlide.textColor": "Renk", + "PE.Views.EditSlide.textCounterclockwise": "Saat Yönünün Tersine", + "PE.Views.EditSlide.textCover": "Kapak", + "PE.Views.EditSlide.textDelay": "Geciktir", + "PE.Views.EditSlide.textDuplicateSlide": "Kopya Slayt", + "PE.Views.EditSlide.textDuration": "Süre", + "PE.Views.EditSlide.textEffect": "Efekt", + "PE.Views.EditSlide.textFade": "Gölge", + "PE.Views.EditSlide.textFill": "Doldur", + "PE.Views.EditSlide.textHorizontalIn": "Yatay İçeri", + "PE.Views.EditSlide.textHorizontalOut": "Yatay Dışarı", + "PE.Views.EditSlide.textLayout": "Tasarım", + "PE.Views.EditSlide.textLeft": "Sol", + "PE.Views.EditSlide.textNone": "Hiçbiri", + "PE.Views.EditSlide.textOpacity": "Opasite", + "PE.Views.EditSlide.textPush": "Sıkıştır", + "PE.Views.EditSlide.textRemoveSlide": "Slaytı Sil", + "PE.Views.EditSlide.textRight": "Sağ", + "PE.Views.EditSlide.textSmoothly": "Kolayca", + "PE.Views.EditSlide.textSplit": "Ayır", + "PE.Views.EditSlide.textStartOnClick": "Tıkla Başla", + "PE.Views.EditSlide.textStyle": "Stil", + "PE.Views.EditSlide.textTheme": "Tema", + "PE.Views.EditSlide.textTop": "Üst", + "PE.Views.EditSlide.textTopLeft": "Üst-Sol", + "PE.Views.EditSlide.textTopRight": "Üst-Sağ", + "PE.Views.EditSlide.textTransition": "Geçiş", + "PE.Views.EditSlide.textType": "Tip", + "PE.Views.EditSlide.textUnCover": "Meydana Çıkar", + "PE.Views.EditSlide.textVerticalIn": "Dikey İçeri", + "PE.Views.EditSlide.textVerticalOut": "Dikey Dışarı", + "PE.Views.EditSlide.textWedge": "Wedge", + "PE.Views.EditSlide.textWipe": "Temizle", + "PE.Views.EditSlide.textZoom": "Büyütme", + "PE.Views.EditSlide.textZoomIn": "Yakınlaştır", + "PE.Views.EditSlide.textZoomOut": "Uzaklaştır", + "PE.Views.EditSlide.textZoomRotate": "Büyüt ve Döndür", + "PE.Views.EditTable.textAlign": "Hizala", + "PE.Views.EditTable.textAlignBottom": "Alta Hizala", + "PE.Views.EditTable.textAlignCenter": "Ortaya Hizala", + "PE.Views.EditTable.textAlignLeft": "Sola Hizala", + "PE.Views.EditTable.textAlignMiddle": "Ortaya Hizala", + "PE.Views.EditTable.textAlignRight": "Sağa Hizala", + "PE.Views.EditTable.textAlignTop": "Üste Hizala", + "PE.Views.EditTable.textBack": "Geri", + "PE.Views.EditTable.textBackward": "Geri Taşı", + "PE.Views.EditTable.textBandedColumn": "Çizgili Sütun", + "PE.Views.EditTable.textBandedRow": "Çizgili Satır", + "PE.Views.EditTable.textBorder": "Sınır", + "PE.Views.EditTable.textCellMargins": "Hücre Kenar Boşluğu", + "PE.Views.EditTable.textColor": "Renk", + "PE.Views.EditTable.textFill": "Doldur", + "PE.Views.EditTable.textFirstColumn": "İlk Sütun", + "PE.Views.EditTable.textForward": "İleri Taşı", + "PE.Views.EditTable.textHeaderRow": "Başlık Satır", + "PE.Views.EditTable.textLastColumn": "Son Sütun", + "PE.Views.EditTable.textOptions": "Seçenekler", + "PE.Views.EditTable.textRemoveTable": "Tabloyu Kaldır", + "PE.Views.EditTable.textReorder": "Yeniden Sırala", + "PE.Views.EditTable.textSize": "Boyut", + "PE.Views.EditTable.textStyle": "Stil", + "PE.Views.EditTable.textStyleOptions": "Stil Seçenekleri", + "PE.Views.EditTable.textTableOptions": "Tablo Seçenekleri", + "PE.Views.EditTable.textToBackground": "Arka Plana gönder", + "PE.Views.EditTable.textToForeground": "Ön Plana Getir", + "PE.Views.EditTable.textTotalRow": "Toplam Satır", + "PE.Views.EditTable.txtDistribHor": "Yatay olarak dağıt", + "PE.Views.EditTable.txtDistribVert": "Dikey olarak dağıt", + "PE.Views.EditText.textAdditional": "Ek", + "PE.Views.EditText.textAdditionalFormat": "Ek Format", + "PE.Views.EditText.textAfter": "Sonra", + "PE.Views.EditText.textAllCaps": "Tüm Başlıklar", + "PE.Views.EditText.textAutomatic": "Otomatik", + "PE.Views.EditText.textBack": "Geri", + "PE.Views.EditText.textBefore": "Önce", + "PE.Views.EditText.textBullets": "İmler", + "PE.Views.EditText.textDblStrikethrough": "Üstü çift çizili", + "PE.Views.EditText.textDblSuperscript": "Üstsimge", + "PE.Views.EditText.textFontColor": "Yazı Tipi Rengi", + "PE.Views.EditText.textFontColors": "Yazı Tipi Rengi", + "PE.Views.EditText.textFonts": "Yazı Tipleri", + "PE.Views.EditText.textFromText": "Metinden mesafe", + "PE.Views.EditText.textLetterSpacing": "Harf Boşlukları", + "PE.Views.EditText.textLineSpacing": "Satır Aralığı", + "PE.Views.EditText.textNone": "Hiçbiri", + "PE.Views.EditText.textNumbers": "Sayılar", + "PE.Views.EditText.textSize": "Boyut", + "PE.Views.EditText.textSmallCaps": "Küçük büyük harfler", + "PE.Views.EditText.textStrikethrough": "Üstü çizili", + "PE.Views.EditText.textSubscript": "Altsimge", + "PE.Views.Search.textSearch": "Ara", + "PE.Views.Settings.mniSlideStandard": "Standart (4:3)", + "PE.Views.Settings.mniSlideWide": "Geniş Ekran (16:9)", + "PE.Views.Settings.textAbout": "Hakkında", + "PE.Views.Settings.textAddress": "adres", + "PE.Views.Settings.textAuthor": "Yazar", + "PE.Views.Settings.textBack": "Geri", + "PE.Views.Settings.textCreateDate": "Oluşturulma tarihi", + "PE.Views.Settings.textDone": "Bitti", + "PE.Views.Settings.textDownload": "İndir", + "PE.Views.Settings.textDownloadAs": "Farklı Kaydet...", + "PE.Views.Settings.textEditPresent": "Sunumu Düzenle", + "PE.Views.Settings.textEmail": "e-posta", + "PE.Views.Settings.textFind": "Bul", + "PE.Views.Settings.textHelp": "Yardım", + "PE.Views.Settings.textLoading": "Yükleniyor...", + "PE.Views.Settings.textPoweredBy": "Sunucu", + "PE.Views.Settings.textPresentInfo": "Sunum Bilgisi", + "PE.Views.Settings.textPresentSetup": "Sunum Kurulumu", + "PE.Views.Settings.textPresentTitle": "Sunum Başlığı", + "PE.Views.Settings.textSettings": "Ayarlar", + "PE.Views.Settings.textSlideSize": "Slayt Boyutu", + "PE.Views.Settings.textTel": "tel", + "PE.Views.Settings.textVersion": "Sürüm", + "PE.Views.Settings.unknownText": "Bilinmeyen", + "PE.Views.Toolbar.textBack": "Geri" +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index d830ec908..de96b70d6 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -1,7 +1,7 @@ { "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми", - "Common.Utils.Metric.txtCm": "см\n", + "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", "PE.Controllers.AddContainer.textImage": "Зображення", "PE.Controllers.AddContainer.textLink": "Посилання", @@ -62,7 +62,7 @@ "PE.Controllers.Main.applyChangesTitleText": "Дата завантаження", "PE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.", "PE.Controllers.Main.criticalErrorExtText": "Натисніть \"ОК\", щоб повернутися до списку документів.", - "PE.Controllers.Main.criticalErrorTitle": "Помилка\n", + "PE.Controllers.Main.criticalErrorTitle": "Помилка", "PE.Controllers.Main.defaultTitleText": "Редактор презентацій ONLYOFFICE", "PE.Controllers.Main.downloadErrorText": "Завантаження не вдалося", "PE.Controllers.Main.downloadTextText": "Завантаження документу...", @@ -120,7 +120,7 @@ "PE.Controllers.Main.textClose": "Закрити", "PE.Controllers.Main.textCloseTip": "Натисніть, щоб закрити підказку", "PE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", - "PE.Controllers.Main.textDone": "Готово\n", + "PE.Controllers.Main.textDone": "Готово", "PE.Controllers.Main.textLoadingDocument": "Завантаження презентації", "PE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", "PE.Controllers.Main.textOK": "OК", @@ -424,15 +424,15 @@ "PE.Views.Settings.textAuthor": "Автор", "PE.Views.Settings.textBack": "Назад", "PE.Views.Settings.textCreateDate": "Дата створення", - "PE.Views.Settings.textDone": "Готово\n", + "PE.Views.Settings.textDone": "Готово", "PE.Views.Settings.textDownload": "Завантажити", "PE.Views.Settings.textDownloadAs": "Завантажити як...", "PE.Views.Settings.textEditPresent": "Редагувати презентацію", - "PE.Views.Settings.textEmail": "Електронна пошта\n", + "PE.Views.Settings.textEmail": "Електронна пошта", "PE.Views.Settings.textFind": "Знайти", "PE.Views.Settings.textHelp": "Допомога", "PE.Views.Settings.textLoading": "Завантаження...", - "PE.Views.Settings.textPoweredBy": "Під керуванням\n", + "PE.Views.Settings.textPoweredBy": "Під керуванням", "PE.Views.Settings.textPresentInfo": "Інфомація про презентацію", "PE.Views.Settings.textPresentSetup": "Налаштування презентації", "PE.Views.Settings.textPresentTitle": "Назва презентації", diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 2d8b1022a..02ebf2b33 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -136,6 +136,7 @@ "PE.Controllers.Main.txtButtons": "按钮", "PE.Controllers.Main.txtCallouts": "标注", "PE.Controllers.Main.txtCharts": "图表", + "PE.Controllers.Main.txtClipArt": "剪贴画", "PE.Controllers.Main.txtDateTime": "日期与时间", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "图表标题", @@ -164,7 +165,7 @@ "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "对象和两个对象", "PE.Controllers.Main.txtSldLtTObjAndTx": "对象和文本", "PE.Controllers.Main.txtSldLtTObjOnly": "目的", - "PE.Controllers.Main.txtSldLtTObjOverTx": "对象在文本之上\n", + "PE.Controllers.Main.txtSldLtTObjOverTx": "对象在文本之上", "PE.Controllers.Main.txtSldLtTObjTx": "标题,对象和标题", "PE.Controllers.Main.txtSldLtTPicTx": "图片和标题", "PE.Controllers.Main.txtSldLtTSecHead": "段首", @@ -211,7 +212,7 @@ "PE.Controllers.Toolbar.dlgLeaveTitleText": "你退出应用程序", "PE.Controllers.Toolbar.leaveButtonText": "离开这个页面", "PE.Controllers.Toolbar.stayButtonText": "保持此页上", - "PE.Views.AddImage.textAddress": "地址\n", + "PE.Views.AddImage.textAddress": "地址", "PE.Views.AddImage.textBack": "返回", "PE.Views.AddImage.textFromLibrary": "图库", "PE.Views.AddImage.textFromURL": "图片来自网络", @@ -254,7 +255,7 @@ "PE.Views.EditChart.textType": "类型", "PE.Views.EditChart.txtDistribHor": "水平分布", "PE.Views.EditChart.txtDistribVert": "垂直分布", - "PE.Views.EditImage.textAddress": "地址\n", + "PE.Views.EditImage.textAddress": "地址", "PE.Views.EditImage.textAlign": "排列", "PE.Views.EditImage.textAlignBottom": "底部对齐", "PE.Views.EditImage.textAlignCenter": "居中对齐", @@ -419,7 +420,7 @@ "PE.Views.Settings.mniSlideStandard": "标准(4:3)", "PE.Views.Settings.mniSlideWide": "宽屏(16:9)", "PE.Views.Settings.textAbout": "关于", - "PE.Views.Settings.textAddress": "地址\n", + "PE.Views.Settings.textAddress": "地址", "PE.Views.Settings.textAuthor": "作者", "PE.Views.Settings.textBack": "返回", "PE.Views.Settings.textCreateDate": "创建日期", diff --git a/apps/spreadsheeteditor/main/locale/cs.json b/apps/spreadsheeteditor/main/locale/cs.json index d8cc53191..3e64a7695 100644 --- a/apps/spreadsheeteditor/main/locale/cs.json +++ b/apps/spreadsheeteditor/main/locale/cs.json @@ -202,7 +202,7 @@ "SSE.Controllers.DocumentHolder.txtPastePicture": "Obrázek", "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formátování zdroje", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Přemístit", - "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Hodnota + všechna formátování\n", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Hodnota + všechna formátování", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Hodnota + formátování čísel", "SSE.Controllers.DocumentHolder.txtPasteValues": "Vložit pouze hodnotu", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Odstranit zlomkovou čáru", @@ -1117,7 +1117,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimetr", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Němčina", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Angličtina", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec (míra 2,54 cm)\n", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec (míra 2,54 cm)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Zobrazení komentářů", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "jako OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Nativní", @@ -1487,7 +1487,7 @@ "SSE.Views.Statusbar.tipZoomOut": "Oddálit", "SSE.Views.Statusbar.zoomText": "Přiblížení {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operaci nelze provést pro zvolený rozsah buněk.
Vyberte jednotnou oblast dat odlišnou od již existující a zkuste to znovu.", - "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operace nemohla být dokončena pro vybraný rozsah buněk.
Vyberte rozsah tak, aby první řádek tabulky byl na stejném řádku
a výsledná tabulka překrývala aktuální.\n", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operace nemohla být dokončena pro vybraný rozsah buněk.
Vyberte rozsah tak, aby první řádek tabulky byl na stejném řádku
a výsledná tabulka překrývala aktuální.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operace nemohla být dokončena pro vybraný rozsah buněk.
Vyberte rozsah, který neobsahuje jiné tabulky.", "SSE.Views.TableOptionsDialog.textCancel": "Zrušit", "SSE.Views.TableOptionsDialog.txtEmpty": "Toto pole je povinné", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 1e3050198..16f13c7d5 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -143,7 +143,7 @@ "SSE.Controllers.DocumentHolder.txtAddTop": "Oberer Rand hinzufügen", "SSE.Controllers.DocumentHolder.txtAddVer": "Vertikale Linie hinzufügen", "SSE.Controllers.DocumentHolder.txtAlignToChar": "An einem Zeichen ausrichten", - "SSE.Controllers.DocumentHolder.txtBorderProps": "Rahmeneigenschaften\n", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Rahmeneigenschaften", "SSE.Controllers.DocumentHolder.txtBottom": "Unten", "SSE.Controllers.DocumentHolder.txtColumnAlign": "Spaltenausrichtung", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Argumentgröße reduzieren", @@ -156,7 +156,7 @@ "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Wurzel löschen", "SSE.Controllers.DocumentHolder.txtExpand": "Erweitern und sortieren", "SSE.Controllers.DocumentHolder.txtExpandSort": "Die Daten neben der Auswahlliste werden nicht sortiert. Möchten Sie die Auswahlliste erweitern, um nebenstehende Angaben einzuschließen oder nur mit Sortieren derzeit ausgewählten Zellen fortzusetzen.", - "SSE.Controllers.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern\n", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Zu linearer Bruchrechnung ändern", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Zu verzerrter Bruchrechnung ändern", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Zu verzerrter Bruchrechnung ändern", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Zeichen über dem Text ", @@ -401,7 +401,7 @@ "SSE.Controllers.Statusbar.strSheet": "Sheet", "SSE.Controllers.Statusbar.warnDeleteSheet": "Das Arbeitsblatt könnte Daten enthalten. Möchten Sie wirklich fortsetzen?", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "SSE.Controllers.Toolbar.confirmAddFontName": "Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.
Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Wollen Sie fortsetzen?\n", + "SSE.Controllers.Toolbar.confirmAddFontName": "Die Schriftart, die Sie verwenden wollen, ist auf diesem Gerät nicht verfügbar.
Der Textstil wird mit einer der Systemschriften angezeigt, die gespeicherte Schriftart wird verwendet, wenn sie verfügbar ist.
Wollen Sie fortsetzen?", "SSE.Controllers.Toolbar.errorMaxRows": "FEHLER! Die maximale Anzahl der Datenreihen per Diagramm ist 255", "SSE.Controllers.Toolbar.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:
Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.", "SSE.Controllers.Toolbar.textAccent": "Akzente", @@ -769,7 +769,7 @@ "SSE.Views.AutoFilterDialog.txtNotBegins": "Beginnt nicht mit...", "SSE.Views.AutoFilterDialog.txtNotContains": "Enthält kein/keine...", "SSE.Views.AutoFilterDialog.txtNotEnds": "Endet nicht mit...", - "SSE.Views.AutoFilterDialog.txtNotEquals": "Ist nicht gleich...\n", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Ist nicht gleich...", "SSE.Views.AutoFilterDialog.txtNumFilter": "Nummernfilter", "SSE.Views.AutoFilterDialog.txtReapply": "Erneut übernehmen", "SSE.Views.AutoFilterDialog.txtSortCellColor": "Nach Zellenfarbe sortieren", @@ -1004,7 +1004,7 @@ "SSE.Views.DocumentHolder.textArrangeBackward": "Eine Ebene nach hinten", "SSE.Views.DocumentHolder.textArrangeForward": "Eine Ebene nach vorne", "SSE.Views.DocumentHolder.textArrangeFront": "In den Vordergrund bringen", - "SSE.Views.DocumentHolder.textEntriesList": "Aus der Dropdown-Liste wählen\n", + "SSE.Views.DocumentHolder.textEntriesList": "Aus der Dropdown-Liste wählen", "SSE.Views.DocumentHolder.textFreezePanes": "Fensterausschnitten fixieren", "SSE.Views.DocumentHolder.textNone": "Kein", "SSE.Views.DocumentHolder.textUndo": "Rückgängig machen", @@ -1289,7 +1289,7 @@ "SSE.Views.NameManagerDlg.textDataRange": "Datenbereich", "SSE.Views.NameManagerDlg.textDelete": "Löschen", "SSE.Views.NameManagerDlg.textEdit": "Bearbeiten", - "SSE.Views.NameManagerDlg.textEmpty": "Keine benannte Bereiche wurden noch erstellt.
Erstellen Sie mindestens einen benannten Bereich und es wird in diesem Feld angezeigt.\n", + "SSE.Views.NameManagerDlg.textEmpty": "Keine benannte Bereiche wurden noch erstellt.
Erstellen Sie mindestens einen benannten Bereich und es wird in diesem Feld angezeigt.", "SSE.Views.NameManagerDlg.textFilter": "Filter", "SSE.Views.NameManagerDlg.textFilterAll": "Alle", "SSE.Views.NameManagerDlg.textFilterDefNames": "Definierte Namen", @@ -1514,7 +1514,7 @@ "SSE.Views.TableSettings.textConvertRange": "In Zellenbereich konvertieren", "SSE.Views.TableSettings.textEdit": "Zeilen & Spalten", "SSE.Views.TableSettings.textEmptyTemplate": "Keine Vorlagen", - "SSE.Views.TableSettings.textExistName": "FEHLER! Der Bereich mit demselben Namen existiert bereits\n", + "SSE.Views.TableSettings.textExistName": "FEHLER! Der Bereich mit demselben Namen existiert bereits", "SSE.Views.TableSettings.textFilter": "Der Filter Button", "SSE.Views.TableSettings.textFirst": "Erste", "SSE.Views.TableSettings.textHeader": "Kopfzeile", @@ -1663,7 +1663,7 @@ "SSE.Views.Toolbar.tipAutofilter": "Sortieren und Filtern", "SSE.Views.Toolbar.tipBack": "Zurück", "SSE.Views.Toolbar.tipBorders": "Rahmen", - "SSE.Views.Toolbar.tipCellStyle": "Zellenformatvorlage\n", + "SSE.Views.Toolbar.tipCellStyle": "Zellenformatvorlage", "SSE.Views.Toolbar.tipClearStyle": "Leeren", "SSE.Views.Toolbar.tipColorSchemas": "Farbschema ändern", "SSE.Views.Toolbar.tipCopy": "Kopieren", @@ -1742,7 +1742,7 @@ "SSE.Views.Toolbar.txtRouble": "₽ Rubel", "SSE.Views.Toolbar.txtScheme1": "Larissa", "SSE.Views.Toolbar.txtScheme10": "Median\t", - "SSE.Views.Toolbar.txtScheme11": "Metro\n", + "SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme12": "Modul", "SSE.Views.Toolbar.txtScheme13": "Lysithea", "SSE.Views.Toolbar.txtScheme14": "Nereus", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index ca916f9c9..05fde4153 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -72,7 +72,6 @@ "Common.Views.CopyWarningDialog.textToPaste": "pour Coller", "Common.Views.DocumentAccessDialog.textLoading": "Chargement en cours...", "Common.Views.DocumentAccessDialog.textTitle": "Paramètres de partage", - "Common.Views.Header.openNewTabText": "Ouvrir dans un nouvel onglet", "Common.Views.Header.textBack": "Aller aux Documents", "Common.Views.Header.txtRename": "Renommer", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Annuler", @@ -244,7 +243,7 @@ "SSE.Controllers.Main.errorArgsRange": "Une erreur dans la formule entrée.
La plage des arguments utilisée est incorrecte.", "SSE.Controllers.Main.errorAutoFilterChange": "L'opération n'est pas autorisée, car elle tente de déplacer les cellules d'un tableau de votre feuille de calcul.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Impossible de réaliser l'opération sur les cellules sélectionnées car vous ne pouvez pas déplacer une partie du tableau.
Sélectionnez une autre plage de données afin que tout le tableau soit déplacé et essayez à nouveau.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.\n", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
Veuillez afficher des éléments filtrés et réessayez.", "SSE.Controllers.Main.errorBadImageUrl": "L'URL d'image est incorrecte", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.", @@ -330,7 +329,6 @@ "SSE.Controllers.Main.titleLicenseExp": "Licence expirée", "SSE.Controllers.Main.titleRecalcFormulas": "Calcul en cours...", "SSE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", - "SSE.Controllers.Main.txtAccent": "Accent", "SSE.Controllers.Main.txtArt": "Votre texte ici", "SSE.Controllers.Main.txtBasicShapes": "Formes de base", "SSE.Controllers.Main.txtButtons": "Boutons", @@ -344,27 +342,6 @@ "SSE.Controllers.Main.txtRectangles": "Rectangles", "SSE.Controllers.Main.txtSeries": "Série", "SSE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", - "SSE.Controllers.Main.txtStyle_Bad": "Bad", - "SSE.Controllers.Main.txtStyle_Calculation": "Calculation", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell", - "SSE.Controllers.Main.txtStyle_Comma": "Comma", - "SSE.Controllers.Main.txtStyle_Currency": "Currency", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text", - "SSE.Controllers.Main.txtStyle_Good": "Good", - "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", - "SSE.Controllers.Main.txtStyle_Input": "Input", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Note", - "SSE.Controllers.Main.txtStyle_Output": "Output", - "SSE.Controllers.Main.txtStyle_Percent": "Percent", - "SSE.Controllers.Main.txtStyle_Title": "Title", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text", "SSE.Controllers.Main.txtXAxis": "Axe X", "SSE.Controllers.Main.txtYAxis": "Axe Y", "SSE.Controllers.Main.unknownErrorText": "Erreur inconnue.", @@ -804,7 +781,6 @@ "SSE.Views.ChartSettings.textSize": "Taille", "SSE.Views.ChartSettings.textStock": "Boursier", "SSE.Views.ChartSettings.textStyle": "Style", - "SSE.Views.ChartSettings.textSurface": "Surface", "SSE.Views.ChartSettings.textType": "Type", "SSE.Views.ChartSettings.textWidth": "Largeur", "SSE.Views.ChartSettings.textWinLossSpark": "Positif/Négatif", @@ -920,7 +896,6 @@ "SSE.Views.ChartSettingsDlg.textStock": "Boursier", "SSE.Views.ChartSettingsDlg.textStraight": "Droit", "SSE.Views.ChartSettingsDlg.textStyle": "Style", - "SSE.Views.ChartSettingsDlg.textSurface": "Surface", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", "SSE.Views.ChartSettingsDlg.textThousands": "Milliers", @@ -965,7 +940,6 @@ "SSE.Views.DocumentHolder.advancedImgText": "Paramètres avancés de l'image", "SSE.Views.DocumentHolder.advancedShapeText": "Paramètres avancés de la forme", "SSE.Views.DocumentHolder.bottomCellText": "Aligner en bas", - "SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", "SSE.Views.DocumentHolder.centerCellText": "Aligner au centre", "SSE.Views.DocumentHolder.chartText": "Paramètres du graphique avancés", "SSE.Views.DocumentHolder.deleteColumnText": "Colonne", @@ -993,7 +967,6 @@ "SSE.Views.DocumentHolder.textEntriesList": "Choisir dans la liste déroulante", "SSE.Views.DocumentHolder.textFreezePanes": "Verrouiller les volets", "SSE.Views.DocumentHolder.textNone": "Aucune", - "SSE.Views.DocumentHolder.textUndo": "Undo", "SSE.Views.DocumentHolder.textUnFreezePanes": "Dégager les volets", "SSE.Views.DocumentHolder.topCellText": "Aligner en haut", "SSE.Views.DocumentHolder.txtAddComment": "Ajouter un commentaire", @@ -1088,7 +1061,6 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activer l'affichage des commentaires", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Paramètres régionaux", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemple: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Turn on display of the resolved comments", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unité de mesure", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valeur du zoom par défaut", @@ -1464,20 +1436,16 @@ "SSE.Views.Statusbar.textNewColor": "Couleur personnalisée", "SSE.Views.Statusbar.textNoColor": "Pas de couleur", "SSE.Views.Statusbar.textSum": "SOMME", - "SSE.Views.Statusbar.tipAccessRights": "Gérez des droits d'accès aux documents ", "SSE.Views.Statusbar.tipAddTab": "Ajouter feuille de calcul", "SSE.Views.Statusbar.tipFirst": "Faire défiler vers la première feuille de calcul", "SSE.Views.Statusbar.tipLast": "Faire défiler vers la dernière feuille de calcul", "SSE.Views.Statusbar.tipNext": "Faire défiler la liste des feuilles à droite", "SSE.Views.Statusbar.tipPrev": "Faire défiler la liste des feuilles à gauche", - "SSE.Views.Statusbar.tipUsers": "Document est en cours d'édition par plusieurs utilisateurs.", - "SSE.Views.Statusbar.tipViewUsers": "Voyez les utilisateurs et gérez des droits d'accès aux documents ", "SSE.Views.Statusbar.tipZoomFactor": "Grossissement", "SSE.Views.Statusbar.tipZoomIn": "Zoom avant", "SSE.Views.Statusbar.tipZoomOut": "Zoom arrière", - "SSE.Views.Statusbar.txAccessRights": "Changer les droits d'accès", "SSE.Views.Statusbar.zoomText": "Zoom {0}%", - "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.\n", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée.
Sélectionnez une plage de telle sorte que la première ligne de la table était sur la même ligne
et la table résultant chevauché l'actuel.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée.
Sélectionnez une plage qui ne comprend pas d'autres tables.", "SSE.Views.TableOptionsDialog.textCancel": "Annuler", @@ -1608,8 +1576,6 @@ "SSE.Views.Toolbar.textInsDown": "Décaler les cellules vers le bas", "SSE.Views.Toolbar.textInsideBorders": "Bordures intérieures", "SSE.Views.Toolbar.textInsRight": "Décaler les cellules vers la droite", - "SSE.Views.Toolbar.textInsText": "Insérez zone de texte", - "SSE.Views.Toolbar.textInsTextArt": "Insérer le texte Art", "SSE.Views.Toolbar.textItalic": "Italique", "SSE.Views.Toolbar.textLeftBorders": "Bordures gauches", "SSE.Views.Toolbar.textLine": "En ligne", @@ -1628,7 +1594,6 @@ "SSE.Views.Toolbar.textRotateUp": "Rotation du texte vers le haut", "SSE.Views.Toolbar.textSparks": "Graphiques sparkline", "SSE.Views.Toolbar.textStock": "Boursier", - "SSE.Views.Toolbar.textSurface": "Surface", "SSE.Views.Toolbar.textTopBorders": "Bordures supérieures", "SSE.Views.Toolbar.textUnderline": "Souligné", "SSE.Views.Toolbar.textWinLossSpark": "Positif/Négatif", @@ -1671,9 +1636,7 @@ "SSE.Views.Toolbar.tipInsertShape": "Insérer une forme automatique", "SSE.Views.Toolbar.tipInsertText": "Insérer du texte", "SSE.Views.Toolbar.tipMerge": "Fusionner", - "SSE.Views.Toolbar.tipNewDocument": "Nouveau document", "SSE.Views.Toolbar.tipNumFormat": "Format de nombre", - "SSE.Views.Toolbar.tipOpenDocument": "Ouvrir le document", "SSE.Views.Toolbar.tipPaste": "Coller", "SSE.Views.Toolbar.tipPrColor": "Couleur d'arrière-plan", "SSE.Views.Toolbar.tipPrint": "Imprimer", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index fd2763065..121344837 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -95,6 +95,7 @@ "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtDelimiter": "Delimitatore", "Common.Views.OpenDialog.txtEncoding": "Codifica", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password errata", "Common.Views.OpenDialog.txtOther": "Altro", "Common.Views.OpenDialog.txtPassword": "Password", "Common.Views.OpenDialog.txtSpace": "Spazio", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 13a8595fe..0c7bfc7d9 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -263,7 +263,7 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "フォントの色を並べ替える", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "大きい順に並べ替えます", "SSE.Views.AutoFilterDialog.txtSortLow2High": "小さい順に並べ替えます。", - "SSE.Views.AutoFilterDialog.txtTextFilter": "テキストのフィルタ-\n", + "SSE.Views.AutoFilterDialog.txtTextFilter": "テキストのフィルタ-", "SSE.Views.AutoFilterDialog.txtTitle": "フィルタ", "SSE.Views.AutoFilterDialog.txtTop10": "トップ10", "SSE.Views.AutoFilterDialog.warnNoSelected": "値を1つ以上指定してください。", @@ -412,7 +412,7 @@ "SSE.Views.DigitalFilterDialog.capOr": "または", "SSE.Views.DigitalFilterDialog.textNoFilter": "フィルタなし", "SSE.Views.DigitalFilterDialog.textShowRows": "抽出条件の指定:", - "SSE.Views.DigitalFilterDialog.textUse1": "?を使って、任意の1文字を表すことができます。\n", + "SSE.Views.DigitalFilterDialog.textUse1": "?を使って、任意の1文字を表すことができます。", "SSE.Views.DigitalFilterDialog.textUse2": "* を使って、任意の文字列を表すことができます。", "SSE.Views.DigitalFilterDialog.txtTitle": "ユーザー設定フィルター", "SSE.Views.DocumentHolder.advancedShapeText": "図形の詳細設定", diff --git a/apps/spreadsheeteditor/main/locale/pl.json b/apps/spreadsheeteditor/main/locale/pl.json new file mode 100644 index 000000000..45e709f43 --- /dev/null +++ b/apps/spreadsheeteditor/main/locale/pl.json @@ -0,0 +1,1784 @@ +{ + "cancelButtonText": "Anuluj", + "Common.Controllers.Chat.notcriticalErrorTitle": "Ostrzeżenie", + "Common.Controllers.Chat.textEnterMessage": "Wprowadź swoją wiadomość tutaj", + "Common.Controllers.Chat.textUserLimit": "Używasz ONLYOFFICE Free Edition.
Tylko dwóch użytkowników może jednocześnie edytować dokument. Chcesz więcej? Zastanów się nad zakupem ONLYOFFICE Enterprise Edition. Czytaj więcej ", + "Common.UI.ComboBorderSize.txtNoBorders": "Bez krawędzi", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez krawędzi", + "Common.UI.ComboDataView.emptyComboText": "Brak styli", + "Common.UI.ExtendedColorDialog.addButtonText": "Dodaj", + "Common.UI.ExtendedColorDialog.cancelButtonText": "Anuluj", + "Common.UI.ExtendedColorDialog.textCurrent": "Obecny", + "Common.UI.ExtendedColorDialog.textHexErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 000000 do FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "Nowy", + "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.SearchDialog.textHighlight": "Podświetl wyniki", + "Common.UI.SearchDialog.textMatchCase": "Rozróżniana wielkość liter", + "Common.UI.SearchDialog.textReplaceDef": "Wprowadź tekst zastępczy", + "Common.UI.SearchDialog.textSearchStart": "Wprowadź tekst tutaj", + "Common.UI.SearchDialog.textTitle": "Znajdź i zamień", + "Common.UI.SearchDialog.textTitle2": "Znajdź", + "Common.UI.SearchDialog.textWholeWords": "Tylko całe słowa", + "Common.UI.SearchDialog.txtBtnHideReplace": "Ukryj Zamień", + "Common.UI.SearchDialog.txtBtnReplace": "Zamień", + "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.textStandartColors": "Kolory standardowe", + "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.UI.Window.cancelButtonText": "Anuluj", + "Common.UI.Window.closeButtonText": "Zamknij", + "Common.UI.Window.noButtonText": "Nie", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Potwierdzenie", + "Common.UI.Window.textDontShow": "Nie pokazuj tej wiadomości ponownie", + "Common.UI.Window.textError": "Błąd", + "Common.UI.Window.textInformation": "Informacja", + "Common.UI.Window.textWarning": "Ostrzeżenie", + "Common.UI.Window.yesButtonText": "Tak", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "adres:", + "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Latvia, EU, LV-1021", + "Common.Views.About.txtLicensee": "LICENCJOBIORCA", + "Common.Views.About.txtLicensor": "LICENCJODAWCA", + "Common.Views.About.txtMail": "e-mail:", + "Common.Views.About.txtPoweredBy": "zasilany przez", + "Common.Views.About.txtTel": "tel.:", + "Common.Views.About.txtVersion": "Wersja", + "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Anuluj", + "Common.Views.AdvancedSettingsWindow.okButtonText": "OK", + "Common.Views.Chat.textSend": "Wyślij", + "Common.Views.Comments.textAdd": "Dodaj", + "Common.Views.Comments.textAddComment": "Dodaj komentarz", + "Common.Views.Comments.textAddCommentToDoc": "Dodaj komentarz do", + "Common.Views.Comments.textAddReply": "Dodaj odpowiedź", + "Common.Views.Comments.textAnonym": "Gość", + "Common.Views.Comments.textCancel": "Anuluj", + "Common.Views.Comments.textClose": "Zamknij", + "Common.Views.Comments.textComments": "Komentarze", + "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEnterCommentHint": "Wprowadź twój komentarz tutaj", + "Common.Views.Comments.textHintAddComment": "Dodaj komentarz", + "Common.Views.Comments.textOpenAgain": "Otwórz ponownie", + "Common.Views.Comments.textReply": "Odpowiedz", + "Common.Views.Comments.textResolve": "Rozwiąż", + "Common.Views.Comments.textResolved": "Rozwiązany", + "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", + "Common.Views.CopyWarningDialog.textToCopy": "dla kopiowania", + "Common.Views.CopyWarningDialog.textToCut": "do wycięcia", + "Common.Views.CopyWarningDialog.textToPaste": "do wklejenia", + "Common.Views.DocumentAccessDialog.textLoading": "Ładowanie...", + "Common.Views.DocumentAccessDialog.textTitle": "Ustawienia udostępniania", + "Common.Views.Header.labelCoUsersDescr": "Dokument jest obecnie edytowany przez kilku użytkowników.", + "Common.Views.Header.textBack": "Idź do dokumentów", + "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.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.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.ImageFromUrlDialog.cancelButtonText": "Anuluj", + "Common.Views.ImageFromUrlDialog.okButtonText": "OK", + "Common.Views.ImageFromUrlDialog.textUrl": "Wklej link URL do obrazu:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "To pole jest wymagane", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", + "Common.Views.OpenDialog.cancelButtonText": "Anuluj", + "Common.Views.OpenDialog.okButtonText": "OK", + "Common.Views.OpenDialog.txtDelimiter": "Separator", + "Common.Views.OpenDialog.txtEncoding": "Kodowanie", + "Common.Views.OpenDialog.txtIncorrectPwd": "Hasło jest nieprawidłowe.", + "Common.Views.OpenDialog.txtOther": "Inny", + "Common.Views.OpenDialog.txtPassword": "Hasło", + "Common.Views.OpenDialog.txtSpace": "Odstęp", + "Common.Views.OpenDialog.txtTab": "Karta", + "Common.Views.OpenDialog.txtTitle": "Wybierz %1 opcji", + "Common.Views.OpenDialog.txtTitleProtected": "Plik chroniony", + "Common.Views.PluginDlg.textLoading": "Ładowanie", + "Common.Views.Plugins.groupCaption": "Wtyczki", + "Common.Views.Plugins.strPlugins": "Wtyczki", + "Common.Views.Plugins.textLoading": "Ładowanie", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.Plugins.textStop": "Zatrzymać", + "Common.Views.RenameDialog.cancelButtonText": "Anuluj", + "Common.Views.RenameDialog.okButtonText": "Ok", + "Common.Views.RenameDialog.textName": "Nazwa pliku", + "Common.Views.RenameDialog.txtInvalidName": "Nazwa pliku nie może zawierać żadnego z następujących znaków:", + "SSE.Controllers.DocumentHolder.alignmentText": "Wyrównanie", + "SSE.Controllers.DocumentHolder.centerText": "Środek", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Usuń kolumnę", + "SSE.Controllers.DocumentHolder.deleteRowText": "Usuń wiersz", + "SSE.Controllers.DocumentHolder.deleteText": "Usuń", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "Odnośnik nie istnieje. Popraw link lub usuń go.", + "SSE.Controllers.DocumentHolder.guestText": "Gość", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Kolumna lewa", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Kolumna prawa", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Wiersz powyżej", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Wiersz poniżej", + "SSE.Controllers.DocumentHolder.insertText": "Wstaw", + "SSE.Controllers.DocumentHolder.leftText": "Lewy", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Ostrzeżenie", + "SSE.Controllers.DocumentHolder.rightText": "Prawy", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Szerokość kolumny {0} symbole ({1} piksele)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Wysokość wiersza: {0} punktów ({1} pikseli)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Naciśnij CTRL i kliknij link", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Wstaw lewy", + "SSE.Controllers.DocumentHolder.textInsertTop": "Wstaw górny", + "SSE.Controllers.DocumentHolder.textSym": "sym", + "SSE.Controllers.DocumentHolder.tipIsLocked": "Ten element jest właśnie edytowany przez innego użytkownika.", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Dodaj dolną krawędź", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Dadaj pasek ułamka", + "SSE.Controllers.DocumentHolder.txtAddHor": "Dodaj poziomy wiesz", + "SSE.Controllers.DocumentHolder.txtAddLB": "Dodaj lewy dolny wiersz", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Dodaj lewą krawędź", + "SSE.Controllers.DocumentHolder.txtAddLT": "Dodaj lewy górny wiersz", + "SSE.Controllers.DocumentHolder.txtAddRight": "Dodaj prawą krawędź", + "SSE.Controllers.DocumentHolder.txtAddTop": "Dodaj górną krawędź", + "SSE.Controllers.DocumentHolder.txtAddVer": "Dodaj pionowy wiersz", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Wyrównaj do znaku", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Ustawienia obramowania", + "SSE.Controllers.DocumentHolder.txtBottom": "Dół", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Wyrównanie kolumny", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Zmniejsz rozmiar argumentu", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Usuń argument", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Usuń ręczną przerwę", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Usuń zamknięte znaki", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Usuń zamknięte znaki i separatory", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Usuń równanie", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Usuń znak", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Usuń pierwiastek", + "SSE.Controllers.DocumentHolder.txtExpand": "Rozszerz i posortuj", + "SSE.Controllers.DocumentHolder.txtExpandSort": "Dane obok zaznaczenia nie będą sortowane. Czy chcesz rozszerzyć wybór, aby uwzględnić sąsiednie dane lub kontynuować sortowanie tylko zaznaczonych komórek?", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Zmień na ułamek liniowy", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Zmienić na ukośny prosty ułamek", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Zmień na ułożone ułamki", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Znak nad tekstem", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Znak pod tekstem", + "SSE.Controllers.DocumentHolder.txtHeight": "Wysokość", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Ukryj dolną krawędź", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Ukryj dolny limit", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Ukryj uchwyt zamykający", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Ukryj stopień", + "SSE.Controllers.DocumentHolder.txtHideHor": "Ukryj poziomy wiersz", + "SSE.Controllers.DocumentHolder.txtHideLB": "Ukryj lewy dolny wiersz", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Ukryj lewą krawędź", + "SSE.Controllers.DocumentHolder.txtHideLT": "Ukryj lewy górny wiersz", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Ukryj uchwyt otwierający", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Ukryj symbol zastępczy", + "SSE.Controllers.DocumentHolder.txtHideRight": "Ukryj prawą krawędź", + "SSE.Controllers.DocumentHolder.txtHideTop": "Ukryj górną krawędź", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Ukryj górny limit", + "SSE.Controllers.DocumentHolder.txtHideVer": "Ukryj pionowy wiersz", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Zwiększ rozmiar argumentu", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Wstaw argument po", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Wstaw argument przed", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Wstaw ręczną przerwę", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Wstaw równanie po", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Wstaw równanie przed", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Zmień lokalizację limitu", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Ograniczenie tekstu", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limit w tekście", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Dopasuj nawiasy do wysokości argumentu", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Wyrównanie matrycy", + "SSE.Controllers.DocumentHolder.txtNoChoices": "Nie ma wyboru dla wypełnienia komórek.
Tylko wartości tekstowe z kolumny mogą być wybrane dla zastąpienia.", + "SSE.Controllers.DocumentHolder.txtOverbar": "Pasek nad tekstem", + "SSE.Controllers.DocumentHolder.txtPaste": "Wklej", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formuła z obramowaniem", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Formuła + szerokość kolumny", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Formatowanie docelowe", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Wklej formatowanie", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formuła + numer format", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Wklej formułe", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Formuła + wszystkie formatowania", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Wklej link", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Podłączony obraz", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Scalanie warunkowego formatowania", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Obraz", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formatowanie źródłowe", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transponować", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Wartość + wszystkie formatowania", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Wartość + formatowanie liczbowe", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Wklej wartość", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Usunąć belkę frakcji", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Usuń limit", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Usuwanie akcentu", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Usuń pasek", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Usuń indeksy", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Usuń indeks dolny", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Usuń górny indeks", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Wysokość wiersza", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Pismo po tekście", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Pismo przed tekstem", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Pokaż dolny limit", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Pokaż klamrę zamykającą", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Pokaż stopień", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Pokaż klamrę otwierającą", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Pokaż symbol zastępczy", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Pokaż górny limit", + "SSE.Controllers.DocumentHolder.txtSorting": "Sortowanie", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Sortuj wybrane", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Uchwyty rozciągające", + "SSE.Controllers.DocumentHolder.txtTop": "Góra", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Pasek pod tekstem", + "SSE.Controllers.DocumentHolder.txtWidth": "Szerokość", + "SSE.Controllers.LeftMenu.newDocumentTitle": "Nienazwany arkusz kalkulacyjny", + "SSE.Controllers.LeftMenu.textByColumns": "Przez kolumny", + "SSE.Controllers.LeftMenu.textByRows": "Przez wiersze", + "SSE.Controllers.LeftMenu.textFormulas": "Formuły", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Cała zawartość komórki", + "SSE.Controllers.LeftMenu.textLookin": "Szukaj w", + "SSE.Controllers.LeftMenu.textNoTextFound": "Nie znaleziono danych, których szukasz. Proszę dostosuj opcje wyszukiwania.", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "Zastąpiono. {0} zdarzenia zostały pominięte.", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "Wyszukiwanie zakończone. Zastąpiono {0}", + "SSE.Controllers.LeftMenu.textSearch": "Szukaj", + "SSE.Controllers.LeftMenu.textSheet": "Arkusz", + "SSE.Controllers.LeftMenu.textValues": "Wartości", + "SSE.Controllers.LeftMenu.textWarning": "Ostrzeżenie", + "SSE.Controllers.LeftMenu.textWithin": "W ciągu", + "SSE.Controllers.LeftMenu.textWorkbook": "Skoroszyt", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
Czy na pewno chcesz kontynuować?", + "SSE.Controllers.Main.confirmMoveCellRange": "Zakres komórek docelowych może zawierać dane. Kontynuować operację?", + "SSE.Controllers.Main.confirmPutMergeRange": "Dane źródłowe zawierały scalone komórki.
Zostały rozłączone, zanim zostały wklejone do tabeli.", + "SSE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", + "SSE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\", aby powrócić do listy dokumentów.", + "SSE.Controllers.Main.criticalErrorTitle": "Błąd", + "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor arkusza kalkulacyjnego", + "SSE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", + "SSE.Controllers.Main.downloadTextText": "Pobieranie arkusza kalkulacyjnego...", + "SSE.Controllers.Main.downloadTitleText": "Pobierz arkusz kalkulacyjny", + "SSE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
Proszę skontaktować się z administratorem serwera dokumentów.", + "SSE.Controllers.Main.errorArgsRange": "Wprowadzona formuła jest błędna.
Użyto niepoprawnego argumentu zakresu.", + "SSE.Controllers.Main.errorAutoFilterChange": "Operacja nie jest dozwolona, ponieważ próbuje przesunąć komórki w tabeli w arkuszu.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operacja nie mogła zostać wykonana dla wybranych komórek, ponieważ nie można przenieść części tabeli.
Wybierz inny zakres danych, aby cała tabela została przesunięta i spróbuj ponownie.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Operacja nie mogła zostać wykonana dla wybranego zakresu komórek.
Wybierz jednolity zakres danych inny niż istniejący i spróbuj ponownie.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operacja nie może zostać wykonana, ponieważ obszar zawiera filtrowane komórki.
Proszę ukryj filtrowane elementy i spróbuj ponownie.", + "SSE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.", + "SSE.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.

Dowiedz się więcej o połączeniu serwera dokumentów tutaj", + "SSE.Controllers.Main.errorCopyMultiselectArea": "To polecenie nie może być użyte z wieloma wyborami.
Wybierz jeden zakres i spróbuj ponownie.", + "SSE.Controllers.Main.errorCountArg": "Wprowadzona formuła jest błędna.
Niepoprawna ilość argumentów.", + "SSE.Controllers.Main.errorCountArgExceed": "Wprowadzona formuła jest błędna.
Przekroczono liczbę argumentów.", + "SSE.Controllers.Main.errorCreateDefName": "Istniejące zakresy nazw nie mogą być edytowane, a nowe nie mogą zostać utworzone
w chwili, gdy niektóre z nich są edytowane.", + "SSE.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ą.", + "SSE.Controllers.Main.errorDataRange": "Błędny zakres danych.", + "SSE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "SSE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", + "SSE.Controllers.Main.errorFileRequest": "Błąd zewnętrzny.
Błąd zgłoszenia pliku. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "SSE.Controllers.Main.errorFileVKey": "Błąd zewnętrzny.
Niewłaściwy klucz bezpieczeństwa. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "SSE.Controllers.Main.errorFillRange": "Nie można wypełnić zaznaczonego zakresu komórek.
Wszystkie scalone komórki muszą mieć ten sam rozmiar.", + "SSE.Controllers.Main.errorFormulaName": "Wprowadzona formuła jest błędna.
Użyto niepoprawnej nazwy formuły.", + "SSE.Controllers.Main.errorFormulaParsing": "Błąd wewnętrzny podczas analizowania formuły.", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcja odnosi się do arkusza, który nie istnieje.
Proszę sprawdzić dane i spróbować ponownie.", + "SSE.Controllers.Main.errorInvalidRef": "Wprowadź prawidłową nazwę dla wyboru lub prawidłowe odniesienie, aby przejść do tego.", + "SSE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", + "SSE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucza wygasł", + "SSE.Controllers.Main.errorLockedAll": "Operacja nie mogła zostać wykonana, gdy arkusz został zablokowany przez innego użytkownika.", + "SSE.Controllers.Main.errorLockedCellPivot": "Nie można zmienić dane w tabeli przestawnej.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "Nie można zmienić nazwy arkusza, gdy zmieniana jest ona przez innego użytkownika", + "SSE.Controllers.Main.errorMoveRange": "Nie można zmienić części scalonej komórki", + "SSE.Controllers.Main.errorOpenWarning": "Długość jednej z formuł w pliku przekroczyła
dozwoloną liczbę znaków i została usunięta.", + "SSE.Controllers.Main.errorOperandExpected": "Wprowadzona składnia funkcji jest nieprawidłowa. Sprawdź, czy nie brakuje jednego z nawiasów - '(' lub ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "Obszar kopiowania i wklejania nie pasuje.
Proszę zaznacz obszar o takim samym rozmiarze lub wybierz pierwszą komórkę w rzędzie do wklejenia skopiowanych komórek.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Niestety w bieżącej wersji programu nie można wydrukować więcej niż 1500 stron naraz.
To ograniczenie zostanie usunięte w przyszłych wersjach.", + "SSE.Controllers.Main.errorProcessSaveResult": "Zapis nieudany", + "SSE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", + "SSE.Controllers.Main.errorSessionAbsolute": "Sesja edycji dokumentu wygasła. Proszę ponownie załadować stronę.", + "SSE.Controllers.Main.errorSessionIdle": "Dokument nie był edytowany przez długi czas. Proszę ponownie załadować stronę.", + "SSE.Controllers.Main.errorSessionToken": "Połączenie z serwerem zostało przerwane. Proszę ponownie załadować stronę.", + "SSE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "SSE.Controllers.Main.errorToken": "Token bezpieczeństwa dokumentu jest nieprawidłowo uformowany.
Prosimy o kontakt z administratorem serwera dokumentów.", + "SSE.Controllers.Main.errorTokenExpire": "Token zabezpieczeń dokumentu wygasł.
Prosimy o kontakt z administratorem serwera dokumentów.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Błąd zewnętrzny.
Niespodziewany identyfikator GUID. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "SSE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", + "SSE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", + "SSE.Controllers.Main.errorUsersExceed": "Przekroczono liczbę dozwolonych użytkowników określonych przez plan cenowy wersji", + "SSE.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.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Wprowadzona formuła jest błędna.
Użyto niepoprawnej liczby klamr.", + "SSE.Controllers.Main.errorWrongOperator": "Wprowadzona formuła jest błędna. Został użyty błędny operator.
Proszę poprawić błąd.", + "SSE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym arkuszu kalkulacyjnym. Kliknij przycisk \"Zostań na tej stronie\", a następnie \"Zapisz\", aby je zapisać. Kliknij przycisk \"Porzuć tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "SSE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", + "SSE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", + "SSE.Controllers.Main.loadFontTextText": "Ładowanie danych...", + "SSE.Controllers.Main.loadFontTitleText": "Ładowanie danych", + "SSE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", + "SSE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", + "SSE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", + "SSE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", + "SSE.Controllers.Main.loadingDocumentTitleText": "Ładowanie arkusza kalkulacyjnego", + "SSE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", + "SSE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", + "SSE.Controllers.Main.openTextText": "Otwieranie arkusza kalkulacyjnego...", + "SSE.Controllers.Main.openTitleText": "Otwieranie arkusza kalkulacyjnego", + "SSE.Controllers.Main.pastInMergeAreaError": "Nie można zmienić części scalonej komórki", + "SSE.Controllers.Main.printTextText": "Drukowanie arkusza kalkulacyjnego...", + "SSE.Controllers.Main.printTitleText": "Drukowanie arkusza kalkulacyjnego", + "SSE.Controllers.Main.reloadButtonText": "Przeładuj stronę", + "SSE.Controllers.Main.requestEditFailedMessageText": "Ktoś właśnie edytuje ten dokument. Proszę spróbuj później.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Odmowa dostępu", + "SSE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliki", + "SSE.Controllers.Main.savePreparingText": "Przygotowywanie do zapisu", + "SSE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", + "SSE.Controllers.Main.saveTextText": "Zapisywanie arkusza kalkulacyjnego...", + "SSE.Controllers.Main.saveTitleText": "Zapisywanie arkusza kalkulacyjnego", + "SSE.Controllers.Main.textAnonymous": "Gość", + "SSE.Controllers.Main.textBuyNow": "Odwiedź stronę web", + "SSE.Controllers.Main.textCloseTip": "Kliknij, żeby zamknąć wskazówkę", + "SSE.Controllers.Main.textConfirm": "Potwierdzenie", + "SSE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "SSE.Controllers.Main.textLoadingDocument": "Ładowanie arkusza kalkulacyjnego", + "SSE.Controllers.Main.textNo": "Nie", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", + "SSE.Controllers.Main.textPleaseWait": "Operacja może potrwać dłużej niż oczekiwano. Proszę czekać...", + "SSE.Controllers.Main.textRecalcFormulas": "Obliczanie formuł...", + "SSE.Controllers.Main.textShape": "Kształt", + "SSE.Controllers.Main.textStrict": "Tryb ścisły", + "SSE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie \"Szybki\" współtworzenia.
Kliknij przycisk \"Tryb ścisły\", aby przejść do trybu ścisłego edytowania, aby edytować plik bez ingerencji innych użytkowników i wysyłać zmiany tylko po zapisaniu. Możesz przełączać się między trybami współtworzenia, używając edytora Ustawienia zaawansowane.", + "SSE.Controllers.Main.textYes": "Tak", + "SSE.Controllers.Main.titleLicenseExp": "Upłynął okres ważności licencji", + "SSE.Controllers.Main.titleRecalcFormulas": "Obliczanie...", + "SSE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "SSE.Controllers.Main.txtAccent": "Akcent", + "SSE.Controllers.Main.txtArt": "Twój tekst tutaj", + "SSE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", + "SSE.Controllers.Main.txtButtons": "Przyciski", + "SSE.Controllers.Main.txtCallouts": "Objaśnienia", + "SSE.Controllers.Main.txtCharts": "Wykresy", + "SSE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", + "SSE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", + "SSE.Controllers.Main.txtFiguredArrows": "Strzałki", + "SSE.Controllers.Main.txtLines": "Wiersze", + "SSE.Controllers.Main.txtMath": "Matematyczne", + "SSE.Controllers.Main.txtRectangles": "Prostokąty", + "SSE.Controllers.Main.txtSeries": "Serie", + "SSE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", + "SSE.Controllers.Main.txtStyle_Bad": "Zły", + "SSE.Controllers.Main.txtStyle_Calculation": "Obliczenie", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Sprawdź komórkę", + "SSE.Controllers.Main.txtStyle_Comma": "Przecinek", + "SSE.Controllers.Main.txtStyle_Currency": "Waluta", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Tekst wyjaśniający", + "SSE.Controllers.Main.txtStyle_Good": "Dobry", + "SSE.Controllers.Main.txtStyle_Heading_1": "Nagłówek 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Nagłówek 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Nagłówek 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Nagłówek 4", + "SSE.Controllers.Main.txtStyle_Input": "Wejście", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Połączona komórka", + "SSE.Controllers.Main.txtStyle_Neutral": "Neutralny", + "SSE.Controllers.Main.txtStyle_Normal": "Normalny", + "SSE.Controllers.Main.txtStyle_Note": "Notka", + "SSE.Controllers.Main.txtStyle_Output": "Wyjście", + "SSE.Controllers.Main.txtStyle_Percent": "Procent", + "SSE.Controllers.Main.txtStyle_Title": "Tytuł", + "SSE.Controllers.Main.txtStyle_Total": "Wszystkie", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Tekst ostrzegawczy", + "SSE.Controllers.Main.txtXAxis": "Oś X", + "SSE.Controllers.Main.txtYAxis": "Oś Y", + "SSE.Controllers.Main.unknownErrorText": "Nieznany błąd.", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", + "SSE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu", + "SSE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", + "SSE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", + "SSE.Controllers.Main.warnBrowserIE9": "Aplikacja ma małe możliwości w IE9. Użyj przeglądarki IE10 lub nowszej.", + "SSE.Controllers.Main.warnBrowserZoom": "Aktualne ustawienie powiększenia przeglądarki nie jest w pełni obsługiwane. Zresetuj domyślny zoom, naciskając Ctrl + 0.", + "SSE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "SSE.Controllers.Main.warnNoLicense": "Używasz wersji ONLYOFFICE 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.", + "SSE.Controllers.Main.warnProcessRightsChange": "Nie masz prawa edytować tego pliku.", + "SSE.Controllers.Print.strAllSheets": "Wszystkie arkusze", + "SSE.Controllers.Print.textWarning": "Ostrzeżenie", + "SSE.Controllers.Print.warnCheckMargings": "Marginesy są błędne", + "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", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Arkusz może zawierać dane. Czy na pewno chcesz kontynuować?", + "SSE.Controllers.Statusbar.zoomText": "Powiększenie {0}%", + "SSE.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ć?", + "SSE.Controllers.Toolbar.errorMaxRows": "BŁĄD! Maksymalna liczba serii danych na wykresie wynosi 255", + "SSE.Controllers.Toolbar.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "SSE.Controllers.Toolbar.textAccent": "Akcenty", + "SSE.Controllers.Toolbar.textBracket": "Klamry", + "SSE.Controllers.Toolbar.textCancel": "Anuluj", + "SSE.Controllers.Toolbar.textFontSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość liczbową w zakresie od 1 do 409.", + "SSE.Controllers.Toolbar.textFraction": "Ułamki", + "SSE.Controllers.Toolbar.textFunction": "Funkcje", + "SSE.Controllers.Toolbar.textIntegral": "Całki", + "SSE.Controllers.Toolbar.textLargeOperator": "Duże operatory", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limity i algorytmy", + "SSE.Controllers.Toolbar.textLongOperation": "Długa praca", + "SSE.Controllers.Toolbar.textMatrix": "Macierze", + "SSE.Controllers.Toolbar.textOperator": "Operatory", + "SSE.Controllers.Toolbar.textRadical": "Pierwiastki", + "SSE.Controllers.Toolbar.textScript": "Pisma", + "SSE.Controllers.Toolbar.textSymbols": "Symbole", + "SSE.Controllers.Toolbar.textWarning": "Ostrzeżenie", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Ostry", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Strzałka w lewo - w prawo powyżej", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Lewa strzałka powyżej", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Strzałka w prawo powyżej", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Pasek", + "SSE.Controllers.Toolbar.txtAccent_BarBot": " Kreska na dole", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Kreska od góry", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Formuła w ramce (z wypełnieniem)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Forma zamknięta (przykład)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Sprawdź", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Nawias klamrowy na dole", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Nawias klamrowy", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Wektor A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC Z Nadmiarem", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y z cechą góry", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Wielokropek", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Podwójna kropka", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Kropka", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Podwójna kreska od góry", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Grawerować", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Grupowanie znaków poniżej", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Grupowanie znaków powyżej", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Harpun w lewo do góry", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Prawy Harpun Powyżej", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Okładka", + "SSE.Controllers.Toolbar.txtAccent_Smile": "krótki", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tylda", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Klamry z separatorami", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Klamry z separatorami", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Klamry z separatorami", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Przypadek (dwa warunki)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Przypadek (trzy warunki)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Obiekt stosu", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Obiekt stosu", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Przykłady przypadków", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Współczynnik dwumianowy", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Współczynnik dwumianowy", + "SSE.Controllers.Toolbar.txtBracket_Line": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Round": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Klamry z separatorami", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Square": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Klamry", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Pojedyńcza klamra", + "SSE.Controllers.Toolbar.txtExpand": "Rozszerz i posortuj", + "SSE.Controllers.Toolbar.txtExpandSort": "Dane obok zaznaczenia nie będą sortowane. Czy chcesz rozszerzyć wybór, aby uwzględnić sąsiednie dane lub kontynuować sortowanie tylko zaznaczonych komórek?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skrzywiona frakcja", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Zróżnicowany", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Zróżnicowany", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Zróżnicowany", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Zróżnicowany", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Ułamek liniowy", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi ponad 2", + "SSE.Controllers.Toolbar.txtFractionSmall": "Mała frakcja", + "SSE.Controllers.Toolbar.txtFractionVertical": "Skumulowany fragment", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Funkcja Inverse Cosine", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Arccosinus hiperboliczny", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Funkcja Inverse Cotangent", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Hiperboliczna Funkcja Inverse Cotangent", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Funkcja Odwrotna Cosecans", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Hiperboliczny arcus cosecans", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Odwrotna funkcja sekretna", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Hiperboliczna odwrotna funkcja sekretna", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Funkcja Inverse Sine", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Funkcja odwrotnej sinusoidy hiperbolicznej", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Odwrotna funkcja arcus tangens", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Funkcja hiperboliczna odwrotna", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Funkcja cosinus", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Cosinus hiperboliczny", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Funkcja ctg", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Cotangens hiperboliczny", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Funkcja Cosecant", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Funkcja hipotonii hiperbola", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus theta", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Wzór styczny", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Sekretna funkcja", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Hiperboliczna funkcja sekretna", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Funkcja Sinus", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Funkcja hiperboliczna Sine", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangens", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Tangens hiperboliczny", + "SSE.Controllers.Toolbar.txtIntegral": "Całka", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Mechanizm różnicowy", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Mechanizm różnicowy x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Mechanizm różnicowy y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Całka", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Całka podwójna", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Całka podwójna", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Całka podwójna", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Całka krzywej", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Całka krzywej", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral powierzchni", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral powierzchni", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral powierzchni", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Całka krzywej", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Integralna objętość", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Integralna objętość", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Integralna objętość", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Całka", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Potrójny integral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Potrójny integral", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Potrójny integral", + "SSE.Controllers.Toolbar.txtInvalidRange": "BŁĄD! Niepoprawny zakres komórki", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Zaklinuj", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Zaklinuj", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Zaklinuj", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Zaklinuj", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Zaklinuj", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Współprodukt", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Współprodukt", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Współprodukt", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Współprodukt", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Współprodukt", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Unia", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Przecięcie", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Przecięcie", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Przecięcie", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Przecięcie", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Przecięcie", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Podsumowanie", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Unia", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Unia", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Unia", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Unia", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Unia", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Przykładowy limit", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maksymalny przykład", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logarytm naturalny", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logarytm", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarytm", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maksymalny", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Pusta macierz z nawiasami", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Pusta macierz z nawiasami", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Pusta macierz z nawiasami", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Pusta macierz z nawiasami", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Pusta macierz", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Kropki bazowe", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punkty pomocniczne", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Ukośnie kropki", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Pionowe kropki", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Rozrzedzona matryca", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Rozrzedzona matryca", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Macierz jednostkowa", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Macierz jednostkowa", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Macierz jednostkowa", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Macierz jednostkowa", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Strzałka w lewo - w prawo powyżej", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Strzałka w lewo - w prawo powyżej", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Lewa strzałka poniżej", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Lewa strzałka powyżej", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Strzałka w prawo Poniżej", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Strzałka w prawo powyżej", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Dwukropek jest równy", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Wydajność", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Wydajność Delty", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Równe definicji", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta równa się", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Strzałka w lewo - w prawo powyżej", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Strzałka w lewo - w prawo powyżej", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Lewa strzałka poniżej", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Lewa strzałka powyżej", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Strzałka w prawo Poniżej", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Strzałka w prawo powyżej", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Równy równy", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus równy", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus Równy", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Zmierzone przez", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Pierwiastek", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Pierwiastek", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Pierwiastek drugiego stopnia", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Pierwiastek sześcienny", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Pierwiastek ze stopniem", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "Pierwiastek kwadratowy", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Pismo", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Pismo", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Pismo", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Pismo", + "SSE.Controllers.Toolbar.txtScriptSub": "Indeks", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Indeks dolny", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Lewy indeks dolny", + "SSE.Controllers.Toolbar.txtScriptSup": "Indeks górny", + "SSE.Controllers.Toolbar.txtSorting": "Sortowanie", + "SSE.Controllers.Toolbar.txtSortSelected": "Sortuj wybrane", + "SSE.Controllers.Toolbar.txtSymbol_about": "W przybliżeniu", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Uzupełnienie", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Prawie równe do", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Operator gwiazdek", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Symbol kuli", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Przecięcie", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Pierwiastek sześcienny", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Poziome kropki w środku", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Stopnie Celcjusza", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "W przybliżeniu równe", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Unia", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Przekątny wielokropek w dół w prawo", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Stopnie", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Znak dzielenia", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Strzałka w dół", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Pusty zestaw", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Równy", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identyczny do", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "Tam jest", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Czynność", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Stopnie Fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Dla wszystkich", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Większy lub równy niż", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Dużo większy niż", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Większy niż", + "SSE.Controllers.Toolbar.txtSymbol_in": "Element", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Przyrost", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Nieskończoność", + "SSE.Controllers.Toolbar.txtSymbol_iota": "odrobina", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Lewa strzałka", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Lewa-Prawa strzałka", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Mniejszy lub równy niż", + "SSE.Controllers.Toolbar.txtSymbol_less": "Mniejszy niż", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Dużo mniejszy niż", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus Plus", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Różny od", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Zawiera jako członek", + "SSE.Controllers.Toolbar.txtSymbol_not": "Znak negacji", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "Tam nie ma", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omikron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Częściowe różnice", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Procentowo", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Fi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Proporcjonalny do", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Pierwiastek poczwórny", + "SSE.Controllers.Toolbar.txtSymbol_qed": "Koniec dowodu", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Przekątny wielokropek w górę w prawo", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Strzałka w prawo", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Znak pierwiastka", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "W związku z tym", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Znak mnożenia", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Strzałka w górę", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Ypsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon (opcja)", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi Wariant", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi Wariant", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Wariant Rho", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Wariacja Sigma", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Wariant Theta", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Pionowe wyskakiwanie", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.warnLongOperation": "Operacja, którą zamierzasz wykonać może zająć trochę czasu.
Na pewno chcesz kontynuować?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Tylko dane z górnej lewej komórki pozostaną w scalonej komórce.
Czy na pewno chcesz kontynuować?", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "Niestandardowy filtr", + "SSE.Views.AutoFilterDialog.cancelButtonText": "Anuluj", + "SSE.Views.AutoFilterDialog.okButtonText": "OK", + "SSE.Views.AutoFilterDialog.textAddSelection": "Dodaj bieżący wybór do filtrowania", + "SSE.Views.AutoFilterDialog.textEmptyItem": "{Puste}", + "SSE.Views.AutoFilterDialog.textSelectAll": "Zaznacz wszystko", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Wybierz wszystkie wyniki wyszukiwania", + "SSE.Views.AutoFilterDialog.textWarning": "Ostrzeżenie", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Powyżej średniej", + "SSE.Views.AutoFilterDialog.txtBegins": "Zaczyna się z...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Poniżej średniej", + "SSE.Views.AutoFilterDialog.txtBetween": "Pomiędzy...", + "SSE.Views.AutoFilterDialog.txtClear": "Wyczyść", + "SSE.Views.AutoFilterDialog.txtContains": "Zawiera...", + "SSE.Views.AutoFilterDialog.txtEmpty": "Wprowadź filtr komórki", + "SSE.Views.AutoFilterDialog.txtEnds": "Kończy się z...", + "SSE.Views.AutoFilterDialog.txtEquals": "Równa się..", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filtruj po kolorze komórek", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtruj po kolorze czcionki", + "SSE.Views.AutoFilterDialog.txtGreater": "Większy niż...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Większy lub równy niż...", + "SSE.Views.AutoFilterDialog.txtLess": "Mniejszy niż...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Mniejszy lub równy niż...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Nie zaczyna się od...", + "SSE.Views.AutoFilterDialog.txtNotContains": "Nie zawiera...", + "SSE.Views.AutoFilterDialog.txtNotEnds": "Nie kończy się z...", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Nie równa się...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Filtr numeryczny", + "SSE.Views.AutoFilterDialog.txtReapply": "Ponownie zastosuj", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sortuj po kolorze komórek", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sortuj po kolorze czcionki", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sortuj od najwyższych do najniższych", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sortuj od najniższych do najwyższych", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtrowanie tekstu", + "SSE.Views.AutoFilterDialog.txtTitle": "Filtr", + "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.warnNoSelected": "Musisz wybrać co najmniej jedną wartość", + "SSE.Views.CellEditor.textManager": "Menadżer zdefiniowanych zakresów", + "SSE.Views.CellEditor.tipFormula": "Wstaw funkcję", + "SSE.Views.CellRangeDialog.errorMaxRows": "BŁĄD! Maksymalna liczba serii danych na wykresie wynosi 255", + "SSE.Views.CellRangeDialog.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "SSE.Views.CellRangeDialog.textCancel": "Anuluj", + "SSE.Views.CellRangeDialog.txtEmpty": "To pole jest wymagane", + "SSE.Views.CellRangeDialog.txtInvalidRange": "BŁĄD! Niepoprawny zakres komórek", + "SSE.Views.CellRangeDialog.txtTitle": "Wybierz zakres danych", + "SSE.Views.ChartSettings.strLineWeight": "Waga linii", + "SSE.Views.ChartSettings.strSparkColor": "Kolor", + "SSE.Views.ChartSettings.strTemplate": "Szablon", + "SSE.Views.ChartSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "SSE.Views.ChartSettings.textArea": "Obszar", + "SSE.Views.ChartSettings.textBar": "Paskowy", + "SSE.Views.ChartSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "SSE.Views.ChartSettings.textChartType": "Zmień typ wykresu", + "SSE.Views.ChartSettings.textColumn": "Kolumna", + "SSE.Views.ChartSettings.textColumnSpark": "Kolumna", + "SSE.Views.ChartSettings.textEditData": "Edytuj datę i lokalizację", + "SSE.Views.ChartSettings.textFirstPoint": "Pierwszy punkt", + "SSE.Views.ChartSettings.textHeight": "Wysokość", + "SSE.Views.ChartSettings.textHighPoint": "Punkt wysokości", + "SSE.Views.ChartSettings.textKeepRatio": "Stałe proporcje", + "SSE.Views.ChartSettings.textLastPoint": "Punkt końcowy", + "SSE.Views.ChartSettings.textLine": "Wiersz", + "SSE.Views.ChartSettings.textLineSpark": "Wiersz", + "SSE.Views.ChartSettings.textLowPoint": "Najniższy punkt", + "SSE.Views.ChartSettings.textMarkers": "Znaczniki", + "SSE.Views.ChartSettings.textNegativePoint": "Punkt negatywny", + "SSE.Views.ChartSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.ChartSettings.textPie": "Kołowe", + "SSE.Views.ChartSettings.textPoint": "XY (Punktowy)", + "SSE.Views.ChartSettings.textRanges": "Zakres danych", + "SSE.Views.ChartSettings.textSelectData": "Wybierz dane", + "SSE.Views.ChartSettings.textShow": "Pokaż", + "SSE.Views.ChartSettings.textSize": "Rozmiar", + "SSE.Views.ChartSettings.textStock": "Zbiory", + "SSE.Views.ChartSettings.textStyle": "Styl", + "SSE.Views.ChartSettings.textSurface": "Powierzchnia", + "SSE.Views.ChartSettings.textType": "Typ", + "SSE.Views.ChartSettings.textWidth": "Szerokość", + "SSE.Views.ChartSettings.textWinLossSpark": "Wygrana/przegrana", + "SSE.Views.ChartSettingsDlg.cancelButtonText": "Anuluj", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "BŁĄD! Maksymalna liczba serii danych na wykresie wynosi 255", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "SSE.Views.ChartSettingsDlg.textAlt": "Tekst alternatywny", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Opis", + "SSE.Views.ChartSettingsDlg.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.", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Tytuł", + "SSE.Views.ChartSettingsDlg.textArea": "Obszar", + "SSE.Views.ChartSettingsDlg.textAuto": "Automatyczny", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Automatycznie dla każdego", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Krzywe osie", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opcje osi", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Pozycja osi", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Ustawienia osi", + "SSE.Views.ChartSettingsDlg.textBar": "Paskowy", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Pomiędzy znakami Tick", + "SSE.Views.ChartSettingsDlg.textBillions": "Miliardy", + "SSE.Views.ChartSettingsDlg.textBottom": "Dół", + "SSE.Views.ChartSettingsDlg.textCategoryName": "Nazwa kategori", + "SSE.Views.ChartSettingsDlg.textCenter": "Środek", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy wykresu", + "SSE.Views.ChartSettingsDlg.textChartTitle": "Tytuł wykresu", + "SSE.Views.ChartSettingsDlg.textColumn": "Kolumna", + "SSE.Views.ChartSettingsDlg.textColumnSpark": "Kolumna", + "SSE.Views.ChartSettingsDlg.textCross": "Na skrzyżowaniu", + "SSE.Views.ChartSettingsDlg.textCustom": "Niestandardowy", + "SSE.Views.ChartSettingsDlg.textDataColumns": "w kolumnach", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Ciemne etykiety", + "SSE.Views.ChartSettingsDlg.textDataRange": "Zakres danych", + "SSE.Views.ChartSettingsDlg.textDataRows": "w wierszach", + "SSE.Views.ChartSettingsDlg.textDataSeries": "Dane", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Pokaż legendę", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Ukryte i puste komórki", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Podłącz punkty danych do wierszu", + "SSE.Views.ChartSettingsDlg.textFit": "Dopasuj do szerokości", + "SSE.Views.ChartSettingsDlg.textFixed": "Ustalony", + "SSE.Views.ChartSettingsDlg.textGaps": "Przerwy", + "SSE.Views.ChartSettingsDlg.textGridLines": "Linie siatki", + "SSE.Views.ChartSettingsDlg.textGroup": "Grupa Sparkline", + "SSE.Views.ChartSettingsDlg.textHide": "Ukryj", + "SSE.Views.ChartSettingsDlg.textHigh": "Wysoki", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Pozioma oś", + "SSE.Views.ChartSettingsDlg.textHorGrid": "Pozioma siatka", + "SSE.Views.ChartSettingsDlg.textHorizontal": "Poziomy", + "SSE.Views.ChartSettingsDlg.textHorTitle": "Tytuł osi poziomej", + "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", + "SSE.Views.ChartSettingsDlg.textHundreds": "Setki", + "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", + "SSE.Views.ChartSettingsDlg.textIn": "W", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Dolna strona", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Górna strona", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Oznakowanie osi", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Odstęp między etykietami", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Ustawienia etykiety", + "SSE.Views.ChartSettingsDlg.textLabelPos": "Pozycja etykiety", + "SSE.Views.ChartSettingsDlg.textLayout": "Układ", + "SSE.Views.ChartSettingsDlg.textLeft": "Lewy", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Lewa nakładka", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Dół", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "Lewy", + "SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda", + "SSE.Views.ChartSettingsDlg.textLegendRight": "Prawy", + "SSE.Views.ChartSettingsDlg.textLegendTop": "Góra", + "SSE.Views.ChartSettingsDlg.textLine": "Wykres liniowy", + "SSE.Views.ChartSettingsDlg.textLines": "Linie", + "SSE.Views.ChartSettingsDlg.textLineSpark": "Wiersz", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Zakres lokalizacji", + "SSE.Views.ChartSettingsDlg.textLow": "Niski", + "SSE.Views.ChartSettingsDlg.textMajor": "Główny", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Większy i mniejszy", + "SSE.Views.ChartSettingsDlg.textMajorType": "Główny typ", + "SSE.Views.ChartSettingsDlg.textManual": "Ręczny", + "SSE.Views.ChartSettingsDlg.textMarkers": "Znaczniki", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "Odstęp między znakami", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Maksymalna wartość", + "SSE.Views.ChartSettingsDlg.textMillions": "Miliony", + "SSE.Views.ChartSettingsDlg.textMinor": "Mniejszy", + "SSE.Views.ChartSettingsDlg.textMinorType": "Mały typ", + "SSE.Views.ChartSettingsDlg.textMinValue": "Wartość minimalna", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Obok osi", + "SSE.Views.ChartSettingsDlg.textNone": "Żaden", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "Brak pokrycia", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Podział", + "SSE.Views.ChartSettingsDlg.textOut": "Wyjście", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Wierzchołek zewnętrzny", + "SSE.Views.ChartSettingsDlg.textOverlay": "Nałożenie", + "SSE.Views.ChartSettingsDlg.textPie": "Kołowe", + "SSE.Views.ChartSettingsDlg.textPoint": "XY (Punktowy)", + "SSE.Views.ChartSettingsDlg.textReverse": "Wartości w odwrotnej kolejności", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Odwrotna kolejność", + "SSE.Views.ChartSettingsDlg.textRight": "Prawy", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Właściwa nakładka", + "SSE.Views.ChartSettingsDlg.textRotated": "Obrócony", + "SSE.Views.ChartSettingsDlg.textSameAll": "To samo dla wszystkich", + "SSE.Views.ChartSettingsDlg.textSelectData": "Wybierz dane", + "SSE.Views.ChartSettingsDlg.textSeparator": "Separator etykiet danych", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Nazwa serii", + "SSE.Views.ChartSettingsDlg.textShow": "Pokaż", + "SSE.Views.ChartSettingsDlg.textShowAxis": "Oś wyświetlenia", + "SSE.Views.ChartSettingsDlg.textShowBorders": "Pokaż granice wykresu", + "SSE.Views.ChartSettingsDlg.textShowData": "Pokaż dane w ukrytych wierszach i kolumnach", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Pokaż puste komórki jako", + "SSE.Views.ChartSettingsDlg.textShowGrid": "Linie siatki", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Pokaż oś", + "SSE.Views.ChartSettingsDlg.textShowValues": "Pokaż wartości wykresu", + "SSE.Views.ChartSettingsDlg.textSingle": "Pojedynczy Sparkline", + "SSE.Views.ChartSettingsDlg.textSmooth": "Gładki", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges", + "SSE.Views.ChartSettingsDlg.textStock": "Zbiory", + "SSE.Views.ChartSettingsDlg.textStraight": "Prosty", + "SSE.Views.ChartSettingsDlg.textStyle": "Styl", + "SSE.Views.ChartSettingsDlg.textSurface": "Powierzchnia", + "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", + "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", + "SSE.Views.ChartSettingsDlg.textThousands": "Tysiące", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Zaznacz opcje", + "SSE.Views.ChartSettingsDlg.textTitle": "Wykres - zaawansowane ustawienia", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Ustawienia zaawansowane", + "SSE.Views.ChartSettingsDlg.textTop": "Góra", + "SSE.Views.ChartSettingsDlg.textTrillions": "Tryliony", + "SSE.Views.ChartSettingsDlg.textType": "Typ", + "SSE.Views.ChartSettingsDlg.textTypeData": "Typ i data", + "SSE.Views.ChartSettingsDlg.textTypeStyle": "Type wykresu, Styl &
Zakres danych", + "SSE.Views.ChartSettingsDlg.textUnits": "Pokaż jednostki", + "SSE.Views.ChartSettingsDlg.textValue": "Wartość", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Oś pionowa", + "SSE.Views.ChartSettingsDlg.textVertGrid": "Pionowe linie siatki", + "SSE.Views.ChartSettingsDlg.textVertTitle": "Tytuł osi pionowej", + "SSE.Views.ChartSettingsDlg.textWinLossSpark": "Wygrana/przegrana", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Tytuł osi X", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Tytuł osi Y", + "SSE.Views.ChartSettingsDlg.textZero": "Zero", + "SSE.Views.ChartSettingsDlg.txtEmpty": "To pole jest wymagane", + "SSE.Views.DigitalFilterDialog.cancelButtonText": "Anuluj", + "SSE.Views.DigitalFilterDialog.capAnd": "I", + "SSE.Views.DigitalFilterDialog.capCondition1": "równa się", + "SSE.Views.DigitalFilterDialog.capCondition10": "nie kończy się z", + "SSE.Views.DigitalFilterDialog.capCondition11": "zawiera", + "SSE.Views.DigitalFilterDialog.capCondition12": "nie zawiera", + "SSE.Views.DigitalFilterDialog.capCondition2": "nie równa się", + "SSE.Views.DigitalFilterDialog.capCondition3": "jest większy niż", + "SSE.Views.DigitalFilterDialog.capCondition4": "jest większy lub równy niż", + "SSE.Views.DigitalFilterDialog.capCondition5": "jest mniejszy niż", + "SSE.Views.DigitalFilterDialog.capCondition6": "jest mniejszy lub równy niż", + "SSE.Views.DigitalFilterDialog.capCondition7": "zaczyna się z", + "SSE.Views.DigitalFilterDialog.capCondition8": "nie zaczyna się od", + "SSE.Views.DigitalFilterDialog.capCondition9": "kończy się z", + "SSE.Views.DigitalFilterDialog.capOr": "lub", + "SSE.Views.DigitalFilterDialog.textNoFilter": "Brak filtru", + "SSE.Views.DigitalFilterDialog.textShowRows": "Pokaż wiersze gdzie", + "SSE.Views.DigitalFilterDialog.textUse1": "Użyj ?, aby przedstawić pojedynczy znak", + "SSE.Views.DigitalFilterDialog.textUse2": "Użyj *, aby przedstawić dowolną serię znaków", + "SSE.Views.DigitalFilterDialog.txtTitle": "Niestandardowy filtr", + "SSE.Views.DocumentHolder.advancedImgText": "Zaawansowane ustawienia obrazu", + "SSE.Views.DocumentHolder.advancedShapeText": "Zaawansowane ustawienia kształtu", + "SSE.Views.DocumentHolder.bottomCellText": "Wyrównaj do dołu", + "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.deleteColumnText": "Kolumna", + "SSE.Views.DocumentHolder.deleteRowText": "Wiersz", + "SSE.Views.DocumentHolder.deleteTableText": "Tabela", + "SSE.Views.DocumentHolder.direct270Text": "Obróć tekst w górę", + "SSE.Views.DocumentHolder.direct90Text": "Obróć tekst w dół", + "SSE.Views.DocumentHolder.directHText": "Poziomy", + "SSE.Views.DocumentHolder.directionText": "Kierunek tekstu", + "SSE.Views.DocumentHolder.editChartText": "Edytuj dane", + "SSE.Views.DocumentHolder.editHyperlinkText": "Edytuj hiperlink", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Kolumna lewa", + "SSE.Views.DocumentHolder.insertColumnRightText": "Kolumna prawa", + "SSE.Views.DocumentHolder.insertRowAboveText": "Wiersz powyżej", + "SSE.Views.DocumentHolder.insertRowBelowText": "Wiersz poniżej", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Usuń hiperlink", + "SSE.Views.DocumentHolder.selectColumnText": "Wstaw kolumnę", + "SSE.Views.DocumentHolder.selectDataText": "Dane kolumny", + "SSE.Views.DocumentHolder.selectRowText": "Wiersz", + "SSE.Views.DocumentHolder.selectTableText": "Tabela", + "SSE.Views.DocumentHolder.textArrangeBack": "Wyślij do tła", + "SSE.Views.DocumentHolder.textArrangeBackward": "Przenieś do tyłu", + "SSE.Views.DocumentHolder.textArrangeForward": "Przenieś do przodu", + "SSE.Views.DocumentHolder.textArrangeFront": "Przejdź na pierwszy plan", + "SSE.Views.DocumentHolder.textEntriesList": "Wybierz z rozwijalnej listy", + "SSE.Views.DocumentHolder.textFreezePanes": "Zablokuj panele", + "SSE.Views.DocumentHolder.textNone": "Żaden", + "SSE.Views.DocumentHolder.textUndo": "Cofnij", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Odblokuj panele", + "SSE.Views.DocumentHolder.topCellText": "Wyrównaj do góry", + "SSE.Views.DocumentHolder.txtAddComment": "Dodaj komentarz", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Zdefiniuj zakres", + "SSE.Views.DocumentHolder.txtArrange": "Zorganizować", + "SSE.Views.DocumentHolder.txtAscending": "Rosnąco", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Automatycznie dopasuj szerokość kolumny", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Automatycznie dopasuj wysokość wiersza", + "SSE.Views.DocumentHolder.txtClear": "Wyczyść", + "SSE.Views.DocumentHolder.txtClearAll": "Wszystko", + "SSE.Views.DocumentHolder.txtClearComments": "Komentarze", + "SSE.Views.DocumentHolder.txtClearFormat": "Formatowanie", + "SSE.Views.DocumentHolder.txtClearHyper": "Hiperlinki", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Wyczyść wybrane grupy Sparkline", + "SSE.Views.DocumentHolder.txtClearSparklines": "Wyczyść wybrane pola typu Sparkline", + "SSE.Views.DocumentHolder.txtClearText": "Tekst", + "SSE.Views.DocumentHolder.txtColumn": "Wstaw kolumnę", + "SSE.Views.DocumentHolder.txtColumnWidth": "Ustaw szerokość kolumny", + "SSE.Views.DocumentHolder.txtCopy": "Kopiuj", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Niestandardowy rozmiar kolumny", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Niestandardowa wysokość wiersza", + "SSE.Views.DocumentHolder.txtCut": "Wytnij", + "SSE.Views.DocumentHolder.txtDelete": "Usuń", + "SSE.Views.DocumentHolder.txtDescending": "Malejąco", + "SSE.Views.DocumentHolder.txtEditComment": "Edytuj komentarz", + "SSE.Views.DocumentHolder.txtFilter": "Filtr", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Filtruj po kolorze komórki", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Filtruj po kolorze czcionki", + "SSE.Views.DocumentHolder.txtFilterValue": "Filtruj po wybranych wartościach komórki", + "SSE.Views.DocumentHolder.txtFormula": "Wstaw funkcję", + "SSE.Views.DocumentHolder.txtGroup": "Grupa", + "SSE.Views.DocumentHolder.txtHide": "Ukryj", + "SSE.Views.DocumentHolder.txtInsert": "Wstaw", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Hiperlink", + "SSE.Views.DocumentHolder.txtPaste": "Wklej", + "SSE.Views.DocumentHolder.txtReapply": "Ponownie zastosuj", + "SSE.Views.DocumentHolder.txtRow": "Cały wiersz", + "SSE.Views.DocumentHolder.txtRowHeight": "Ustaw wysokość wiersza", + "SSE.Views.DocumentHolder.txtSelect": "Wybierz", + "SSE.Views.DocumentHolder.txtShiftDown": "Przesuń komórki w dół", + "SSE.Views.DocumentHolder.txtShiftLeft": "Przesuń komórki w lewo", + "SSE.Views.DocumentHolder.txtShiftRight": "Przesuń komórki w prawo", + "SSE.Views.DocumentHolder.txtShiftUp": "Przesuń komórki w górę", + "SSE.Views.DocumentHolder.txtShow": "Pokaż", + "SSE.Views.DocumentHolder.txtShowComment": "Pokaż komentarz", + "SSE.Views.DocumentHolder.txtSort": "Sortuj", + "SSE.Views.DocumentHolder.txtSortCellColor": "Wybrany kolor komórki na górze", + "SSE.Views.DocumentHolder.txtSortFontColor": "Wybrany kolor czcionki na górze", + "SSE.Views.DocumentHolder.txtSparklines": "Sparkline", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Zaawansowane ustawienia tekstu", + "SSE.Views.DocumentHolder.txtUngroup": "Rozgrupuj", + "SSE.Views.DocumentHolder.txtWidth": "Szerokość", + "SSE.Views.DocumentHolder.vertAlignText": "Wyrównaj wertykalnie", + "SSE.Views.FileMenu.btnBackCaption": "Idź do dokumentów", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Zamknij menu", + "SSE.Views.FileMenu.btnCreateNewCaption": "Utwórz nowy", + "SSE.Views.FileMenu.btnDownloadCaption": "Pobierz jako...", + "SSE.Views.FileMenu.btnHelpCaption": "Pomoc...", + "SSE.Views.FileMenu.btnInfoCaption": "Informacje o arkuszu kalkulacyjnym...", + "SSE.Views.FileMenu.btnPrintCaption": "Drukuj", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Otwórz ostatnie...", + "SSE.Views.FileMenu.btnRenameCaption": "Zmień nazwę...", + "SSE.Views.FileMenu.btnReturnCaption": "Powrót do arkusza", + "SSE.Views.FileMenu.btnRightsCaption": "Prawa dostępu...", + "SSE.Views.FileMenu.btnSaveAsCaption": "Zapisz jako", + "SSE.Views.FileMenu.btnSaveCaption": "Zapisz", + "SSE.Views.FileMenu.btnSettingsCaption": "Zaawansowane ustawienia...", + "SSE.Views.FileMenu.btnToEditCaption": "Edytuj arkusz kalkulacyjny", + "SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "Z pustego", + "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Z szablonu", + "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Utwórz nowy, czysty arkusz kalkulacyjny, który będziesz mógł sformatować podczas edytowania po jego utworzeniu. Możesz też wybrać jeden z szablonów, aby utworzyć arkusz kalkulacyjny określonego typu lub celu, w którym niektóre style zostały wcześniej zastosowane.", + "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nowy arkusz kalkulacyjny", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Zmień prawa dostępu", + "SSE.Views.FileMenuPanels.DocumentInfo.txtDate": "Data utworzenia", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Lokalizacja", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Osoby, które mają prawa", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Tytuł arkusza kalkulacyjnego", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Zmień prawa dostępu", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby, które mają prawa", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Zatwierdź", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Włącz auto odzyskiwanie", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Włącz automatyczny zapis", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Tryb współtworzenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Zobaczysz zmiany innych użytkowników od razu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Zanim będziesz mógł zobaczyć zmiany wprowadzone przez innych użytkowników, musisz je najpierw zaakceptować.", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Szybki", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Podpowiedź czcionki", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Zawsze zapisuj na serwer", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Język formuły", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Przykład: SUM; MIN; MAX; COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Włącz wyświetlanie komentarzy", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Ustawienia regionaln", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Przykład:", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Włącz wyświetlanie rozwiązanych komentarzy", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Ścisły", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Jednostka miary", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Domyślna wartość powiększenia", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Każde 10 minut", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Każde 30 minut", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Każde 5 minut", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Każda godzina", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Automatyczne odzyskiwanie", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Automatyczny zapis", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Wyłączony", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Zapisz na serwer", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Każda minuta", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centymetr", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Niemiecki", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Angielski", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Cale", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Widok komentarzy", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "jak OS X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Natywny", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polski", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rosyjski", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "jak Windows", + "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Ogólne", + "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Ustawienia strony", + "SSE.Views.FormatSettingsDialog.textCancel": "Anuluj", + "SSE.Views.FormatSettingsDialog.textCategory": "Kategoria", + "SSE.Views.FormatSettingsDialog.textDecimal": "Dziesiętny", + "SSE.Views.FormatSettingsDialog.textFormat": "Formatowanie", + "SSE.Views.FormatSettingsDialog.textOk": "OK", + "SSE.Views.FormatSettingsDialog.textSeparator": "Użyj separatora 1000", + "SSE.Views.FormatSettingsDialog.textSymbols": "Symbole", + "SSE.Views.FormatSettingsDialog.textTitle": "Format numeru", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Rachunkowy", + "SSE.Views.FormatSettingsDialog.txtAs10": "Dziesiętnie (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "Jak setne (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "Jako szesnaście (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "Jako połówki (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "Czwartym udziałów (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "Wyrównane poprawnie udziałów (4/8)", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Waluta", + "SSE.Views.FormatSettingsDialog.txtCustom": "Niestandardowy", + "SSE.Views.FormatSettingsDialog.txtDate": "Data", + "SSE.Views.FormatSettingsDialog.txtFraction": "Ułamek", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Ogólne", + "SSE.Views.FormatSettingsDialog.txtNumber": "Numeryczny", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Procentowo", + "SSE.Views.FormatSettingsDialog.txtSample": "Przykład:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Naukowy", + "SSE.Views.FormatSettingsDialog.txtText": "Tekst", + "SSE.Views.FormatSettingsDialog.txtTime": "Czas", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Do jednej cyfry (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Do dwóch cyfr (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Do trzech cyfr (131/135)", + "SSE.Views.FormulaDialog.cancelButtonText": "Anuluj", + "SSE.Views.FormulaDialog.okButtonText": "OK", + "SSE.Views.FormulaDialog.sCategoryAll": "Wszystko", + "SSE.Views.FormulaDialog.sCategoryAll_de": "Wszystko", + "SSE.Views.FormulaDialog.sCategoryAll_ru": "Wszystkie", + "SSE.Views.FormulaDialog.sCategoryCube": "Sześcian", + "SSE.Views.FormulaDialog.sCategoryCube_de": "Sześcian", + "SSE.Views.FormulaDialog.sCategoryCube_ru": "kubiczne", + "SSE.Views.FormulaDialog.sCategoryDatabase": "Baza danych", + "SSE.Views.FormulaDialog.sCategoryDatabase_de": "Baza danych", + "SSE.Views.FormulaDialog.sCategoryDatabase_ru": "Bazy danych", + "SSE.Views.FormulaDialog.sCategoryDateAndTime": "Data i czas", + "SSE.Views.FormulaDialog.sCategoryDateAndTime_de": "Data i czas", + "SSE.Views.FormulaDialog.sCategoryDateAndTime_ru": "Data i czas", + "SSE.Views.FormulaDialog.sCategoryEngineering": "Inżyniera", + "SSE.Views.FormulaDialog.sCategoryEngineering_de": "Konstruktion", + "SSE.Views.FormulaDialog.sCategoryEngineering_ru": "Inżynierskie", + "SSE.Views.FormulaDialog.sCategoryFinancial": "Finansowe", + "SSE.Views.FormulaDialog.sCategoryFinancial_de": "Finansowe", + "SSE.Views.FormulaDialog.sCategoryFinancial_ru": "Finansowe", + "SSE.Views.FormulaDialog.sCategoryInformation": "Informacja", + "SSE.Views.FormulaDialog.sCategoryInformation_de": "Informacja", + "SSE.Views.FormulaDialog.sCategoryInformation_ru": "Informacyjne", + "SSE.Views.FormulaDialog.sCategoryLogical": "Logiczny", + "SSE.Views.FormulaDialog.sCategoryLogical_de": "Logiczny", + "SSE.Views.FormulaDialog.sCategoryLogical_ru": "Logiczne", + "SSE.Views.FormulaDialog.sCategoryLookupAndReference": "Wyszukiwanie i odniesienie", + "SSE.Views.FormulaDialog.sCategoryLookupAndReference_de": "Suchen und Bezüge", + "SSE.Views.FormulaDialog.sCategoryLookupAndReference_ru": "Wyszukiwanie i linki", + "SSE.Views.FormulaDialog.sCategoryMathematic": "Matematyczne i trygonometryczne", + "SSE.Views.FormulaDialog.sCategoryMathematic_de": "Matematyczne i trygonometryczn", + "SSE.Views.FormulaDialog.sCategoryMathematic_ru": "Matematyczne", + "SSE.Views.FormulaDialog.sCategoryStatistical": "Statystyczny", + "SSE.Views.FormulaDialog.sCategoryStatistical_de": "Statystyczny", + "SSE.Views.FormulaDialog.sCategoryStatistical_ru": "Statystyczne", + "SSE.Views.FormulaDialog.sCategoryTextAndData": "Tekst i data", + "SSE.Views.FormulaDialog.sCategoryTextAndData_de": "Tekst i data", + "SSE.Views.FormulaDialog.sCategoryTextAndData_ru": "Tekst i dane", + "SSE.Views.FormulaDialog.sDescription": "Opis", + "SSE.Views.FormulaDialog.textGroupDescription": "Wybierz grupę funkcji", + "SSE.Views.FormulaDialog.textListDescription": "Wybierz funkcję", + "SSE.Views.FormulaDialog.txtTitle": "Wstaw funkcję", + "SSE.Views.HyperlinkSettingsDialog.cancelButtonText": "Anuluj", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Pokaż", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link do", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Zakres", + "SSE.Views.HyperlinkSettingsDialog.strSheet": "Arkusz", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Wybrany zakres", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Wpisz tutaj podpis", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Wprowadź tutaj link", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Podaj tutaj etykietkę", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Link zewnętrzny", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Wewnętrzny zakres danych", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek", + "SSE.Views.HyperlinkSettingsDialog.textLinkType": "Typ linku", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "Tekst wskazówki na ekranie", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Ustawienia hiperlinku", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "To pole jest wymagane", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "To pole powinno być adresem URL w formacie \"http://www.example.com\"", + "SSE.Views.ImageSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "SSE.Views.ImageSettings.textEdit": "Edycja", + "SSE.Views.ImageSettings.textEditObject": "Edytuj obiekt", + "SSE.Views.ImageSettings.textFromFile": "Z pliku", + "SSE.Views.ImageSettings.textFromUrl": "Z URL", + "SSE.Views.ImageSettings.textHeight": "Wysokość", + "SSE.Views.ImageSettings.textInsert": "Zamień obraz", + "SSE.Views.ImageSettings.textKeepRatio": "Stałe proporcje", + "SSE.Views.ImageSettings.textOriginalSize": "Domyślny rozmiar", + "SSE.Views.ImageSettings.textSize": "Rozmiar", + "SSE.Views.ImageSettings.textWidth": "Szerokość", + "SSE.Views.ImageSettingsAdvanced.cancelButtonText": "Anuluj", + "SSE.Views.ImageSettingsAdvanced.okButtonText": "Ok", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Tekst alternatywny", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Opis", + "SSE.Views.ImageSettingsAdvanced.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.", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Tytuł", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Obraz - zaawansowane ustawienia", + "SSE.Views.LeftMenu.tipAbout": "O", + "SSE.Views.LeftMenu.tipChat": "Czat", + "SSE.Views.LeftMenu.tipComments": "Komentarze", + "SSE.Views.LeftMenu.tipFile": "Plik", + "SSE.Views.LeftMenu.tipPlugins": "Wtyczki", + "SSE.Views.LeftMenu.tipSearch": "Szukaj", + "SSE.Views.LeftMenu.tipSupport": "Opinie i wsparcie", + "SSE.Views.LeftMenu.txtDeveloper": "TRYB DEWELOPERA", + "SSE.Views.MainSettingsPrint.okButtonText": "Zapisz", + "SSE.Views.MainSettingsPrint.strBottom": "Dół", + "SSE.Views.MainSettingsPrint.strLandscape": "Krajobraz", + "SSE.Views.MainSettingsPrint.strLeft": "Lewy", + "SSE.Views.MainSettingsPrint.strMargins": "Marginesy", + "SSE.Views.MainSettingsPrint.strPortrait": "Portret", + "SSE.Views.MainSettingsPrint.strPrint": "Drukuj", + "SSE.Views.MainSettingsPrint.strRight": "Prawy", + "SSE.Views.MainSettingsPrint.strTop": "Góra", + "SSE.Views.MainSettingsPrint.textActualSize": "Rzeczywisty rozmiar", + "SSE.Views.MainSettingsPrint.textFitCols": "Dopasuj rozmiary wszystkich kolumn na stronie", + "SSE.Views.MainSettingsPrint.textFitPage": "Dopasuj arkusz na jednej stronie", + "SSE.Views.MainSettingsPrint.textFitRows": "Dopasuj wszystkie wiersze na jednej stronie", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientacja strony", + "SSE.Views.MainSettingsPrint.textPageScaling": "Scalanie", + "SSE.Views.MainSettingsPrint.textPageSize": "Rozmiar strony", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Drukuj siatkę", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Drukuj wiersze i kolumny", + "SSE.Views.MainSettingsPrint.textSettings": "Ustawienia dla", + "SSE.Views.NamedRangeEditDlg.cancelButtonText": "Anuluj", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Istniejące zakresy nazw nie mogą być edytowane, a nowe nie mogą zostać utworzone
w chwili, gdy niektóre z nich są edytowane.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Zakresy zdefiniowane", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Ostrzeżenie", + "SSE.Views.NamedRangeEditDlg.okButtonText": "Ok", + "SSE.Views.NamedRangeEditDlg.strWorkbook": "Skoroszyt", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Zakres danych", + "SSE.Views.NamedRangeEditDlg.textExistName": "BŁĄD! Zakres o takiej samej nazwie już istnieje.", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "Nazwa musi zaczynać się literą lub podkreśleniem i nie może zawierać nieprawidłowych znaków.", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "BŁĄD! Niepoprawny zakres komórki", + "SSE.Views.NamedRangeEditDlg.textIsLocked": "BŁĄD! Ten element jest edytowany przez innego użytkownika.", + "SSE.Views.NamedRangeEditDlg.textName": "Nazwa", + "SSE.Views.NamedRangeEditDlg.textReservedName": "Nazwa, którą próbujesz użyć, jest już wzmiankowana w formułach komórkowych. Proszę użyć innej nazwy.", + "SSE.Views.NamedRangeEditDlg.textScope": "Zakres", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Wybierz dane", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "To pole jest wymagane", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edytuj nazwę", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nowa nazwa", + "SSE.Views.NamedRangePasteDlg.cancelButtonText": "Anuluj", + "SSE.Views.NamedRangePasteDlg.okButtonText": "Ok", + "SSE.Views.NamedRangePasteDlg.textNames": "Określone zakresy", + "SSE.Views.NamedRangePasteDlg.txtTitle": "Wklej zakres", + "SSE.Views.NameManagerDlg.closeButtonText": "Zamknij", + "SSE.Views.NameManagerDlg.guestText": "Gość", + "SSE.Views.NameManagerDlg.okButtonText": "Ok", + "SSE.Views.NameManagerDlg.textDataRange": "Zakres danych", + "SSE.Views.NameManagerDlg.textDelete": "Usuń", + "SSE.Views.NameManagerDlg.textEdit": "Edycja", + "SSE.Views.NameManagerDlg.textEmpty": "Nie utworzono jeszcze żadnych określonych zakresów.
Utwórz co najmniej jeden określony zakres i to pojawi się w tym polu.", + "SSE.Views.NameManagerDlg.textFilter": "Filtr", + "SSE.Views.NameManagerDlg.textFilterAll": "Wszystko", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Zakresy zdefiniowane", + "SSE.Views.NameManagerDlg.textFilterSheet": "Nazwy przypisane do arkusza", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Nazwy tabeli", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Nazwy przypisane do skoroszytu", + "SSE.Views.NameManagerDlg.textNew": "Nowy", + "SSE.Views.NameManagerDlg.textnoNames": "Nie znaleziono żadnych zakresów pasujących do Twojego filtru.", + "SSE.Views.NameManagerDlg.textRanges": "Określone zakresy", + "SSE.Views.NameManagerDlg.textScope": "Zakres", + "SSE.Views.NameManagerDlg.textWorkbook": "Skoroszyt", + "SSE.Views.NameManagerDlg.tipIsLocked": "Ten element jest właśnie edytowany przez innego użytkownika.", + "SSE.Views.NameManagerDlg.txtTitle": "Menadżer zdefiniowanych zakresów", + "SSE.Views.ParagraphSettings.strLineHeight": "Rozstaw wierszy", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Odstępy akapitu", + "SSE.Views.ParagraphSettings.strSpacingAfter": "Po", + "SSE.Views.ParagraphSettings.strSpacingBefore": "Przed", + "SSE.Views.ParagraphSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "SSE.Views.ParagraphSettings.textAt": "W", + "SSE.Views.ParagraphSettings.textAtLeast": "Co najmniej", + "SSE.Views.ParagraphSettings.textAuto": "Mnożnik", + "SSE.Views.ParagraphSettings.textExact": "Dokładnie", + "SSE.Views.ParagraphSettings.txtAutoText": "Automatyczny", + "SSE.Views.ParagraphSettingsAdvanced.cancelButtonText": "Anuluj", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "W tym polu zostaną wyświetlone określone karty", + "SSE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Wszystkie duże znaki", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Podwójne przekreślenie", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Pierwszy wiersz", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Lewy", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Prawy", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Czcionka", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Wcięcia i miejsca docelowe", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Małe litery", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Przekreślony", + "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Indeks", + "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Indeks górny", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Karta", + "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Wyrównanie", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Rozstaw znaków", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Domyślna zakładka", + "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Efekty", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Usuń", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Usuń wszystko", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Określ", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Środek", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Lewy", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Pozycja karty", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Prawy", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Akapit - Ustawienia zaawansowane", + "SSE.Views.PrintSettings.btnPrint": "Zapisz i drukuj", + "SSE.Views.PrintSettings.cancelButtonText": "Anuluj", + "SSE.Views.PrintSettings.strBottom": "Dół", + "SSE.Views.PrintSettings.strLandscape": "Krajobraz", + "SSE.Views.PrintSettings.strLeft": "Lewy", + "SSE.Views.PrintSettings.strMargins": "Marginesy", + "SSE.Views.PrintSettings.strPortrait": "Portret", + "SSE.Views.PrintSettings.strPrint": "Drukuj", + "SSE.Views.PrintSettings.strRight": "Prawy", + "SSE.Views.PrintSettings.strTop": "Góra", + "SSE.Views.PrintSettings.textActualSize": "Rzeczywisty rozmiar", + "SSE.Views.PrintSettings.textAllSheets": "Wszystkie arkusze", + "SSE.Views.PrintSettings.textCurrentSheet": "Obecny arkusz", + "SSE.Views.PrintSettings.textFitCols": "Dopasuj rozmiary wszystkich kolumn na stronie", + "SSE.Views.PrintSettings.textFitPage": "Dopasuj arkusz na jednej stronie", + "SSE.Views.PrintSettings.textFitRows": "Dopasuj wszystkie wiersze na jednej stronie", + "SSE.Views.PrintSettings.textHideDetails": "Ukryj szczegóły", + "SSE.Views.PrintSettings.textLayout": "Układ", + "SSE.Views.PrintSettings.textPageOrientation": "Orientacja strony", + "SSE.Views.PrintSettings.textPageScaling": "Scalanie", + "SSE.Views.PrintSettings.textPageSize": "Rozmiar strony", + "SSE.Views.PrintSettings.textPrintGrid": "Drukuj siatkę", + "SSE.Views.PrintSettings.textPrintHeadings": "Drukuj wiersze i kolumny", + "SSE.Views.PrintSettings.textPrintRange": "Drukuj zakres", + "SSE.Views.PrintSettings.textSelection": "Wybrany", + "SSE.Views.PrintSettings.textSettings": "Ustawienia arkusza", + "SSE.Views.PrintSettings.textShowDetails": "Pokaż szczegóły", + "SSE.Views.PrintSettings.textTitle": "Ustawienia drukowania", + "SSE.Views.RightMenu.txtChartSettings": "Ustawienia wykresu", + "SSE.Views.RightMenu.txtImageSettings": "Ustawienia obrazu", + "SSE.Views.RightMenu.txtParagraphSettings": "Ustawienia tekstu", + "SSE.Views.RightMenu.txtSettings": "Ogólne ustawienia", + "SSE.Views.RightMenu.txtShapeSettings": "Ustawienia kształtu", + "SSE.Views.RightMenu.txtSparklineSettings": "Ustawienia Sparkline", + "SSE.Views.RightMenu.txtTableSettings": "Ustawienia tabeli", + "SSE.Views.RightMenu.txtTextArtSettings": "Ustawienia tekstu", + "SSE.Views.SetValueDialog.cancelButtonText": "Anuluj", + "SSE.Views.SetValueDialog.okButtonText": "OK", + "SSE.Views.SetValueDialog.txtMaxText": "Maksymalna wartość dla tego pola wynosi {0}", + "SSE.Views.SetValueDialog.txtMinText": "Minimalna wartość dla tego pola wynosi {0}", + "SSE.Views.ShapeSettings.strBackground": "Kolor tła", + "SSE.Views.ShapeSettings.strChange": "Zmień kształt", + "SSE.Views.ShapeSettings.strColor": "Kolor", + "SSE.Views.ShapeSettings.strFill": "Wypełnij", + "SSE.Views.ShapeSettings.strForeground": "Kolor pierwszoplanowy", + "SSE.Views.ShapeSettings.strPattern": "Wzór", + "SSE.Views.ShapeSettings.strSize": "Rozmiar", + "SSE.Views.ShapeSettings.strStroke": "Obrys", + "SSE.Views.ShapeSettings.strTransparency": "Nieprzezroczystość", + "SSE.Views.ShapeSettings.strType": "Typ", + "SSE.Views.ShapeSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "SSE.Views.ShapeSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "SSE.Views.ShapeSettings.textColor": "Kolor wypełnienia", + "SSE.Views.ShapeSettings.textDirection": "Kierunek", + "SSE.Views.ShapeSettings.textEmptyPattern": "Brak wzorca", + "SSE.Views.ShapeSettings.textFromFile": "Z pliku", + "SSE.Views.ShapeSettings.textFromUrl": "Z URL", + "SSE.Views.ShapeSettings.textGradient": "Gradient", + "SSE.Views.ShapeSettings.textGradientFill": "Wypełnienie gradientem", + "SSE.Views.ShapeSettings.textImageTexture": "Obraz lub tekstura", + "SSE.Views.ShapeSettings.textLinear": "Liniowy", + "SSE.Views.ShapeSettings.textNewColor": "Niestandardowy kolor", + "SSE.Views.ShapeSettings.textNoFill": "Brak wypełnienia", + "SSE.Views.ShapeSettings.textOriginalSize": "Rozmiar oryginalny", + "SSE.Views.ShapeSettings.textPatternFill": "Wzór", + "SSE.Views.ShapeSettings.textRadial": "Promieniowy", + "SSE.Views.ShapeSettings.textSelectTexture": "Wybierz", + "SSE.Views.ShapeSettings.textStretch": "Rozciągnij", + "SSE.Views.ShapeSettings.textStyle": "Styl", + "SSE.Views.ShapeSettings.textTexture": "Z tekstury", + "SSE.Views.ShapeSettings.textTile": "Płytka", + "SSE.Views.ShapeSettings.txtBrownPaper": "Brązowy papier", + "SSE.Views.ShapeSettings.txtCanvas": "Płótno", + "SSE.Views.ShapeSettings.txtCarton": "Karton", + "SSE.Views.ShapeSettings.txtDarkFabric": "Ciemna tkanina", + "SSE.Views.ShapeSettings.txtGrain": "Ziarno", + "SSE.Views.ShapeSettings.txtGranite": "Granit", + "SSE.Views.ShapeSettings.txtGreyPaper": "Szary papier", + "SSE.Views.ShapeSettings.txtKnit": "Szydełkowanie", + "SSE.Views.ShapeSettings.txtLeather": "Skórzany", + "SSE.Views.ShapeSettings.txtNoBorders": "Brak wiersza", + "SSE.Views.ShapeSettings.txtPapyrus": "Papirus", + "SSE.Views.ShapeSettings.txtWood": "Drewno", + "SSE.Views.ShapeSettingsAdvanced.cancelButtonText": "Anuluj", + "SSE.Views.ShapeSettingsAdvanced.okButtonText": "OK", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Kolumny", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Wypełnienie tekstem", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Tekst alternatywny", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Opis", + "SSE.Views.ShapeSettingsAdvanced.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.", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Tytuł", + "SSE.Views.ShapeSettingsAdvanced.textArrows": "Strzałki", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Początkowy rozmiar", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Styl początkowy", + "SSE.Views.ShapeSettingsAdvanced.textBevel": "Ukos", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Dół", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Typ czapki", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Ilość kolumn", + "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Rozmiar końcowy", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Styl końcowy", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Płaski", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "Wysokość", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Dołącz typ", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Stałe proporcje", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "Lewy", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Styl wierszy", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "prosty", + "SSE.Views.ShapeSettingsAdvanced.textRight": "Prawy", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Zaokrąglij", + "SSE.Views.ShapeSettingsAdvanced.textSize": "Rozmiar", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Przerwa między kolumnami", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "Kwadratowy", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Kształt - Zaawansowane ustawienia", + "SSE.Views.ShapeSettingsAdvanced.textTop": "Góra", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Wagi i strzałki", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "Szerokość", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopiuj do końca)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Przenieś do końca)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopiuj przed arkuszem", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Przenieś przed arkusz", + "SSE.Views.Statusbar.filteredRecordsText": "przefiltrowano {0} z {1} rekordów", + "SSE.Views.Statusbar.filteredText": "Tryb filtrowania", + "SSE.Views.Statusbar.itemCopy": "Kopiuj", + "SSE.Views.Statusbar.itemDelete": "Usuń", + "SSE.Views.Statusbar.itemHidden": "Ukryty", + "SSE.Views.Statusbar.itemHide": "Ukryj", + "SSE.Views.Statusbar.itemInsert": "Wstaw", + "SSE.Views.Statusbar.itemMove": "Przenieś", + "SSE.Views.Statusbar.itemRename": "Zmień nazwę", + "SSE.Views.Statusbar.itemTabColor": "Kolor karty", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Istnieje już arkusz roboczy o takiej samej nazwie.", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Arkusz nie może zawierać znaków: \\/*?[]:", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nazwa arkusza", + "SSE.Views.Statusbar.textAverage": "ŚREDNIA", + "SSE.Views.Statusbar.textCount": "ILOŚĆ", + "SSE.Views.Statusbar.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.Statusbar.textNoColor": "Bez koloru", + "SSE.Views.Statusbar.textSum": "Suma", + "SSE.Views.Statusbar.tipAddTab": "Dodaj arkusz", + "SSE.Views.Statusbar.tipFirst": "Przewiń do pierwszego arkusza", + "SSE.Views.Statusbar.tipLast": "Przewiń do ostatniego arkusza", + "SSE.Views.Statusbar.tipNext": "Przesuń listę arkuszy w prawo", + "SSE.Views.Statusbar.tipPrev": "Przesuń listę arkuszy w lewo", + "SSE.Views.Statusbar.tipZoomFactor": "Powiększenie", + "SSE.Views.Statusbar.tipZoomIn": "Powiększ", + "SSE.Views.Statusbar.tipZoomOut": "Pomniejsz", + "SSE.Views.Statusbar.zoomText": "Powiększenie {0}%", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operacja nie mogła zostać wykonana dla wybranego zakresu komórek.
Wybierz jednolity zakres danych inny niż istniejący i spróbuj ponownie.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operacja nie może zostać zakończona dla wybranego zakresu komórek.
Wybierz zakres, tak aby pierwszy wiersz tabeli znajdował się w tym samym wierszu, a tabela wynikowa pokrywała się z bieżącym.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Nie można zakończyć operacji dla wybranego zakresu komórek.
Wybierz zakres, który nie zawiera innych tabel.", + "SSE.Views.TableOptionsDialog.textCancel": "Anuluj", + "SSE.Views.TableOptionsDialog.txtEmpty": "To pole jest wymagane", + "SSE.Views.TableOptionsDialog.txtFormat": "Nowa tabelę", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "BŁĄD! Niepoprawny zakres komórek", + "SSE.Views.TableOptionsDialog.txtTitle": "Tytuł", + "SSE.Views.TableSettings.deleteColumnText": "Usuń kolumnę", + "SSE.Views.TableSettings.deleteRowText": "Usuń wiersz", + "SSE.Views.TableSettings.deleteTableText": "Usuń tabelę", + "SSE.Views.TableSettings.insertColumnLeftText": "Wstaw kolumnę z lewej", + "SSE.Views.TableSettings.insertColumnRightText": "Wstaw kolumnę z prawej", + "SSE.Views.TableSettings.insertRowAboveText": "Wstaw wiersz powyżej", + "SSE.Views.TableSettings.insertRowBelowText": "Wstaw wiersz poniżej", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Ostrzeżenie", + "SSE.Views.TableSettings.selectColumnText": "Zaznacz całe kolumny", + "SSE.Views.TableSettings.selectDataText": "Zaznacz dane kolumny", + "SSE.Views.TableSettings.selectRowText": "Wybierz wiersz", + "SSE.Views.TableSettings.selectTableText": "Wybierz tabelę", + "SSE.Views.TableSettings.textAdvanced": "Pokaż ustawienia zaawansowane", + "SSE.Views.TableSettings.textBanded": "Na przemian", + "SSE.Views.TableSettings.textCancel": "Anuluj", + "SSE.Views.TableSettings.textColumns": "Kolumny", + "SSE.Views.TableSettings.textConvertRange": "Konwertuj do zakresu", + "SSE.Views.TableSettings.textEdit": "Wiersze i Kolumny", + "SSE.Views.TableSettings.textEmptyTemplate": "Brak szablonów", + "SSE.Views.TableSettings.textExistName": "BŁĄD! Zakres o takiej samej nazwie już istnieje.", + "SSE.Views.TableSettings.textFilter": "Przycisk filtru", + "SSE.Views.TableSettings.textFirst": "Pierwszy", + "SSE.Views.TableSettings.textHeader": "Nagłówek", + "SSE.Views.TableSettings.textInvalidName": "BŁĄD! Błędna nazwa tabeli", + "SSE.Views.TableSettings.textIsLocked": "Ten element jest właśnie edytowany przez innego użytkownika.", + "SSE.Views.TableSettings.textLast": "Ostatni", + "SSE.Views.TableSettings.textLongOperation": "Długa praca", + "SSE.Views.TableSettings.textOK": "OK", + "SSE.Views.TableSettings.textReservedName": "Nazwa, którą próbujesz użyć, jest już wzmiankowana w formułach komórkowych. Proszę użyć innej nazwy.", + "SSE.Views.TableSettings.textResize": "Zmień rozmiar tabeli", + "SSE.Views.TableSettings.textRows": "Wiersze", + "SSE.Views.TableSettings.textSelectData": "Wybierz dane", + "SSE.Views.TableSettings.textTableName": "Nazwa tabeli", + "SSE.Views.TableSettings.textTemplate": "Wybierz z szablonu", + "SSE.Views.TableSettings.textTotal": "Wszystkie", + "SSE.Views.TableSettings.warnLongOperation": "Operacja, którą zamierzasz wykonać może zająć trochę czasu.
Na pewno chcesz kontynuować?", + "SSE.Views.TableSettingsAdvanced.cancelButtonText": "Anuluj", + "SSE.Views.TableSettingsAdvanced.okButtonText": "Ok", + "SSE.Views.TableSettingsAdvanced.textAlt": "Tekst alternatywny", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Opis", + "SSE.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.", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Tytuł", + "SSE.Views.TableSettingsAdvanced.textTitle": "Tabela - zaawansowane ustawienia", + "SSE.Views.TextArtSettings.strBackground": "Kolor tła", + "SSE.Views.TextArtSettings.strColor": "Kolor", + "SSE.Views.TextArtSettings.strFill": "Wypełnij", + "SSE.Views.TextArtSettings.strForeground": "Kolor pierwszoplanowy", + "SSE.Views.TextArtSettings.strPattern": "Wzór", + "SSE.Views.TextArtSettings.strSize": "Rozmiar", + "SSE.Views.TextArtSettings.strStroke": "Obrys", + "SSE.Views.TextArtSettings.strTransparency": "Nieprzezroczystość", + "SSE.Views.TextArtSettings.strType": "Typ", + "SSE.Views.TextArtSettings.textBorderSizeErr": "Wprowadzona wartość jest nieprawidłowa.
Wprowadź wartość w zakresie od 0 do 1584 pt.", + "SSE.Views.TextArtSettings.textColor": "Kolor wypełnienia", + "SSE.Views.TextArtSettings.textDirection": "Kierunek", + "SSE.Views.TextArtSettings.textEmptyPattern": "Brak wzorca", + "SSE.Views.TextArtSettings.textFromFile": "Z pliku", + "SSE.Views.TextArtSettings.textFromUrl": "Z URL", + "SSE.Views.TextArtSettings.textGradient": "Gradient", + "SSE.Views.TextArtSettings.textGradientFill": "Wypełnienie gradientem", + "SSE.Views.TextArtSettings.textImageTexture": "Obraz lub tekstura", + "SSE.Views.TextArtSettings.textLinear": "Liniowy", + "SSE.Views.TextArtSettings.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.TextArtSettings.textNoFill": "Brak wypełnienia", + "SSE.Views.TextArtSettings.textPatternFill": "Wzór", + "SSE.Views.TextArtSettings.textRadial": "Promieniowy", + "SSE.Views.TextArtSettings.textSelectTexture": "Wybierz", + "SSE.Views.TextArtSettings.textStretch": "Rozciągnij", + "SSE.Views.TextArtSettings.textStyle": "Styl", + "SSE.Views.TextArtSettings.textTemplate": "Szablon", + "SSE.Views.TextArtSettings.textTexture": "Z tekstury", + "SSE.Views.TextArtSettings.textTile": "Płytka", + "SSE.Views.TextArtSettings.textTransform": "Przekształcenie", + "SSE.Views.TextArtSettings.txtBrownPaper": "Brązowy papier", + "SSE.Views.TextArtSettings.txtCanvas": "Płótno", + "SSE.Views.TextArtSettings.txtCarton": "Karton", + "SSE.Views.TextArtSettings.txtDarkFabric": "Ciemna tkanina", + "SSE.Views.TextArtSettings.txtGrain": "Ziarno", + "SSE.Views.TextArtSettings.txtGranite": "Granit", + "SSE.Views.TextArtSettings.txtGreyPaper": "Szary papier", + "SSE.Views.TextArtSettings.txtKnit": "Szydełkowanie", + "SSE.Views.TextArtSettings.txtLeather": "Skórzany", + "SSE.Views.TextArtSettings.txtNoBorders": "Brak wiersza", + "SSE.Views.TextArtSettings.txtPapyrus": "Papirus", + "SSE.Views.TextArtSettings.txtWood": "Drewno", + "SSE.Views.Toolbar.capBtnComment": "Komentarz", + "SSE.Views.Toolbar.capInsertChart": "Wykres", + "SSE.Views.Toolbar.capInsertEquation": "Równanie", + "SSE.Views.Toolbar.capInsertHyperlink": "Hiperlink", + "SSE.Views.Toolbar.capInsertImage": "Obraz", + "SSE.Views.Toolbar.capInsertShape": "Kształt", + "SSE.Views.Toolbar.capInsertTable": "Tabela", + "SSE.Views.Toolbar.capInsertText": "Pole tekstowe", + "SSE.Views.Toolbar.mniImageFromFile": "Obraz z pliku", + "SSE.Views.Toolbar.mniImageFromUrl": "Obraz z URL", + "SSE.Views.Toolbar.textAlignBottom": "Wyrównaj do dołu", + "SSE.Views.Toolbar.textAlignCenter": "Wyrównaj do środka", + "SSE.Views.Toolbar.textAlignJust": "Wyjustowany", + "SSE.Views.Toolbar.textAlignLeft": "Wyrównaj do lewej", + "SSE.Views.Toolbar.textAlignMiddle": "Wyrównaj do środka", + "SSE.Views.Toolbar.textAlignRight": "Wyrównaj do prawej", + "SSE.Views.Toolbar.textAlignTop": "Wyrównaj do góry", + "SSE.Views.Toolbar.textAllBorders": "Wszystkie krawędzie", + "SSE.Views.Toolbar.textArea": "Obszar", + "SSE.Views.Toolbar.textBar": "Pasek", + "SSE.Views.Toolbar.textBold": "Pogrubienie", + "SSE.Views.Toolbar.textBordersColor": "Kolor obramowania", + "SSE.Views.Toolbar.textBordersStyle": "Styl obramowania", + "SSE.Views.Toolbar.textBottomBorders": "Dolne krawędzie", + "SSE.Views.Toolbar.textCenterBorders": "Wewnątrz pionowych granic", + "SSE.Views.Toolbar.textCharts": "Wykresy", + "SSE.Views.Toolbar.textClockwise": "Kąt w prawo", + "SSE.Views.Toolbar.textColumn": "Kolumna", + "SSE.Views.Toolbar.textColumnSpark": "Kolumna", + "SSE.Views.Toolbar.textCompactToolbar": "Ukryj pasek narzędzi", + "SSE.Views.Toolbar.textCounterCw": "Kąt w lewo", + "SSE.Views.Toolbar.textDelLeft": "Przesuń komórki w lewo", + "SSE.Views.Toolbar.textDelUp": "Przesuń komórki w górę", + "SSE.Views.Toolbar.textDiagDownBorder": "Ukośna dolna krawędź", + "SSE.Views.Toolbar.textDiagUpBorder": "Ukośna górna krawędź", + "SSE.Views.Toolbar.textEntireCol": "Wstaw kolumnę", + "SSE.Views.Toolbar.textEntireRow": "Cały wiersz", + "SSE.Views.Toolbar.textFreezePanes": "Zablokuj panele", + "SSE.Views.Toolbar.textHideFBar": "Ukryj pasek formuły", + "SSE.Views.Toolbar.textHideGridlines": "Ukryj linie siatki", + "SSE.Views.Toolbar.textHideHeadings": "Ukryj nagłówki", + "SSE.Views.Toolbar.textHideTBar": "Ukryj pasek tutyłu", + "SSE.Views.Toolbar.textHorizontal": "Poziomy tekst", + "SSE.Views.Toolbar.textInsDown": "Przesuń komórki w dół", + "SSE.Views.Toolbar.textInsideBorders": "Wewnątrz granic", + "SSE.Views.Toolbar.textInsRight": "Przesuń komórki w prawo", + "SSE.Views.Toolbar.textItalic": "Kursywa", + "SSE.Views.Toolbar.textLeftBorders": "Lewe krawędzie", + "SSE.Views.Toolbar.textLine": "Wiersz", + "SSE.Views.Toolbar.textLineSpark": "Wiersz", + "SSE.Views.Toolbar.textMiddleBorders": "Wewnątrz poziomych granic", + "SSE.Views.Toolbar.textMoreFormats": "Więcej formatów", + "SSE.Views.Toolbar.textNewColor": "Dodaj nowy niestandardowy kolor", + "SSE.Views.Toolbar.textNoBorders": "Bez krawędzi", + "SSE.Views.Toolbar.textOutBorders": "Krawędzie zewnętrzne", + "SSE.Views.Toolbar.textPie": "Kołowe", + "SSE.Views.Toolbar.textPoint": "XY (Punktowy)", + "SSE.Views.Toolbar.textPrint": "Drukuj", + "SSE.Views.Toolbar.textPrintOptions": "Ustawienia drukowania", + "SSE.Views.Toolbar.textRightBorders": "Prawe krawędzie", + "SSE.Views.Toolbar.textRotateDown": "Obróć tekst w dół", + "SSE.Views.Toolbar.textRotateUp": "Obróć tekst w górę", + "SSE.Views.Toolbar.textSparks": "Sparklines", + "SSE.Views.Toolbar.textStock": "Zbiory", + "SSE.Views.Toolbar.textSurface": "Powierzchnia", + "SSE.Views.Toolbar.textTabFile": "Plik", + "SSE.Views.Toolbar.textTabHome": "Start", + "SSE.Views.Toolbar.textTabInsert": "Wstawić", + "SSE.Views.Toolbar.textTopBorders": "Górne krawędzie", + "SSE.Views.Toolbar.textUnderline": "Podkreśl", + "SSE.Views.Toolbar.textWinLossSpark": "Wygrana/przegrana", + "SSE.Views.Toolbar.textZoom": "Powiększenie", + "SSE.Views.Toolbar.tipAdvSettings": "Zaawansowane ustawienia", + "SSE.Views.Toolbar.tipAlignBottom": "Wyrównaj do dołu", + "SSE.Views.Toolbar.tipAlignCenter": "Wyrównaj do środka", + "SSE.Views.Toolbar.tipAlignJust": "Wyjustowany", + "SSE.Views.Toolbar.tipAlignLeft": "Wyrównaj do lewej", + "SSE.Views.Toolbar.tipAlignMiddle": "Wyrównaj do środka", + "SSE.Views.Toolbar.tipAlignRight": "Wyrównaj do prawej", + "SSE.Views.Toolbar.tipAlignTop": "Wyrównaj do góry", + "SSE.Views.Toolbar.tipAutofilter": "Sortuj i filtruj", + "SSE.Views.Toolbar.tipBack": "Powrót", + "SSE.Views.Toolbar.tipBorders": "Obramowania", + "SSE.Views.Toolbar.tipCellStyle": "Styl komórki", + "SSE.Views.Toolbar.tipClearStyle": "Wyczyść", + "SSE.Views.Toolbar.tipColorSchemas": "Zmień schemat kolorów", + "SSE.Views.Toolbar.tipCopy": "Kopiuj", + "SSE.Views.Toolbar.tipCopyStyle": "Kopiuj styl", + "SSE.Views.Toolbar.tipDecDecimal": "Zmniejsz ilość cyfr po przecinku", + "SSE.Views.Toolbar.tipDecFont": "Zmniejsz rozmiar czcionki", + "SSE.Views.Toolbar.tipDeleteOpt": "Usuń komórki", + "SSE.Views.Toolbar.tipDigStyleAccounting": "Styl rachunkowy", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Styl waluty", + "SSE.Views.Toolbar.tipDigStylePercent": "Styl procentowy", + "SSE.Views.Toolbar.tipEditChart": "Edytuj wykres", + "SSE.Views.Toolbar.tipFontColor": "Kolor czcionki", + "SSE.Views.Toolbar.tipFontName": "Czcionka", + "SSE.Views.Toolbar.tipFontSize": "Rozmiar czcionki", + "SSE.Views.Toolbar.tipHAligh": "Wyrównaj horyzontalnie", + "SSE.Views.Toolbar.tipIncDecimal": "Zwiększ ilość cyfr po przecinku", + "SSE.Views.Toolbar.tipIncFont": "Zwiększ rozmiar czcionki", + "SSE.Views.Toolbar.tipInsertChart": "Wstaw wykres", + "SSE.Views.Toolbar.tipInsertChartSpark": "Wstaw wykres", + "SSE.Views.Toolbar.tipInsertEquation": "Wstaw równanie", + "SSE.Views.Toolbar.tipInsertHyperlink": "Dodaj hiperlink", + "SSE.Views.Toolbar.tipInsertImage": "Wstaw obraz", + "SSE.Views.Toolbar.tipInsertOpt": "Wstaw komórki", + "SSE.Views.Toolbar.tipInsertShape": "Wstaw kształt", + "SSE.Views.Toolbar.tipInsertText": "Wstaw tekst", + "SSE.Views.Toolbar.tipInsertTextart": "Wstaw tekst", + "SSE.Views.Toolbar.tipMerge": "Scal", + "SSE.Views.Toolbar.tipNumFormat": "Format numeru", + "SSE.Views.Toolbar.tipPaste": "Wklej", + "SSE.Views.Toolbar.tipPrColor": "Kolor tła", + "SSE.Views.Toolbar.tipPrint": "Drukuj", + "SSE.Views.Toolbar.tipRedo": "Ponów", + "SSE.Views.Toolbar.tipSave": "Zapisz", + "SSE.Views.Toolbar.tipSaveCoauth": "Zapisz swoje zmiany, aby inni użytkownicy mogli je zobaczyć.", + "SSE.Views.Toolbar.tipSynchronize": "Dokument został zmieniony przez innego użytkownika. Kliknij, aby zapisać swoje zmiany i ponownie załadować zmiany.", + "SSE.Views.Toolbar.tipTextOrientation": "Orientacja", + "SSE.Views.Toolbar.tipUndo": "Cofnij", + "SSE.Views.Toolbar.tipVAligh": "Wyrównaj wertykalnie", + "SSE.Views.Toolbar.tipViewSettings": "Wyświetl ustawienia", + "SSE.Views.Toolbar.tipWrap": "Zawijaj tekst", + "SSE.Views.Toolbar.txtAccounting": "Rachunkowy", + "SSE.Views.Toolbar.txtAdditional": "Inne funkcje", + "SSE.Views.Toolbar.txtAscending": "Rosnąco", + "SSE.Views.Toolbar.txtClearAll": "Wszystko", + "SSE.Views.Toolbar.txtClearComments": "Komentarze", + "SSE.Views.Toolbar.txtClearFilter": "Wyczyść filtr", + "SSE.Views.Toolbar.txtClearFormat": "Formatowanie", + "SSE.Views.Toolbar.txtClearFormula": "Funkcja", + "SSE.Views.Toolbar.txtClearHyper": "Hiperlinki", + "SSE.Views.Toolbar.txtClearText": "Tekst", + "SSE.Views.Toolbar.txtCurrency": "Waluta", + "SSE.Views.Toolbar.txtCustom": "Niestandardowy", + "SSE.Views.Toolbar.txtDate": "Data", + "SSE.Views.Toolbar.txtDateTime": "Data i czas", + "SSE.Views.Toolbar.txtDescending": "Malejąco", + "SSE.Views.Toolbar.txtDollar": "$ Dolar", + "SSE.Views.Toolbar.txtEuro": "€ Euro", + "SSE.Views.Toolbar.txtExp": "Wykładniczy", + "SSE.Views.Toolbar.txtFilter": "Filtr", + "SSE.Views.Toolbar.txtFormula": "Wstaw funkcję", + "SSE.Views.Toolbar.txtFraction": "Ułamek", + "SSE.Views.Toolbar.txtFranc": "CHF frank szwajcarski", + "SSE.Views.Toolbar.txtGeneral": "Ogólne", + "SSE.Views.Toolbar.txtInteger": "Liczba całkowita", + "SSE.Views.Toolbar.txtManageRange": "Menadżer zdefiniowanych zakresów", + "SSE.Views.Toolbar.txtMergeAcross": "Scal", + "SSE.Views.Toolbar.txtMergeCells": "Scal komórki", + "SSE.Views.Toolbar.txtMergeCenter": "Scal i wyśrodkuj", + "SSE.Views.Toolbar.txtNamedRange": "Określone zakresy", + "SSE.Views.Toolbar.txtNewRange": "Zdefiniuj zakres", + "SSE.Views.Toolbar.txtNoBorders": "Bez krawędzi", + "SSE.Views.Toolbar.txtNumber": "Numer", + "SSE.Views.Toolbar.txtPasteRange": "Wklej zakres", + "SSE.Views.Toolbar.txtPercentage": "Procentowo", + "SSE.Views.Toolbar.txtPound": "£ Funt", + "SSE.Views.Toolbar.txtRouble": "₽ Rubel", + "SSE.Views.Toolbar.txtScheme1": "Biuro", + "SSE.Views.Toolbar.txtScheme10": "Mediana", + "SSE.Views.Toolbar.txtScheme11": "Metro", + "SSE.Views.Toolbar.txtScheme12": "Moduł", + "SSE.Views.Toolbar.txtScheme13": "Zasobny", + "SSE.Views.Toolbar.txtScheme14": "Oriel", + "SSE.Views.Toolbar.txtScheme15": "Początek", + "SSE.Views.Toolbar.txtScheme16": "Papier", + "SSE.Views.Toolbar.txtScheme17": "Przesilenie", + "SSE.Views.Toolbar.txtScheme18": "Techniczny", + "SSE.Views.Toolbar.txtScheme19": "Trek", + "SSE.Views.Toolbar.txtScheme2": "Skala szarości", + "SSE.Views.Toolbar.txtScheme20": "Miejski", + "SSE.Views.Toolbar.txtScheme21": "Rozmach", + "SSE.Views.Toolbar.txtScheme3": "Apex", + "SSE.Views.Toolbar.txtScheme4": "Aspekt", + "SSE.Views.Toolbar.txtScheme5": "Obywatelski", + "SSE.Views.Toolbar.txtScheme6": "Zbiegowisko", + "SSE.Views.Toolbar.txtScheme7": "Kapitał", + "SSE.Views.Toolbar.txtScheme8": "Przepływ", + "SSE.Views.Toolbar.txtScheme9": "Odlewnia", + "SSE.Views.Toolbar.txtScientific": "Naukowy", + "SSE.Views.Toolbar.txtSearch": "Szukaj", + "SSE.Views.Toolbar.txtSort": "Sortuj", + "SSE.Views.Toolbar.txtSortAZ": "Sortuj rosnąco", + "SSE.Views.Toolbar.txtSortZA": "Sortuj malejąco", + "SSE.Views.Toolbar.txtSpecial": "Specialny", + "SSE.Views.Toolbar.txtTableTemplate": "Formatuj jako szablon tabeli", + "SSE.Views.Toolbar.txtText": "Tekst", + "SSE.Views.Toolbar.txtTime": "Czas", + "SSE.Views.Toolbar.txtUnmerge": "Niescalone komórki", + "SSE.Views.Toolbar.txtYen": "¥ Jena", + "SSE.Views.Top10FilterDialog.cancelButtonText": "Anuluj", + "SSE.Views.Top10FilterDialog.okButtonText": "OK", + "SSE.Views.Top10FilterDialog.textType": "Pokaż", + "SSE.Views.Top10FilterDialog.txtBottom": "Dół", + "SSE.Views.Top10FilterDialog.txtItems": "Pozycja", + "SSE.Views.Top10FilterDialog.txtPercent": "Procent", + "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 automatyczne filtrowanie", + "SSE.Views.Top10FilterDialog.txtTop": "Góra" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 309b06ab2..a2144395a 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -95,6 +95,7 @@ "Common.Views.OpenDialog.okButtonText": "OK", "Common.Views.OpenDialog.txtDelimiter": "Разделитель", "Common.Views.OpenDialog.txtEncoding": "Кодировка ", + "Common.Views.OpenDialog.txtIncorrectPwd": "Указан неверный пароль.", "Common.Views.OpenDialog.txtOther": "Другое", "Common.Views.OpenDialog.txtPassword": "Пароль", "Common.Views.OpenDialog.txtSpace": "Пробел", diff --git a/apps/spreadsheeteditor/main/locale/sk.json b/apps/spreadsheeteditor/main/locale/sk.json index 844a154af..075255549 100644 --- a/apps/spreadsheeteditor/main/locale/sk.json +++ b/apps/spreadsheeteditor/main/locale/sk.json @@ -2,24 +2,24 @@ "cancelButtonText": "Zrušiť", "Common.Controllers.Chat.notcriticalErrorTitle": "Upozornenie", "Common.Controllers.Chat.textEnterMessage": "Zadať svoju správu tu", - "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.
Iba dvaja používatelia dokážu spolueditovať dokument súčasne.
Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.
Read more\n\n\n\n", + "Common.Controllers.Chat.textUserLimit": "Používate ONLYOFFICE vydanie zadarmo.
Iba dvaja používatelia dokážu spolueditovať dokument súčasne.
Chcete viac? Zvážte kúpu ONLYOFFICE Podnikové vydanie.
Read more", "Common.UI.ComboBorderSize.txtNoBorders": "Bez orámovania", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Bez orámovania", - "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly\n\n", + "Common.UI.ComboDataView.emptyComboText": "Žiadne štýly", "Common.UI.ExtendedColorDialog.addButtonText": "Pridať", "Common.UI.ExtendedColorDialog.cancelButtonText": "Zrušiť", "Common.UI.ExtendedColorDialog.textCurrent": "Aktuálny", - "Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.\n", + "Common.UI.ExtendedColorDialog.textHexErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 000000 a FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nový", - "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.\n\n\n\n", + "Common.UI.ExtendedColorDialog.textRGBErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 0 a 255.", "Common.UI.HSBColorPicker.textNoColor": "Bez farby", "Common.UI.SearchDialog.textHighlight": "Zvýrazniť výsledky", "Common.UI.SearchDialog.textMatchCase": "Rozlišovať veľkosť písmen", - "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text\n\n", + "Common.UI.SearchDialog.textReplaceDef": "Zadať náhradný text", "Common.UI.SearchDialog.textSearchStart": "Zadať svoj text tu", "Common.UI.SearchDialog.textTitle": "Nájsť a nahradiť", "Common.UI.SearchDialog.textTitle2": "Nájsť", - "Common.UI.SearchDialog.textWholeWords": "Len celé slová\n\n", + "Common.UI.SearchDialog.textWholeWords": "Len celé slová", "Common.UI.SearchDialog.txtBtnHideReplace": "Skryť náhradu", "Common.UI.SearchDialog.txtBtnReplace": "Nahradiť", "Common.UI.SearchDialog.txtBtnReplaceAll": "Nahradiť všetko", @@ -42,8 +42,8 @@ "Common.Views.About.txtAddress": "adresa:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Lotyšsko, EU, LV-1021", "Common.Views.About.txtLicensee": "DRŽITEĽ LICENCIE", - "Common.Views.About.txtLicensor": "UDEĽOVATEĽ LICENCIE\n", - "Common.Views.About.txtMail": "e-mail: \n", + "Common.Views.About.txtLicensor": "UDEĽOVATEĽ LICENCIE", + "Common.Views.About.txtMail": "e-mail: ", "Common.Views.About.txtPoweredBy": "Poháňaný ", "Common.Views.About.txtTel": "tel.:", "Common.Views.About.txtVersion": "Verzia", @@ -73,7 +73,7 @@ "Common.Views.CopyWarningDialog.textToPaste": "pre vloženie", "Common.Views.DocumentAccessDialog.textLoading": "Načítava.....", "Common.Views.DocumentAccessDialog.textTitle": "Nastavenie zdieľania", - "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.\n\n", + "Common.Views.Header.labelCoUsersDescr": "Dokument v súčasnosti upravuje niekoľko používateľov.", "Common.Views.Header.textBack": "Prejsť do Dokumentov", "Common.Views.Header.textSaveBegin": "Ukladanie...", "Common.Views.Header.textSaveChanged": "Modifikovaný", @@ -83,13 +83,13 @@ "Common.Views.Header.tipDownload": "Stiahnuť súbor", "Common.Views.Header.tipGoEdit": "Editovať aktuálny súbor", "Common.Views.Header.tipPrint": "Vytlačiť súbor", - "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom\n\n", + "Common.Views.Header.tipViewUsers": "Zobraziť používateľov a spravovať prístupové práva k dokumentom", "Common.Views.Header.txtAccessRights": "Zmeniť prístupové práva", "Common.Views.Header.txtRename": "Premenovať", "Common.Views.ImageFromUrlDialog.cancelButtonText": "Zrušiť", "Common.Views.ImageFromUrlDialog.okButtonText": "OK", "Common.Views.ImageFromUrlDialog.textUrl": "Vložte URL adresu obrázka:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Toto pole sa vyžaduje", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "Common.Views.OpenDialog.cancelButtonText": "Zrušiť", "Common.Views.OpenDialog.okButtonText": "OK", @@ -110,25 +110,25 @@ "Common.Views.RenameDialog.cancelButtonText": "Zrušiť", "Common.Views.RenameDialog.okButtonText": "OK", "Common.Views.RenameDialog.textName": "Názov súboru", - "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:\n\n", + "Common.Views.RenameDialog.txtInvalidName": "Názov súboru nemôže obsahovať žiadny z nasledujúcich znakov:", "SSE.Controllers.DocumentHolder.alignmentText": "Zarovnanie", "SSE.Controllers.DocumentHolder.centerText": "Stred", "SSE.Controllers.DocumentHolder.deleteColumnText": "Odstrániť stĺpec", "SSE.Controllers.DocumentHolder.deleteRowText": "Odstrániť riadok", "SSE.Controllers.DocumentHolder.deleteText": "Vymazať", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Prepojenie na odkaz neexistuje. Opravte prosím odkaz alebo ho odstráňte.\n\n", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "Prepojenie na odkaz neexistuje. Opravte prosím odkaz alebo ho odstráňte.", "SSE.Controllers.DocumentHolder.guestText": "Návštevník", - "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo\n\n", - "SSE.Controllers.DocumentHolder.insertColumnRightText": "Stĺpec vpravo\n\n", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Stĺpec vpravo", "SSE.Controllers.DocumentHolder.insertRowAboveText": "Riadok nad", "SSE.Controllers.DocumentHolder.insertRowBelowText": "Riadok pod", "SSE.Controllers.DocumentHolder.insertText": "Vložiť", "SSE.Controllers.DocumentHolder.leftText": "Vľavo", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Upozornenie", "SSE.Controllers.DocumentHolder.rightText": "Vpravo", - "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Šírka stĺpca {0} symboly ({1} pixely)\n\n", - "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Výška riadku {0} bodov ({1} pixelov)\n", - "SSE.Controllers.DocumentHolder.textCtrlClick": "Stlačte CTRL a kliknite na odkaz\n\n", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Šírka stĺpca {0} symboly ({1} pixely)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Výška riadku {0} bodov ({1} pixelov)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Stlačte CTRL a kliknite na odkaz", "SSE.Controllers.DocumentHolder.textInsertLeft": "Vložiť vľavo", "SSE.Controllers.DocumentHolder.textInsertTop": "Vložiť hore", "SSE.Controllers.DocumentHolder.textSym": "sym", @@ -136,29 +136,29 @@ "SSE.Controllers.DocumentHolder.txtAddBottom": "Pridať spodné orámovanie", "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Pridať lištu zlomkov", "SSE.Controllers.DocumentHolder.txtAddHor": "Pridať vodorovnú čiaru", - "SSE.Controllers.DocumentHolder.txtAddLB": "Pridať ľavý spodný riadok\n\n", + "SSE.Controllers.DocumentHolder.txtAddLB": "Pridať ľavý spodný riadok", "SSE.Controllers.DocumentHolder.txtAddLeft": "Pridať ľavé orámovanie", - "SSE.Controllers.DocumentHolder.txtAddLT": "Pridať ľavý horný riadok\n", + "SSE.Controllers.DocumentHolder.txtAddLT": "Pridať ľavý horný riadok", "SSE.Controllers.DocumentHolder.txtAddRight": "Pridať pravé orámovanie", "SSE.Controllers.DocumentHolder.txtAddTop": "Pridať horné orámovanie", "SSE.Controllers.DocumentHolder.txtAddVer": "Pridať zvislú čiaru", - "SSE.Controllers.DocumentHolder.txtAlignToChar": "Zarovnať na znak\n\n", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Zarovnať na znak", "SSE.Controllers.DocumentHolder.txtBorderProps": "Vlastnosti orámovania", "SSE.Controllers.DocumentHolder.txtBottom": "Dole", - "SSE.Controllers.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov\n\n", - "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu\n\n", - "SSE.Controllers.DocumentHolder.txtDeleteArg": "Odstrániť obsah\n\n", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Zarovnanie stĺpcov", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Zmenšiť veľkosť obsahu", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Odstrániť obsah", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Odstrániť manuálny rozdeľovač", - "SSE.Controllers.DocumentHolder.txtDeleteChars": "Odstrániť uzatváracie znaky\n\n", - "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Odstrániť uzatváracie znaky a oddeľovače\n\n", - "SSE.Controllers.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu\n\n", - "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak\n\n", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Odstrániť uzatváracie znaky", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Odstrániť uzatváracie znaky a oddeľovače", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Odstrániť rovnicu", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Odstrániť znak", "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Odstrániť odmocninu", "SSE.Controllers.DocumentHolder.txtExpand": "Rozbaliť a zoradiť", - "SSE.Controllers.DocumentHolder.txtExpandSort": "Údaje vedľa výberu nebudú zoradené. Chcete rozšíriť výber tak, aby zahŕňal priľahlé údaje, alebo pokračovať v triedení len vybraných buniek?\n\n", - "SSE.Controllers.DocumentHolder.txtFractionLinear": "Zmeniť na lineárny zlomok\n\n", - "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Zmeniť na skosený zlomok\n\n", - "SSE.Controllers.DocumentHolder.txtFractionStacked": "Zmeniť na zložený zlomok\n\n", + "SSE.Controllers.DocumentHolder.txtExpandSort": "Údaje vedľa výberu nebudú zoradené. Chcete rozšíriť výber tak, aby zahŕňal priľahlé údaje, alebo pokračovať v triedení len vybraných buniek?", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Zmeniť na lineárny zlomok", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Zmeniť na skosený zlomok", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Zmeniť na zložený zlomok", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Zadať nad text", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Zadať pod text", "SSE.Controllers.DocumentHolder.txtHeight": "Výška", @@ -167,43 +167,43 @@ "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Skryť konečnú/záverečnú zátvorku", "SSE.Controllers.DocumentHolder.txtHideDegree": "Skryť stupeň", "SSE.Controllers.DocumentHolder.txtHideHor": "Skryť vodorovnú čiaru", - "SSE.Controllers.DocumentHolder.txtHideLB": "Skryť ľavý dolný riadok\n\n\n", + "SSE.Controllers.DocumentHolder.txtHideLB": "Skryť ľavý dolný riadok", "SSE.Controllers.DocumentHolder.txtHideLeft": "Skryť ľavé orámovanie", - "SSE.Controllers.DocumentHolder.txtHideLT": "Skryť ľavý horný riadok\n\n", + "SSE.Controllers.DocumentHolder.txtHideLT": "Skryť ľavý horný riadok", "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Skryť začiatočnú/úvodnú zátvorku", - "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Skryť vlastníka/náhradu textu\n", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Skryť vlastníka/náhradu textu", "SSE.Controllers.DocumentHolder.txtHideRight": "Skryť pravé orámovanie", "SSE.Controllers.DocumentHolder.txtHideTop": "Skryť horné orámovanie", "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Skryť horné ohraničenie", - "SSE.Controllers.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru\n\n", + "SSE.Controllers.DocumentHolder.txtHideVer": "Skryť vertikálnu čiaru", "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Zväčšiť veľkosť obsahu/argumentu", - "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po\n\n", - "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred\n", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Vložiť argument/obsah po", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Vložiť argument/obsah pred", "SSE.Controllers.DocumentHolder.txtInsertBreak": "Vložiť manuálny rozdeľovač", "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Vložiť rovnicu po", "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Vložiť rovnicu pred", - "SSE.Controllers.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia\n\n", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Zmeniť polohu obmedzenia", "SSE.Controllers.DocumentHolder.txtLimitOver": "Limita nad textom", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limita pod textom", - "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu\n\n", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Prispôsobenie zátvoriek k výške obsahu", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Zarovnanie matice", "SSE.Controllers.DocumentHolder.txtNoChoices": "Neexistujú žiadne možnosti na vyplnenie bunky.
Len hodnoty textu zo stĺpca môžu byť vybrané na výmenu.", "SSE.Controllers.DocumentHolder.txtOverbar": "Čiara nad textom", "SSE.Controllers.DocumentHolder.txtPaste": "Vložiť", - "SSE.Controllers.DocumentHolder.txtPasteBorders": "Vzorec bez hraníc\n\n", - "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Vzorec a šírka stĺpca\n\n", - "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Cieľové formátovanie\n\n", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Vzorec bez hraníc", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Vzorec a šírka stĺpca", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Cieľové formátovanie", "SSE.Controllers.DocumentHolder.txtPasteFormat": "Vložiť len formátovanie", - "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Vzorec a formát čísel\n\n", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Vzorec a formát čísel", "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Vložiť iba vzorec", - "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Vzorec a všetky formátovania\n\n", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Vzorec a všetky formátovania", "SSE.Controllers.DocumentHolder.txtPasteLink": "Vložiť odkaz", - "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Prepojený obrázok\n\n", - "SSE.Controllers.DocumentHolder.txtPasteMerge": "Zlúčiť podmienené formátovanie\n\n", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Prepojený obrázok", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Zlúčiť podmienené formátovanie", "SSE.Controllers.DocumentHolder.txtPastePicture": "Obrázok", - "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formátovanie zdroja\n\n", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Formátovanie zdroja", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Premiestňovať", - "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Hodnota + všetky formátovania\n", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Hodnota + všetky formátovania", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Hodnota + formát čísla", "SSE.Controllers.DocumentHolder.txtPasteValues": "Vložiť iba hodnotu", "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Odstrániť zlomok", @@ -213,15 +213,15 @@ "SSE.Controllers.DocumentHolder.txtRemScripts": "Odstrániť skripty", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Odstrániť dolný index", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Odstrániť horný index", - "SSE.Controllers.DocumentHolder.txtRowHeight": "Výška riadku\n\n", - "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Zápisy za textom\n\n", - "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Zápisy pred textom\n", - "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Zobraziť dolnú hranicu\n\n", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Výška riadku", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Zápisy za textom", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Zápisy pred textom", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Zobraziť dolnú hranicu", "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Zobraziť konečné zátvorky", - "SSE.Controllers.DocumentHolder.txtShowDegree": "Zobraziť stupeň\n\n", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Zobraziť stupeň", "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Zobraziť začiatočné zátvorky", "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Zobraziť vlastníka", - "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu\n", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Zobraziť hornú hranicu", "SSE.Controllers.DocumentHolder.txtSorting": "Zoraďovanie", "SSE.Controllers.DocumentHolder.txtSortSelected": "Zoradiť vybrané", "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Zložená zátvorka", @@ -229,13 +229,13 @@ "SSE.Controllers.DocumentHolder.txtUnderbar": "Čiara pod textom", "SSE.Controllers.DocumentHolder.txtWidth": "Šírka", "SSE.Controllers.LeftMenu.newDocumentTitle": "Nepomenovaný zošit", - "SSE.Controllers.LeftMenu.textByColumns": "Podľa stĺpcov\n\n", + "SSE.Controllers.LeftMenu.textByColumns": "Podľa stĺpcov", "SSE.Controllers.LeftMenu.textByRows": "Podľa riadkov", "SSE.Controllers.LeftMenu.textFormulas": "Vzorce", - "SSE.Controllers.LeftMenu.textItemEntireCell": "Celý obsah buniek\n\n", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Celý obsah buniek", "SSE.Controllers.LeftMenu.textLookin": "Prezrieť ", "SSE.Controllers.LeftMenu.textNoTextFound": "Dáta, ktoré ste hľadali, sa nenašli. Prosím, upravte možnosti vyhľadávania.", - "SSE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.\n\n", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "Nahradenie bolo uskutočnené. {0} výskytov bolo preskočených.", "SSE.Controllers.LeftMenu.textReplaceSuccess": "Vyhľadávanie bolo uskutočnené. Nahradené udalosti: {0}", "SSE.Controllers.LeftMenu.textSearch": "Hľadať", "SSE.Controllers.LeftMenu.textSheet": "List", @@ -243,64 +243,64 @@ "SSE.Controllers.LeftMenu.textWarning": "Upozornenie", "SSE.Controllers.LeftMenu.textWithin": "V rámci", "SSE.Controllers.LeftMenu.textWorkbook": "Zošit", - "SSE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?\n\n", - "SSE.Controllers.Main.confirmMoveCellRange": "Rozsah cieľových buniek môže obsahovať údaje. Pokračovať v operácii?\n\n", - "SSE.Controllers.Main.confirmPutMergeRange": "Zdrojové dáta obsahovali zlúčené bunky.
Predtým, ako boli vložené do tabuľky, boli rozpojené.\n\n", - "SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", + "SSE.Controllers.Main.confirmMoveCellRange": "Rozsah cieľových buniek môže obsahovať údaje. Pokračovať v operácii?", + "SSE.Controllers.Main.confirmPutMergeRange": "Zdrojové dáta obsahovali zlúčené bunky.
Predtým, ako boli vložené do tabuľky, boli rozpojené.", + "SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", "SSE.Controllers.Main.criticalErrorExtText": "Stlačte \"OK\" pre návrat do zoznamu dokumentov.", "SSE.Controllers.Main.criticalErrorTitle": "Chyba", - "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek\n\n", + "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek", "SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", - "SSE.Controllers.Main.downloadTextText": "Načítavanie tabuľky...\n\n", - "SSE.Controllers.Main.downloadTitleText": "Načítavanie tabuľky\n\n", - "SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", + "SSE.Controllers.Main.downloadTextText": "Načítavanie tabuľky...", + "SSE.Controllers.Main.downloadTitleText": "Načítavanie tabuľky", + "SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorArgsRange": "Chyba v zadanom vzorci.
Používa sa nesprávny rozsah argumentov.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.\n\n", + "SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operácia nemôže byť vykonaná pre vybrané bunky, pretože nemôžete presunúť časť tabuľky.
Vyberte iný rozsah údajov tak, aby sa celá tabuľka posunula a skúste to znova.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.\n\n", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operáciu nemožno vykonať, pretože oblasť obsahuje filtrované bunky.
Odkryte filtrované prvky a skúste to znova.", "SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.\n\n", - "SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu\n\n\n\n\n\n", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
Vyberte jeden rozsah a skúste to znova.\n\n", - "SSE.Controllers.Main.errorCountArg": "Chyba v zadanom vzorci.
Používa sa nesprávny počet argumentov.\n\n\n", - "SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadanom vzorci.
Počet argumentov je prekročený.\n\n\n", - "SSE.Controllers.Main.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
, keďže niektoré z nich sú práve editované.\n\n", - "SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. \n\n", - "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", + "SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
Vyberte jeden rozsah a skúste to znova.", + "SSE.Controllers.Main.errorCountArg": "Chyba v zadanom vzorci.
Používa sa nesprávny počet argumentov.", + "SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadanom vzorci.
Počet argumentov je prekročený.", + "SSE.Controllers.Main.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
, keďže niektoré z nich sú práve editované.", + "SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", + "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "SSE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "SSE.Controllers.Main.errorFileRequest": "Externá chyba.
Chyba požiadavky súboru. Ak chyba pretrváva, kontaktujte podporu.", "SSE.Controllers.Main.errorFileVKey": "Externá chyba.
Nesprávny bezpečnostný kľúč. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
Všetky zlúčené bunky musia mať rovnakú veľkosť.\n\n\n", + "SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
Všetky zlúčené bunky musia mať rovnakú veľkosť.", "SSE.Controllers.Main.errorFormulaName": "Chyba v zadanom vzorci.
Používa sa nesprávny názov vzorca.", "SSE.Controllers.Main.errorFormulaParsing": "Interná chyba pri analýze vzorca.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.
Skontrolujte prosím údaje a skúste to znova.\n\n", - "SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.\n\n", - "SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n", - "SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.
Skontrolujte prosím údaje a skúste to znova.", + "SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.", + "SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "SSE.Controllers.Main.errorLockedAll": "Operáciu nemožno vykonať, pretože list bol zamknutý iným používateľom.", "SSE.Controllers.Main.errorLockedCellPivot": "Nemôžete meniť údaje v kontingenčnej tabuľke.", "SSE.Controllers.Main.errorLockedWorksheetRename": "List nemôže byť momentálne premenovaný, pretože je premenovaný iným používateľom", - "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky\n\n", - "SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
povolený počet znakov a bola odstránená.\n\n", - "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.\n\n", - "SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.
Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.\n\n", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.
Toto obmedzenie bude odstránené v najbližších vydaniach.\n\n", + "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky", + "SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
povolený počet znakov a bola odstránená.", + "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.
Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.
Toto obmedzenie bude odstránené v najbližších vydaniach.", "SSE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo", - "SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n", - "SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.\n\n", - "SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.\n\n", - "SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.\n\n", - "SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", - "SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", - "SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. \n\n", + "SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorUnexpectedGuid": "Externá chyba.
Neočakávaná GUID. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n", - "SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n", - "SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený\n\n", + "SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", "SSE.Controllers.Main.errorViewerDisconnect": "Spojenie so serverom je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.
Používa sa nesprávny počet zátvoriek.\n\n", + "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.
Používa sa nesprávny počet zátvoriek.", "SSE.Controllers.Main.errorWrongOperator": "Chyba v zadanom vzorci. Používa sa nesprávny operátor.
Prosím, opravte chybu.", "SSE.Controllers.Main.leavePageText": "V tejto tabuľke máte neuložené zmeny. Kliknite na položku 'Zostať na tejto stránke' a následne na položku 'Uložiť' aby ste uložili zmeny. Kliknutím na položku 'Opustiť túto stránku' odstránite všetky neuložené zmeny.", "SSE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", @@ -310,57 +310,57 @@ "SSE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", "SSE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "SSE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n", + "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", "SSE.Controllers.Main.loadingDocumentTitleText": "Načítanie zošitu", "SSE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", "SSE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", "SSE.Controllers.Main.openTextText": "Otváranie zošitu...", "SSE.Controllers.Main.openTitleText": "Otváranie zošitu", - "SSE.Controllers.Main.pastInMergeAreaError": "Nie je možné zmeniť časť zlúčenej bunky\n\n", + "SSE.Controllers.Main.pastInMergeAreaError": "Nie je možné zmeniť časť zlúčenej bunky", "SSE.Controllers.Main.printTextText": "Tlač zošitu...", "SSE.Controllers.Main.printTitleText": "Tlač zošitu", "SSE.Controllers.Main.reloadButtonText": "Obnoviť stránku", - "SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.\n\n", + "SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", "SSE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", "SSE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "SSE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n", - "SSE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n", + "SSE.Controllers.Main.savePreparingText": "Príprava na uloženie", + "SSE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", "SSE.Controllers.Main.saveTextText": "Ukladanie zošitu...", "SSE.Controllers.Main.saveTitleText": "Ukladanie zošitu", "SSE.Controllers.Main.textAnonymous": "Anonymný", "SSE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", - "SSE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip\n\n", + "SSE.Controllers.Main.textCloseTip": "Kliknutím zavrite tip", "SSE.Controllers.Main.textConfirm": "Potvrdenie", - "SSE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n", + "SSE.Controllers.Main.textContactUs": "Kontaktujte predajcu", "SSE.Controllers.Main.textLoadingDocument": "Načítanie zošitu", "SSE.Controllers.Main.textNo": "Nie", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n", - "SSE.Controllers.Main.textPleaseWait": "Operácia môže trvať dlhšie, než sa očakávalo. Prosím čakajte...\n\n", - "SSE.Controllers.Main.textRecalcFormulas": "Výpočet vzorcov...\n\n", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom", + "SSE.Controllers.Main.textPleaseWait": "Operácia môže trvať dlhšie, než sa očakávalo. Prosím čakajte...", + "SSE.Controllers.Main.textRecalcFormulas": "Výpočet vzorcov...", "SSE.Controllers.Main.textShape": "Tvar", - "SSE.Controllers.Main.textStrict": "Prísny režim\n\n", + "SSE.Controllers.Main.textStrict": "Prísny režim", "SSE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali Vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", "SSE.Controllers.Main.textYes": "Áno", - "SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n", - "SSE.Controllers.Main.titleRecalcFormulas": "Výpočet...\n\n", - "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n", + "SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", + "SSE.Controllers.Main.titleRecalcFormulas": "Výpočet...", + "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", "SSE.Controllers.Main.txtAccent": "Akcent", "SSE.Controllers.Main.txtArt": "Váš text tu", - "SSE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n", + "SSE.Controllers.Main.txtBasicShapes": "Základné tvary", "SSE.Controllers.Main.txtButtons": "Tlačidlá", "SSE.Controllers.Main.txtCallouts": "Popisky obrázku", "SSE.Controllers.Main.txtCharts": "Grafy", "SSE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...\n\n", + "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav...", "SSE.Controllers.Main.txtFiguredArrows": "Šipky", "SSE.Controllers.Main.txtLines": "Čiary", "SSE.Controllers.Main.txtMath": "Matematika", "SSE.Controllers.Main.txtRectangles": "Obdĺžniky", "SSE.Controllers.Main.txtSeries": "Rady", - "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n", + "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", "SSE.Controllers.Main.txtStyle_Bad": "Zlý/chybný", "SSE.Controllers.Main.txtStyle_Calculation": "Kalkulácia", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Skontrolovať bunku\n\n", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Skontrolovať bunku", "SSE.Controllers.Main.txtStyle_Comma": "Čiarka", "SSE.Controllers.Main.txtStyle_Currency": "Mena", "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Vysvetľujúci text", @@ -369,7 +369,7 @@ "SSE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", "SSE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", "SSE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4", - "SSE.Controllers.Main.txtStyle_Input": "Vstup/vstupná jednotka\n", + "SSE.Controllers.Main.txtStyle_Input": "Vstup/vstupná jednotka", "SSE.Controllers.Main.txtStyle_Linked_Cell": "Spojená bunka", "SSE.Controllers.Main.txtStyle_Neutral": "Neutrálny", "SSE.Controllers.Main.txtStyle_Normal": "Normálny", @@ -379,35 +379,35 @@ "SSE.Controllers.Main.txtStyle_Title": "Názov", "SSE.Controllers.Main.txtStyle_Total": "Celkovo", "SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text", - "SSE.Controllers.Main.txtXAxis": "Os X\n\n", - "SSE.Controllers.Main.txtYAxis": "Os Y\n\n", - "SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.\n\n", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.\n\n", - "SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n", + "SSE.Controllers.Main.txtXAxis": "Os X", + "SSE.Controllers.Main.txtYAxis": "Os Y", + "SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", + "SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", "SSE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.", "SSE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "SSE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "SSE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.\n\n", + "SSE.Controllers.Main.warnBrowserIE9": "Aplikácia má na IE9 slabé schopnosti. Použite IE10 alebo vyššie.", "SSE.Controllers.Main.warnBrowserZoom": "Súčasné nastavenie priblíženia nie je plne podporované prehliadačom. Obnovte štandardné priblíženie stlačením klávesov Ctrl+0.", - "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n", - "SSE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n", + "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "SSE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.", "SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "SSE.Controllers.Print.strAllSheets": "Všetky listy", "SSE.Controllers.Print.textWarning": "Upozornenie", "SSE.Controllers.Print.warnCheckMargings": "Okraje sú nesprávne", "SSE.Controllers.Statusbar.errorLastSheet": "Pracovný zošit musí mať aspoň jeden viditeľný pracovný list.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.\n\n", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.", "SSE.Controllers.Statusbar.strSheet": "List", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže obsahovať údaje. Naozaj chcete pokračovať?\n\n", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže obsahovať údaje. Naozaj chcete pokračovať?", "SSE.Controllers.Statusbar.zoomText": "Priblíženie {0}%", - "SSE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?\n\n\n\n", + "SSE.Controllers.Toolbar.confirmAddFontName": "Písmo, ktoré chcete uložiť, nie je dostupné na aktuálnom zariadení.
Štýl textu sa zobrazí pomocou jedného zo systémových písiem, uložené písmo sa použije, keď bude k dispozícii.
Chcete pokračovať?", "SSE.Controllers.Toolbar.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255", - "SSE.Controllers.Toolbar.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", + "SSE.Controllers.Toolbar.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", "SSE.Controllers.Toolbar.textAccent": "Akcenty", "SSE.Controllers.Toolbar.textBracket": "Zátvorky", "SSE.Controllers.Toolbar.textCancel": "Zrušiť", - "SSE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 409.\n\n\n\n", + "SSE.Controllers.Toolbar.textFontSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte číselnú hodnotu medzi 1 a 409.", "SSE.Controllers.Toolbar.textFraction": "Zlomky", "SSE.Controllers.Toolbar.textFunction": "Funkcie", "SSE.Controllers.Toolbar.textIntegral": "Integrály", @@ -460,7 +460,7 @@ "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Prípady (Tri podmienky)", "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Zložený objekt", "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Zložený objekt", - "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov\n\n", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Príklady prípadov", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomický koeficient", "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomický koeficient", "SSE.Controllers.Toolbar.txtBracket_Line": "Zátvorky", @@ -489,7 +489,7 @@ "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Zátvorka", "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Zátvorka", "SSE.Controllers.Toolbar.txtExpand": "Rozbaliť a zoradiť", - "SSE.Controllers.Toolbar.txtExpandSort": "Údaje vedľa výberu nebudú zoradené. Chcete rozšíriť výber tak, aby zahŕňal priľahlé údaje, alebo pokračovať v triedení len vybraných buniek?\n\n", + "SSE.Controllers.Toolbar.txtExpandSort": "Údaje vedľa výberu nebudú zoradené. Chcete rozšíriť výber tak, aby zahŕňal priľahlé údaje, alebo pokračovať v triedení len vybraných buniek?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skosený zlomok ", "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferenciál", "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferenciál", @@ -497,7 +497,7 @@ "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferenciál", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Lineárny zlomok", "SSE.Controllers.Toolbar.txtFractionPi_2": "Pí lomeno dvoma", - "SSE.Controllers.Toolbar.txtFractionSmall": "Malý zlomok\n", + "SSE.Controllers.Toolbar.txtFractionSmall": "Malý zlomok", "SSE.Controllers.Toolbar.txtFractionVertical": "Lomený výraz", "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Inverzná funkcia kosínus", "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Inverzná funkcia hyperbolický kosínus", @@ -651,7 +651,7 @@ "SSE.Controllers.Toolbar.txtScriptCustom_4": "Skript", "SSE.Controllers.Toolbar.txtScriptSub": "Dolný index", "SSE.Controllers.Toolbar.txtScriptSubSup": "Dolný index - Horný index", - "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Ľavý dolný index - horný index\n\n", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Ľavý dolný index - horný index", "SSE.Controllers.Toolbar.txtScriptSup": "Horný index", "SSE.Controllers.Toolbar.txtSorting": "Zoraďovanie", "SSE.Controllers.Toolbar.txtSortSelected": "Zoradiť vybrané", @@ -666,21 +666,21 @@ "SSE.Controllers.Toolbar.txtSymbol_bullet": "Operátor odrážka ", "SSE.Controllers.Toolbar.txtSymbol_cap": "Prienik", "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Tretia odmocnina", - "SSE.Controllers.Toolbar.txtSymbol_cdots": "Strednica horizontálnej elipsy\n", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Strednica horizontálnej elipsy", "SSE.Controllers.Toolbar.txtSymbol_celsius": "Stupne Celzia", "SSE.Controllers.Toolbar.txtSymbol_chi": "Chí ", "SSE.Controllers.Toolbar.txtSymbol_cong": "Približne sa rovná", "SSE.Controllers.Toolbar.txtSymbol_cup": "Zjednotenie", - "SSE.Controllers.Toolbar.txtSymbol_ddots": "Dolná pravá diagonálna elipsa \n\n", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Dolná pravá diagonálna elipsa ", "SSE.Controllers.Toolbar.txtSymbol_degree": "Stupeň", "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", "SSE.Controllers.Toolbar.txtSymbol_div": "Znak delenia", "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Šípka dole", "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Prázdna množina", - "SSE.Controllers.Toolbar.txtSymbol_epsilon": "epsilon (grécke písmeno E)\n", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "epsilon (grécke písmeno E)", "SSE.Controllers.Toolbar.txtSymbol_equals": "Rovná sa", - "SSE.Controllers.Toolbar.txtSymbol_equiv": "Rovnaké ako\n\n", - "SSE.Controllers.Toolbar.txtSymbol_eta": "H (grécke písmeno)\n", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Rovnaké ako", + "SSE.Controllers.Toolbar.txtSymbol_eta": "H (grécke písmeno)", "SSE.Controllers.Toolbar.txtSymbol_exists": "Existuje", "SSE.Controllers.Toolbar.txtSymbol_factorial": "Faktoriál", "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Stupňov Fahrenheita", @@ -703,13 +703,13 @@ "SSE.Controllers.Toolbar.txtSymbol_minus": "Mínus", "SSE.Controllers.Toolbar.txtSymbol_mp": "Mínus plus", "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", - "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla\n", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", "SSE.Controllers.Toolbar.txtSymbol_neq": "Nerovná sa", - "SSE.Controllers.Toolbar.txtSymbol_ni": "Obsahuje ako člena\n\n", - "SSE.Controllers.Toolbar.txtSymbol_not": "Nepopísať/bez znaku\n\n", - "SSE.Controllers.Toolbar.txtSymbol_notexists": "Tam neexistuje\n\n", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Obsahuje ako člena", + "SSE.Controllers.Toolbar.txtSymbol_not": "Nepopísať/bez znaku", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "Tam neexistuje", "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", - "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron\n\n", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", "SSE.Controllers.Toolbar.txtSymbol_partial": "Parciálny diferenciál", "SSE.Controllers.Toolbar.txtSymbol_percent": "Percentuálny podiel", @@ -721,7 +721,7 @@ "SSE.Controllers.Toolbar.txtSymbol_psi": "Psí", "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Štvrtá odmocnina", "SSE.Controllers.Toolbar.txtSymbol_qed": "Znak koniec dôkazu", - "SSE.Controllers.Toolbar.txtSymbol_rddots": "Horná pravá diagonálna elipsa/vypustenie\n\n", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Horná pravá diagonálna elipsa/vypustenie", "SSE.Controllers.Toolbar.txtSymbol_rho": "Ró", "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Pravá šípka", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma ", @@ -733,32 +733,32 @@ "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Šípka hore", "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Ypsilon", "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant epsilonu", - "SSE.Controllers.Toolbar.txtSymbol_varphi": "Fí Variant\n\n", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Fí Variant", "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pí variant", "SSE.Controllers.Toolbar.txtSymbol_varrho": "Ró variant", "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Theta", - "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie\n\n", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertikálna elipsa/vypustenie", "SSE.Controllers.Toolbar.txtSymbol_xsi": "Ksí ", "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zéta", - "SSE.Controllers.Toolbar.warnLongOperation": "Operácia, ktorú chcete vykonať, môže trvať pomerne dlhý čas na dokončenie.
Určite chcete pokračovať?\n\n", - "SSE.Controllers.Toolbar.warnMergeLostData": "Iba údaje z ľavej hornej bunky zostanú v zlúčenej bunke.
Ste si istý, že chcete pokračovať?\n", + "SSE.Controllers.Toolbar.warnLongOperation": "Operácia, ktorú chcete vykonať, môže trvať pomerne dlhý čas na dokončenie.
Určite chcete pokračovať?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Iba údaje z ľavej hornej bunky zostanú v zlúčenej bunke.
Ste si istý, že chcete pokračovať?", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Špeciálny/vlastný filter", "SSE.Views.AutoFilterDialog.cancelButtonText": "Zrušiť", "SSE.Views.AutoFilterDialog.okButtonText": "OK", - "SSE.Views.AutoFilterDialog.textAddSelection": "Pridať aktuálny výber na filtrovanie\n\n", + "SSE.Views.AutoFilterDialog.textAddSelection": "Pridať aktuálny výber na filtrovanie", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", "SSE.Views.AutoFilterDialog.textSelectAll": "Vybrať všetko", "SSE.Views.AutoFilterDialog.textSelectAllResults": "Vyberte všetky výsledky vyhľadávania", "SSE.Views.AutoFilterDialog.textWarning": "Upozornenie", - "SSE.Views.AutoFilterDialog.txtAboveAve": "Nad priemer\n\n", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Nad priemer", "SSE.Views.AutoFilterDialog.txtBegins": "Začať s...", - "SSE.Views.AutoFilterDialog.txtBelowAve": "Podpriemerný\n", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Podpriemerný", "SSE.Views.AutoFilterDialog.txtBetween": "Medzi...", "SSE.Views.AutoFilterDialog.txtClear": "Vyčistiť", "SSE.Views.AutoFilterDialog.txtContains": "Obsahuje...", - "SSE.Views.AutoFilterDialog.txtEmpty": "Zadať filter buniek\n\n", - "SSE.Views.AutoFilterDialog.txtEnds": "Končí s...\n\n", + "SSE.Views.AutoFilterDialog.txtEmpty": "Zadať filter buniek", + "SSE.Views.AutoFilterDialog.txtEnds": "Končí s...", "SSE.Views.AutoFilterDialog.txtEquals": "Rovná sa...", "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filtrovať podľa farby buniek", "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrovať podľa farby písma", @@ -766,43 +766,43 @@ "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Väčšie alebo rovná sa...", "SSE.Views.AutoFilterDialog.txtLess": "Menej než...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Menej alebo rovná sa", - "SSE.Views.AutoFilterDialog.txtNotBegins": "Nezačína s...\n\n", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Nezačína s...", "SSE.Views.AutoFilterDialog.txtNotContains": "Neobsahuje...", "SSE.Views.AutoFilterDialog.txtNotEnds": "Nekončí s...", "SSE.Views.AutoFilterDialog.txtNotEquals": "Nerovná sa ...", - "SSE.Views.AutoFilterDialog.txtNumFilter": "Filter čísel\n\n", - "SSE.Views.AutoFilterDialog.txtReapply": "Opäť použiť\n", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Filter čísel", + "SSE.Views.AutoFilterDialog.txtReapply": "Opäť použiť", "SSE.Views.AutoFilterDialog.txtSortCellColor": "Zoradiť podľa farieb buniek", "SSE.Views.AutoFilterDialog.txtSortFontColor": "Zoradiť podľa farieb písma", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Zoradiť od najvyššieho po najnižšie", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Zoradiť od najnižšieho po najvyššie", - "SSE.Views.AutoFilterDialog.txtTextFilter": "Textový filter\n\n", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Textový filter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", - "SSE.Views.AutoFilterDialog.warnNoSelected": "Musíte vybrať aspoň jednu hodnotu\n\n", - "SSE.Views.CellEditor.textManager": "Správca názvov\n\n", + "SSE.Views.AutoFilterDialog.warnNoSelected": "Musíte vybrať aspoň jednu hodnotu", + "SSE.Views.CellEditor.textManager": "Správca názvov", "SSE.Views.CellEditor.tipFormula": "Vložiť funkciu", "SSE.Views.CellRangeDialog.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255", - "SSE.Views.CellRangeDialog.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", + "SSE.Views.CellRangeDialog.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", "SSE.Views.CellRangeDialog.textCancel": "Zrušiť", - "SSE.Views.CellRangeDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "SSE.Views.CellRangeDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.CellRangeDialog.txtInvalidRange": "CHYBA! Neplatný rozsah buniek", - "SSE.Views.CellRangeDialog.txtTitle": "Vybrať rozsah údajov\n\n", - "SSE.Views.ChartSettings.strLineWeight": "Hrúbka čiary\n\n", + "SSE.Views.CellRangeDialog.txtTitle": "Vybrať rozsah údajov", + "SSE.Views.ChartSettings.strLineWeight": "Hrúbka čiary", "SSE.Views.ChartSettings.strSparkColor": "Farba", "SSE.Views.ChartSettings.strTemplate": "Šablóna", "SSE.Views.ChartSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.ChartSettings.textArea": "Plošný graf", "SSE.Views.ChartSettings.textBar": "Pruhový graf", - "SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.\n", + "SSE.Views.ChartSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.", "SSE.Views.ChartSettings.textChartType": "Zmeniť typ grafu", "SSE.Views.ChartSettings.textColumn": "Stĺpec", "SSE.Views.ChartSettings.textColumnSpark": "Stĺpec", - "SSE.Views.ChartSettings.textEditData": "Upraviť údaje a umiestnenie\n\n", - "SSE.Views.ChartSettings.textFirstPoint": "Prvý bod\n\n", + "SSE.Views.ChartSettings.textEditData": "Upraviť údaje a umiestnenie", + "SSE.Views.ChartSettings.textFirstPoint": "Prvý bod", "SSE.Views.ChartSettings.textHeight": "Výška", - "SSE.Views.ChartSettings.textHighPoint": "Vysoký bod\n\n", - "SSE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery\n\n\n", + "SSE.Views.ChartSettings.textHighPoint": "Vysoký bod", + "SSE.Views.ChartSettings.textKeepRatio": "Konštantné rozmery", "SSE.Views.ChartSettings.textLastPoint": "Posledný bod", "SSE.Views.ChartSettings.textLine": "Čiara", "SSE.Views.ChartSettings.textLineSpark": "Čiara", @@ -812,7 +812,7 @@ "SSE.Views.ChartSettings.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.ChartSettings.textPie": "Koláčový graf", "SSE.Views.ChartSettings.textPoint": "Bodový graf", - "SSE.Views.ChartSettings.textRanges": "Rozsah údajov\n\n", + "SSE.Views.ChartSettings.textRanges": "Rozsah údajov", "SSE.Views.ChartSettings.textSelectData": "Vybrať údaje", "SSE.Views.ChartSettings.textShow": "Zobraziť", "SSE.Views.ChartSettings.textSize": "Veľkosť", @@ -824,7 +824,7 @@ "SSE.Views.ChartSettings.textWinLossSpark": "Zisk/strata", "SSE.Views.ChartSettingsDlg.cancelButtonText": "Zrušiť", "SSE.Views.ChartSettingsDlg.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255", - "SSE.Views.ChartSettingsDlg.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", "SSE.Views.ChartSettingsDlg.textAlt": "Alternatívny text", "SSE.Views.ChartSettingsDlg.textAltDescription": "Popis", "SSE.Views.ChartSettingsDlg.textAltTip": "Alternatívne textové zobrazenie informácií o vizuálnych objektoch, ktoré sa prečítajú ľuďom s poruchou videnia alebo kognitívnymi poruchami, aby sa im pomohlo lepšie porozumieť, aké informácie sú na obrázku, automatickom tvarovaní, grafe alebo tabuľke. ", @@ -842,20 +842,20 @@ "SSE.Views.ChartSettingsDlg.textBottom": "Dole", "SSE.Views.ChartSettingsDlg.textCategoryName": "Meno kategórie", "SSE.Views.ChartSettingsDlg.textCenter": "Stred", - "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy grafu &
Legenda grafu\n\n\n\n", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementy grafu &
Legenda grafu", "SSE.Views.ChartSettingsDlg.textChartTitle": "Názov grafu", "SSE.Views.ChartSettingsDlg.textColumn": "Stĺpec", "SSE.Views.ChartSettingsDlg.textColumnSpark": "Stĺpec", "SSE.Views.ChartSettingsDlg.textCross": "Pretínať", "SSE.Views.ChartSettingsDlg.textCustom": "Vlastný", "SSE.Views.ChartSettingsDlg.textDataColumns": "V stĺpcoch", - "SSE.Views.ChartSettingsDlg.textDataLabels": "Popisky dát\n\n", - "SSE.Views.ChartSettingsDlg.textDataRange": "Rozsah údajov\n\n", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Popisky dát", + "SSE.Views.ChartSettingsDlg.textDataRange": "Rozsah údajov", "SSE.Views.ChartSettingsDlg.textDataRows": "V riadkoch", "SSE.Views.ChartSettingsDlg.textDataSeries": "Dátové rady", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Zobraziť legendu", "SSE.Views.ChartSettingsDlg.textEmptyCells": "Skryté a prázdne bunky", - "SSE.Views.ChartSettingsDlg.textEmptyLine": "Spojiť dátové body s riadkom\n\n", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Spojiť dátové body s riadkom", "SSE.Views.ChartSettingsDlg.textFit": "Prispôsobiť na šírku", "SSE.Views.ChartSettingsDlg.textFixed": "Fixný/napravený", "SSE.Views.ChartSettingsDlg.textGaps": "Medzery", @@ -864,9 +864,9 @@ "SSE.Views.ChartSettingsDlg.textHide": "Skryť", "SSE.Views.ChartSettingsDlg.textHigh": "Vysoko", "SSE.Views.ChartSettingsDlg.textHorAxis": "Vodorovná os", - "SSE.Views.ChartSettingsDlg.textHorGrid": "Horizontálne mriežky\n\n", + "SSE.Views.ChartSettingsDlg.textHorGrid": "Horizontálne mriežky", "SSE.Views.ChartSettingsDlg.textHorizontal": "Vodorovný", - "SSE.Views.ChartSettingsDlg.textHorTitle": "Názov horizontálnej osi\n\n", + "SSE.Views.ChartSettingsDlg.textHorTitle": "Názov horizontálnej osi", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundreds": "Stovky", "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", @@ -875,8 +875,8 @@ "SSE.Views.ChartSettingsDlg.textInnerTop": "Vnútri hore", "SSE.Views.ChartSettingsDlg.textInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.ChartSettingsDlg.textLabelDist": "Vzdialenosť popisku osi", - "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval medzi popiskami\n\n", - "SSE.Views.ChartSettingsDlg.textLabelOptions": "Možnosti menoviek\n\n", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval medzi popiskami", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Možnosti menoviek", "SSE.Views.ChartSettingsDlg.textLabelPos": "Umiestnenie menoviek", "SSE.Views.ChartSettingsDlg.textLayout": "Rozloženie", "SSE.Views.ChartSettingsDlg.textLeft": "Vľavo", @@ -886,14 +886,14 @@ "SSE.Views.ChartSettingsDlg.textLegendPos": "Legenda", "SSE.Views.ChartSettingsDlg.textLegendRight": "Vpravo", "SSE.Views.ChartSettingsDlg.textLegendTop": "Hore", - "SSE.Views.ChartSettingsDlg.textLine": "Čiarový graf\n\n", + "SSE.Views.ChartSettingsDlg.textLine": "Čiarový graf", "SSE.Views.ChartSettingsDlg.textLines": "Čiary", "SSE.Views.ChartSettingsDlg.textLineSpark": "Čiara", "SSE.Views.ChartSettingsDlg.textLocationRange": "Rozsah umiestnenia", "SSE.Views.ChartSettingsDlg.textLow": "Nízko", - "SSE.Views.ChartSettingsDlg.textMajor": "Hlavný\n", + "SSE.Views.ChartSettingsDlg.textMajor": "Hlavný", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Hlavný a vedľajší", - "SSE.Views.ChartSettingsDlg.textMajorType": "Hlavná značka\n\n", + "SSE.Views.ChartSettingsDlg.textMajorType": "Hlavná značka", "SSE.Views.ChartSettingsDlg.textManual": "Manuál/ručný", "SSE.Views.ChartSettingsDlg.textMarkers": "Značky", "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval medzi značkami", @@ -912,7 +912,7 @@ "SSE.Views.ChartSettingsDlg.textPie": "Koláčový graf", "SSE.Views.ChartSettingsDlg.textPoint": "Bodový graf", "SSE.Views.ChartSettingsDlg.textReverse": "Hodnoty v opačnom poradí", - "SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrátené poradie\n", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Obrátené poradie", "SSE.Views.ChartSettingsDlg.textRight": "Vpravo", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Pravé prekrytie", "SSE.Views.ChartSettingsDlg.textRotated": "Otočený", @@ -921,13 +921,13 @@ "SSE.Views.ChartSettingsDlg.textSeparator": "Oddeľovače popisiek dát", "SSE.Views.ChartSettingsDlg.textSeriesName": "Názvy radov", "SSE.Views.ChartSettingsDlg.textShow": "Zobraziť", - "SSE.Views.ChartSettingsDlg.textShowAxis": "Zobraziť os\n\n", - "SSE.Views.ChartSettingsDlg.textShowBorders": "Zobraziť okraje grafu\n\n", - "SSE.Views.ChartSettingsDlg.textShowData": "Zobraziť údaje v skrytých riadkoch a stĺpcoch\n\n", + "SSE.Views.ChartSettingsDlg.textShowAxis": "Zobraziť os", + "SSE.Views.ChartSettingsDlg.textShowBorders": "Zobraziť okraje grafu", + "SSE.Views.ChartSettingsDlg.textShowData": "Zobraziť údaje v skrytých riadkoch a stĺpcoch", "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Zobraziť prázdne bunky ako", "SSE.Views.ChartSettingsDlg.textShowGrid": "Mriežky", - "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Zobraziť os\n\n", - "SSE.Views.ChartSettingsDlg.textShowValues": "Zobraziť hodnoty grafu\n\n", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Zobraziť os", + "SSE.Views.ChartSettingsDlg.textShowValues": "Zobraziť hodnoty grafu", "SSE.Views.ChartSettingsDlg.textSingle": "Jednoduchý Sparkline", "SSE.Views.ChartSettingsDlg.textSmooth": "Plynulý", "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline - Rozsahy", @@ -937,25 +937,25 @@ "SSE.Views.ChartSettingsDlg.textSurface": "Povrch", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", - "SSE.Views.ChartSettingsDlg.textThousands": "Tisíce\n\n", - "SSE.Views.ChartSettingsDlg.textTickOptions": "Možnosti značiek\n\n", + "SSE.Views.ChartSettingsDlg.textThousands": "Tisíce", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Možnosti značiek", "SSE.Views.ChartSettingsDlg.textTitle": "Graf - Pokročilé nastavenia", "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Pokročilé nastavenia", "SSE.Views.ChartSettingsDlg.textTop": "Hore", "SSE.Views.ChartSettingsDlg.textTrillions": "Bilióny", "SSE.Views.ChartSettingsDlg.textType": "Typ", - "SSE.Views.ChartSettingsDlg.textTypeData": "Typ a údaje\n\n", - "SSE.Views.ChartSettingsDlg.textTypeStyle": "Typ grafu, štýl &
Rozsah údajov\n\n\n\n", - "SSE.Views.ChartSettingsDlg.textUnits": "Zobrazovacie jednotky\n\n", + "SSE.Views.ChartSettingsDlg.textTypeData": "Typ a údaje", + "SSE.Views.ChartSettingsDlg.textTypeStyle": "Typ grafu, štýl &
Rozsah údajov", + "SSE.Views.ChartSettingsDlg.textUnits": "Zobrazovacie jednotky", "SSE.Views.ChartSettingsDlg.textValue": "Hodnota", - "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikálna os\n\n", - "SSE.Views.ChartSettingsDlg.textVertGrid": "Vertikálne mriežky\n\n", - "SSE.Views.ChartSettingsDlg.textVertTitle": "Názov vertikálnej osi\n\n", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikálna os", + "SSE.Views.ChartSettingsDlg.textVertGrid": "Vertikálne mriežky", + "SSE.Views.ChartSettingsDlg.textVertTitle": "Názov vertikálnej osi", "SSE.Views.ChartSettingsDlg.textWinLossSpark": "Zisk/strata", - "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Názov osi X\n\n", - "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Názov osi Y\n\n", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Názov osi X", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Názov osi Y", "SSE.Views.ChartSettingsDlg.textZero": "Nula", - "SSE.Views.ChartSettingsDlg.txtEmpty": "Toto pole sa vyžaduje\n\n", + "SSE.Views.ChartSettingsDlg.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.DigitalFilterDialog.cancelButtonText": "Zrušiť", "SSE.Views.DigitalFilterDialog.capAnd": "a", "SSE.Views.DigitalFilterDialog.capCondition1": "rovná se", @@ -965,21 +965,21 @@ "SSE.Views.DigitalFilterDialog.capCondition2": "nerovná sa", "SSE.Views.DigitalFilterDialog.capCondition3": "je väčšie ako", "SSE.Views.DigitalFilterDialog.capCondition4": "je väčšie alebo rovné ", - "SSE.Views.DigitalFilterDialog.capCondition5": "Je menšie než\n\n", + "SSE.Views.DigitalFilterDialog.capCondition5": "Je menšie než", "SSE.Views.DigitalFilterDialog.capCondition6": "je menšie alebo rovné ", "SSE.Views.DigitalFilterDialog.capCondition7": "Začať s", - "SSE.Views.DigitalFilterDialog.capCondition8": "Nezačína s\n\n", - "SSE.Views.DigitalFilterDialog.capCondition9": "Končí s\n\n", + "SSE.Views.DigitalFilterDialog.capCondition8": "Nezačína s", + "SSE.Views.DigitalFilterDialog.capCondition9": "Končí s", "SSE.Views.DigitalFilterDialog.capOr": "Alebo", "SSE.Views.DigitalFilterDialog.textNoFilter": "bez filtra", - "SSE.Views.DigitalFilterDialog.textShowRows": "Zobraziť riadky kde\n\n", - "SSE.Views.DigitalFilterDialog.textUse1": "Použite ? na zobrazenie akéhokoľvek jedného znaku\n\n", - "SSE.Views.DigitalFilterDialog.textUse2": "Použite * na zobrazenie ľubovoľnej série znakov\n\n", + "SSE.Views.DigitalFilterDialog.textShowRows": "Zobraziť riadky kde", + "SSE.Views.DigitalFilterDialog.textUse1": "Použite ? na zobrazenie akéhokoľvek jedného znaku", + "SSE.Views.DigitalFilterDialog.textUse2": "Použite * na zobrazenie ľubovoľnej série znakov", "SSE.Views.DigitalFilterDialog.txtTitle": "Špeciálny/vlastný filter", "SSE.Views.DocumentHolder.advancedImgText": "Pokročilé nastavenia obrázku", "SSE.Views.DocumentHolder.advancedShapeText": "Pokročilé nastavenia tvaru", "SSE.Views.DocumentHolder.bottomCellText": "Zarovnať dole", - "SSE.Views.DocumentHolder.bulletsText": "Odrážky a číslovanie\n\n", + "SSE.Views.DocumentHolder.bulletsText": "Odrážky a číslovanie", "SSE.Views.DocumentHolder.centerCellText": "Zarovnať na stred", "SSE.Views.DocumentHolder.chartText": "Pokročilé nastavenia grafu", "SSE.Views.DocumentHolder.deleteColumnText": "Stĺpec", @@ -991,44 +991,44 @@ "SSE.Views.DocumentHolder.directionText": "Smer textu", "SSE.Views.DocumentHolder.editChartText": "Upravovať dáta", "SSE.Views.DocumentHolder.editHyperlinkText": "Upraviť hypertextový odkaz", - "SSE.Views.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo\n\n", - "SSE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo\n\n", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Stĺpec vľavo", + "SSE.Views.DocumentHolder.insertColumnRightText": "Stĺpec vpravo", "SSE.Views.DocumentHolder.insertRowAboveText": "Riadok nad", "SSE.Views.DocumentHolder.insertRowBelowText": "Riadok pod", "SSE.Views.DocumentHolder.removeHyperlinkText": "Odstrániť hypertextový odkaz", - "SSE.Views.DocumentHolder.selectColumnText": "Celý stĺpec\n\n", - "SSE.Views.DocumentHolder.selectDataText": "Údaje o stĺpcoch\n\n", + "SSE.Views.DocumentHolder.selectColumnText": "Celý stĺpec", + "SSE.Views.DocumentHolder.selectDataText": "Údaje o stĺpcoch", "SSE.Views.DocumentHolder.selectRowText": "Riadok", "SSE.Views.DocumentHolder.selectTableText": "Tabuľka", "SSE.Views.DocumentHolder.textArrangeBack": "Presunúť do pozadia", "SSE.Views.DocumentHolder.textArrangeBackward": "Posunúť späť", "SSE.Views.DocumentHolder.textArrangeForward": "Posunúť vpred", "SSE.Views.DocumentHolder.textArrangeFront": "Premiestniť do popredia", - "SSE.Views.DocumentHolder.textEntriesList": "Vybrať z rolovacieho zoznamu\n\n", + "SSE.Views.DocumentHolder.textEntriesList": "Vybrať z rolovacieho zoznamu", "SSE.Views.DocumentHolder.textFreezePanes": "Ukotviť priečky", "SSE.Views.DocumentHolder.textNone": "žiadny", "SSE.Views.DocumentHolder.textUndo": "Krok späť", "SSE.Views.DocumentHolder.textUnFreezePanes": "Zrušiť priečky", "SSE.Views.DocumentHolder.topCellText": "Zarovnať nahor", "SSE.Views.DocumentHolder.txtAddComment": "Pridať komentár", - "SSE.Views.DocumentHolder.txtAddNamedRange": "Definovať meno\n\n", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Definovať meno", "SSE.Views.DocumentHolder.txtArrange": "Upraviť/usporiadať/zarovnať", "SSE.Views.DocumentHolder.txtAscending": "Vzostupne", - "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Automaticky prispôsobiť šírku stĺpca\n\n", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Automaticky prispôsobiť šírku stĺpca", "SSE.Views.DocumentHolder.txtAutoRowHeight": "Automaticky prispôsobiť výšku riadku", "SSE.Views.DocumentHolder.txtClear": "Vyčistiť", "SSE.Views.DocumentHolder.txtClearAll": "Všetko", "SSE.Views.DocumentHolder.txtClearComments": "Komentáre", "SSE.Views.DocumentHolder.txtClearFormat": "Formát", - "SSE.Views.DocumentHolder.txtClearHyper": "Hypertextové odkazy\n\n", + "SSE.Views.DocumentHolder.txtClearHyper": "Hypertextové odkazy", "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Vyčistiť vybrané Sparkline skupiny", "SSE.Views.DocumentHolder.txtClearSparklines": "Vyčistiť vybrané Sparklines ", "SSE.Views.DocumentHolder.txtClearText": "Text", - "SSE.Views.DocumentHolder.txtColumn": "Celý stĺpec\n\n", - "SSE.Views.DocumentHolder.txtColumnWidth": "Nastaviť šírku stĺpca\n\n", + "SSE.Views.DocumentHolder.txtColumn": "Celý stĺpec", + "SSE.Views.DocumentHolder.txtColumnWidth": "Nastaviť šírku stĺpca", "SSE.Views.DocumentHolder.txtCopy": "Kopírovať", - "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Špeciálna/vlastná šírka stĺpca\n\n", - "SSE.Views.DocumentHolder.txtCustomRowHeight": "Špeciálna/vlastná výška riadku\n\n", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Špeciálna/vlastná šírka stĺpca", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Špeciálna/vlastná výška riadku", "SSE.Views.DocumentHolder.txtCut": "Vystrihnúť", "SSE.Views.DocumentHolder.txtDelete": "Vymazať", "SSE.Views.DocumentHolder.txtDescending": "Zostupne", @@ -1043,19 +1043,19 @@ "SSE.Views.DocumentHolder.txtInsert": "Vložiť", "SSE.Views.DocumentHolder.txtInsHyperlink": "Hypertextový odkaz", "SSE.Views.DocumentHolder.txtPaste": "Vložiť", - "SSE.Views.DocumentHolder.txtReapply": "Opäť použiť\n", - "SSE.Views.DocumentHolder.txtRow": "Celý riadok\n\n", - "SSE.Views.DocumentHolder.txtRowHeight": "Nastaviť výšku riadku\n\n", + "SSE.Views.DocumentHolder.txtReapply": "Opäť použiť", + "SSE.Views.DocumentHolder.txtRow": "Celý riadok", + "SSE.Views.DocumentHolder.txtRowHeight": "Nastaviť výšku riadku", "SSE.Views.DocumentHolder.txtSelect": "Vybrať", - "SSE.Views.DocumentHolder.txtShiftDown": "Posunúť bunky dole\n\n", - "SSE.Views.DocumentHolder.txtShiftLeft": "Posunúť bunky vľavo\n", - "SSE.Views.DocumentHolder.txtShiftRight": "Posunúť bunky vpravo\n", - "SSE.Views.DocumentHolder.txtShiftUp": "Posunúť bunky hore\n", + "SSE.Views.DocumentHolder.txtShiftDown": "Posunúť bunky dole", + "SSE.Views.DocumentHolder.txtShiftLeft": "Posunúť bunky vľavo", + "SSE.Views.DocumentHolder.txtShiftRight": "Posunúť bunky vpravo", + "SSE.Views.DocumentHolder.txtShiftUp": "Posunúť bunky hore", "SSE.Views.DocumentHolder.txtShow": "Zobraziť", - "SSE.Views.DocumentHolder.txtShowComment": "Zobraziť komentár\n\n", + "SSE.Views.DocumentHolder.txtShowComment": "Zobraziť komentár", "SSE.Views.DocumentHolder.txtSort": "Zoradiť", - "SSE.Views.DocumentHolder.txtSortCellColor": "Zvolená farba buniek na vrchu\n\n", - "SSE.Views.DocumentHolder.txtSortFontColor": "Zvolená farba písma na vrchu\n\n", + "SSE.Views.DocumentHolder.txtSortCellColor": "Zvolená farba buniek na vrchu", + "SSE.Views.DocumentHolder.txtSortFontColor": "Zvolená farba písma na vrchu", "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtTextAdvanced": "Pokročilé nastavenia textu", "SSE.Views.DocumentHolder.txtUngroup": "Oddeliť", @@ -1068,7 +1068,7 @@ "SSE.Views.FileMenu.btnHelpCaption": "Pomoc...", "SSE.Views.FileMenu.btnInfoCaption": "Informácie o zošite...", "SSE.Views.FileMenu.btnPrintCaption": "Tlačiť", - "SSE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...\n\n", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Otvoriť nedávne...", "SSE.Views.FileMenu.btnRenameCaption": "Premenovať ..", "SSE.Views.FileMenu.btnReturnCaption": "Späť do zošitu", "SSE.Views.FileMenu.btnRightsCaption": "Prístupové práva...", @@ -1090,19 +1090,19 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Osoby s oprávneniami", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Použiť", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Zapnúť automatickú obnovu", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Zapnúť automatické ukladanie\n\n", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Zapnúť automatické ukladanie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Režim spoločnej úpravy", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz\n\n", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Ostatní používatelia uvidia Vaše zmeny naraz", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Musíte akceptovať zmeny pretým ako ich uvidíte ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rýchly", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Náznak typu písma", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)\n\n", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Vždy uložiť na server (inak uložiť na server pri zatvorení dokumentu)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Jazyk vzorcov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Príklad: SÚČET; MIN; MAX; POČET", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Zapnúť zobrazovanie komentárov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Miestne nastavenia", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Príklad:", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov\n\n", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Zapnúť zobrazenie vyriešených komentárov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Prísny", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Jednotka merania", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Predvolená hodnota priblíženia", @@ -1118,7 +1118,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Nemčina", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Angličtina", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec (miera 2,54 cm)\n", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec (miera 2,54 cm)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Zobrazenie komentárov", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "ako OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Pôvodný", @@ -1154,9 +1154,9 @@ "SSE.Views.FormatSettingsDialog.txtScientific": "Vedecký", "SSE.Views.FormatSettingsDialog.txtText": "Text", "SSE.Views.FormatSettingsDialog.txtTime": "Čas", - "SSE.Views.FormatSettingsDialog.txtUpto1": "Až na jednu číslicu (1/3)\n\n", - "SSE.Views.FormatSettingsDialog.txtUpto2": "Až na dve číslice (12/25)\n\n", - "SSE.Views.FormatSettingsDialog.txtUpto3": "Až na tri číslice (131/135)\n\n", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Až na jednu číslicu (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Až na dve číslice (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Až na tri číslice (131/135)", "SSE.Views.FormulaDialog.cancelButtonText": "Zrušiť", "SSE.Views.FormulaDialog.okButtonText": "OK", "SSE.Views.FormulaDialog.sCategoryAll": "Všetko", @@ -1164,18 +1164,18 @@ "SSE.Views.FormulaDialog.sCategoryAll_ru": "Všetko", "SSE.Views.FormulaDialog.sCategoryCube": "Kocka", "SSE.Views.FormulaDialog.sCategoryCube_de": "Kocka", - "SSE.Views.FormulaDialog.sCategoryCube_ru": "Dátová kocka\n\n", + "SSE.Views.FormulaDialog.sCategoryCube_ru": "Dátová kocka", "SSE.Views.FormulaDialog.sCategoryDatabase": "Databáza", "SSE.Views.FormulaDialog.sCategoryDatabase_de": "Databázy", "SSE.Views.FormulaDialog.sCategoryDatabase_ru": "Databáza", "SSE.Views.FormulaDialog.sCategoryDateAndTime": "Dátum a čas", - "SSE.Views.FormulaDialog.sCategoryDateAndTime_de": "Dátum a čas\n\n", + "SSE.Views.FormulaDialog.sCategoryDateAndTime_de": "Dátum a čas", "SSE.Views.FormulaDialog.sCategoryDateAndTime_ru": "Dátum a čas", "SSE.Views.FormulaDialog.sCategoryEngineering": "Inžinierstvo", "SSE.Views.FormulaDialog.sCategoryEngineering_de": "Strojníctvo", "SSE.Views.FormulaDialog.sCategoryEngineering_ru": "Strojnícky", "SSE.Views.FormulaDialog.sCategoryFinancial": "Finančné", - "SSE.Views.FormulaDialog.sCategoryFinancial_de": "Finančná matematika\n\n", + "SSE.Views.FormulaDialog.sCategoryFinancial_de": "Finančná matematika", "SSE.Views.FormulaDialog.sCategoryFinancial_ru": "Finančný", "SSE.Views.FormulaDialog.sCategoryInformation": "Informácie", "SSE.Views.FormulaDialog.sCategoryInformation_de": "Informácie", @@ -1184,10 +1184,10 @@ "SSE.Views.FormulaDialog.sCategoryLogical_de": "Logický", "SSE.Views.FormulaDialog.sCategoryLogical_ru": "Logický", "SSE.Views.FormulaDialog.sCategoryLookupAndReference": "Vyhľadávanie a referencie", - "SSE.Views.FormulaDialog.sCategoryLookupAndReference_de": "Vyhľadávanie a referencie\n", + "SSE.Views.FormulaDialog.sCategoryLookupAndReference_de": "Vyhľadávanie a referencie", "SSE.Views.FormulaDialog.sCategoryLookupAndReference_ru": "Hľadanie a referencie", - "SSE.Views.FormulaDialog.sCategoryMathematic": "Matematika a trigonometria\n\n", - "SSE.Views.FormulaDialog.sCategoryMathematic_de": "Matematika a trigonometria\n\n", + "SSE.Views.FormulaDialog.sCategoryMathematic": "Matematika a trigonometria", + "SSE.Views.FormulaDialog.sCategoryMathematic_de": "Matematika a trigonometria", "SSE.Views.FormulaDialog.sCategoryMathematic_ru": "Matematický", "SSE.Views.FormulaDialog.sCategoryStatistical": "Štatistické", "SSE.Views.FormulaDialog.sCategoryStatistical_de": "Štatistika", @@ -1205,25 +1205,25 @@ "SSE.Views.HyperlinkSettingsDialog.strRange": "Rozsah", "SSE.Views.HyperlinkSettingsDialog.strSheet": "List", "SSE.Views.HyperlinkSettingsDialog.textDefault": "Vybraný rozsah", - "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Tu zadajte popis/nadpis\n\n", - "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz\n\n", - "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku\n\n", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Tu zadajte popis/nadpis", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Tu zadajte odkaz", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Tu zadajte popisku", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Externý odkaz", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Interný rozsah údajov", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.HyperlinkSettingsDialog.textLinkType": "Typ odkazu", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Popis", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Nastavenie hypertextového odkazu", - "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", "SSE.Views.ImageSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.ImageSettings.textEdit": "Upraviť", - "SSE.Views.ImageSettings.textEditObject": "Upraviť objekt\n\n", + "SSE.Views.ImageSettings.textEditObject": "Upraviť objekt", "SSE.Views.ImageSettings.textFromFile": "Zo súboru", "SSE.Views.ImageSettings.textFromUrl": "Z URL adresy ", "SSE.Views.ImageSettings.textHeight": "Výška", "SSE.Views.ImageSettings.textInsert": "Nahradiť obrázok", - "SSE.Views.ImageSettings.textKeepRatio": "Konštantné rozmery\n\n\n", + "SSE.Views.ImageSettings.textKeepRatio": "Konštantné rozmery", "SSE.Views.ImageSettings.textOriginalSize": "Predvolená veľkosť", "SSE.Views.ImageSettings.textSize": "Veľkosť", "SSE.Views.ImageSettings.textWidth": "Šírka", @@ -1262,21 +1262,21 @@ "SSE.Views.MainSettingsPrint.textPrintHeadings": "Vytlačiť nadpisy riadkov a stĺpcov", "SSE.Views.MainSettingsPrint.textSettings": "Nastavenie pre", "SSE.Views.NamedRangeEditDlg.cancelButtonText": "Zrušiť", - "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
, keďže niektoré z nich sú práve editované.\n\n", - "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Definovaný názov\n\n", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
, keďže niektoré z nich sú práve editované.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Definovaný názov", "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Upozornenie", "SSE.Views.NamedRangeEditDlg.okButtonText": "OK", "SSE.Views.NamedRangeEditDlg.strWorkbook": "Zošit", - "SSE.Views.NamedRangeEditDlg.textDataRange": "Rozsah údajov\n\n", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Rozsah údajov", "SSE.Views.NamedRangeEditDlg.textExistName": "CHYBA! Rozsah s takýmto názvom už existuje", - "SSE.Views.NamedRangeEditDlg.textInvalidName": "Názov musí začínať písmenom alebo podčiarknutím a nesmie obsahovať neplatné znaky.\n\n", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "Názov musí začínať písmenom alebo podčiarknutím a nesmie obsahovať neplatné znaky.", "SSE.Views.NamedRangeEditDlg.textInvalidRange": "CHYBA! Neplatný rozsah bunky", "SSE.Views.NamedRangeEditDlg.textIsLocked": "CHYBA! Tento prvok upravuje iný používateľ.", "SSE.Views.NamedRangeEditDlg.textName": "Názov", "SSE.Views.NamedRangeEditDlg.textReservedName": "Názov, ktorý sa pokúšate použiť, je už uvedený v bunkových vzorcoch. Použite iné meno.", "SSE.Views.NamedRangeEditDlg.textScope": "Rámec/rozsah", "SSE.Views.NamedRangeEditDlg.textSelectData": "Vybrať údaje", - "SSE.Views.NamedRangeEditDlg.txtEmpty": "Toto pole sa vyžaduje\n\n", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Upraviť meno", "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nový názov", "SSE.Views.NamedRangePasteDlg.cancelButtonText": "Zrušiť", @@ -1286,30 +1286,30 @@ "SSE.Views.NameManagerDlg.closeButtonText": "Zatvoriť", "SSE.Views.NameManagerDlg.guestText": "Návštevník", "SSE.Views.NameManagerDlg.okButtonText": "OK", - "SSE.Views.NameManagerDlg.textDataRange": "Rozsah údajov\n\n", + "SSE.Views.NameManagerDlg.textDataRange": "Rozsah údajov", "SSE.Views.NameManagerDlg.textDelete": "Vymazať", "SSE.Views.NameManagerDlg.textEdit": "Upraviť", - "SSE.Views.NameManagerDlg.textEmpty": "Žiadne pomenované rozsahy neboli vytvorené.
Vytvorte aspoň jeden pomenovaný rozsah a zobrazí sa v tomto poli.\n\n\n", + "SSE.Views.NameManagerDlg.textEmpty": "Žiadne pomenované rozsahy neboli vytvorené.
Vytvorte aspoň jeden pomenovaný rozsah a zobrazí sa v tomto poli.", "SSE.Views.NameManagerDlg.textFilter": "Filter", "SSE.Views.NameManagerDlg.textFilterAll": "Všetko", - "SSE.Views.NameManagerDlg.textFilterDefNames": "Definované názvy\n\n", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Definované názvy", "SSE.Views.NameManagerDlg.textFilterSheet": "Rozsah názvov do listu", "SSE.Views.NameManagerDlg.textFilterTableNames": "Názvy tabuliek", "SSE.Views.NameManagerDlg.textFilterWorkbook": "Rozsah názvov do zošita", "SSE.Views.NameManagerDlg.textNew": "Nový", - "SSE.Views.NameManagerDlg.textnoNames": "Neboli nájdené žiadne pomenované rozsahy zodpovedajúce vášmu filtrovaniu.\n\n", + "SSE.Views.NameManagerDlg.textnoNames": "Neboli nájdené žiadne pomenované rozsahy zodpovedajúce vášmu filtrovaniu.", "SSE.Views.NameManagerDlg.textRanges": "Pomenované rozsahy", "SSE.Views.NameManagerDlg.textScope": "Rámec/rozsah", "SSE.Views.NameManagerDlg.textWorkbook": "Zošit", "SSE.Views.NameManagerDlg.tipIsLocked": "Tento prvok upravuje iný používateľ.", - "SSE.Views.NameManagerDlg.txtTitle": "Správca názvov\n\n", + "SSE.Views.NameManagerDlg.txtTitle": "Správca názvov", "SSE.Views.ParagraphSettings.strLineHeight": "Riadkovanie", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Riadkovanie medzi odstavcami", "SSE.Views.ParagraphSettings.strSpacingAfter": "Za", "SSE.Views.ParagraphSettings.strSpacingBefore": "Pred", "SSE.Views.ParagraphSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.ParagraphSettings.textAt": "V/na", - "SSE.Views.ParagraphSettings.textAtLeast": "Najmenej\n\n", + "SSE.Views.ParagraphSettings.textAtLeast": "Najmenej", "SSE.Views.ParagraphSettings.textAuto": "Násobky", "SSE.Views.ParagraphSettings.textExact": "Presne", "SSE.Views.ParagraphSettings.txtAutoText": "Automaticky", @@ -1317,8 +1317,8 @@ "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Špecifikované tabulátory sa objavia v tomto poli", "SSE.Views.ParagraphSettingsAdvanced.okButtonText": "OK", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Všetko veľkým", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie\n", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok\n\n", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojité prečiarknutie", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsFirstLine": "Prvý riadok", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Vľavo", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Vpravo", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Písmo", @@ -1366,7 +1366,7 @@ "SSE.Views.PrintSettings.textPrintRange": "Rozsah tlače", "SSE.Views.PrintSettings.textSelection": "Výber", "SSE.Views.PrintSettings.textSettings": "Nastavenie listu", - "SSE.Views.PrintSettings.textShowDetails": "Zobraziť detaily\n\n", + "SSE.Views.PrintSettings.textShowDetails": "Zobraziť detaily", "SSE.Views.PrintSettings.textTitle": "Nastavenia tlače", "SSE.Views.RightMenu.txtChartSettings": "Nastavenia grafu", "SSE.Views.RightMenu.txtImageSettings": "Nastavenie obrázka", @@ -1378,8 +1378,8 @@ "SSE.Views.RightMenu.txtTextArtSettings": "Nastavenie Text Art", "SSE.Views.SetValueDialog.cancelButtonText": "Zrušiť", "SSE.Views.SetValueDialog.okButtonText": "OK", - "SSE.Views.SetValueDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}\n\n", - "SSE.Views.SetValueDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}\n\n", + "SSE.Views.SetValueDialog.txtMaxText": "Maximálna hodnota pre toto pole je {0}", + "SSE.Views.SetValueDialog.txtMinText": "Minimálna hodnota pre toto pole je {0}", "SSE.Views.ShapeSettings.strBackground": "Farba pozadia", "SSE.Views.ShapeSettings.strChange": "Zmeniť automatický tvar", "SSE.Views.ShapeSettings.strColor": "Farba", @@ -1391,7 +1391,7 @@ "SSE.Views.ShapeSettings.strTransparency": "Priehľadnosť", "SSE.Views.ShapeSettings.strType": "Typ", "SSE.Views.ShapeSettings.textAdvanced": "Zobraziť pokročilé nastavenia", - "SSE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.\n", + "SSE.Views.ShapeSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Vyplniť farbou", "SSE.Views.ShapeSettings.textDirection": "Smer", "SSE.Views.ShapeSettings.textEmptyPattern": "Bez vzoru", @@ -1411,9 +1411,9 @@ "SSE.Views.ShapeSettings.textStyle": "Štýl", "SSE.Views.ShapeSettings.textTexture": "Z textúry", "SSE.Views.ShapeSettings.textTile": "Dlaždica", - "SSE.Views.ShapeSettings.txtBrownPaper": "Hnedý/baliaci papier\n", + "SSE.Views.ShapeSettings.txtBrownPaper": "Hnedý/baliaci papier", "SSE.Views.ShapeSettings.txtCanvas": "Plátno", - "SSE.Views.ShapeSettings.txtCarton": "Kartón\n", + "SSE.Views.ShapeSettings.txtCarton": "Kartón", "SSE.Views.ShapeSettings.txtDarkFabric": "Tmavá štruktúra", "SSE.Views.ShapeSettings.txtGrain": "Textúra/zrnitosť", "SSE.Views.ShapeSettings.txtGranite": "Mramorovaný", @@ -1436,31 +1436,31 @@ "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Štýl začiatku", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Skosenie", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Dole", - "SSE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia\n", - "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov\n\n", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Typ zakončenia", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Počet stĺpcov", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Veľkosť konca", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Štýl konca", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Plochý", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Výška", - "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia\n\n", - "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery\n\n\n", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Typ pripojenia", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konštantné rozmery", "SSE.Views.ShapeSettingsAdvanced.textLeft": "Vľavo", - "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary\n\n", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Štýl čiary", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Sklon", "SSE.Views.ShapeSettingsAdvanced.textRight": "Vpravo", "SSE.Views.ShapeSettingsAdvanced.textRound": "Zaoblené", "SSE.Views.ShapeSettingsAdvanced.textSize": "Veľkosť", - "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami\n\n", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Medzera medzi stĺpcami", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Štvorec", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Tvar - Pokročilé nastavenia", "SSE.Views.ShapeSettingsAdvanced.textTop": "Hore", - "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru\n\n", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Nastavenia tvaru", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Šírka", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopírovať na koniec)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Presunúť na koniec)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopírovať pred list\n\n", - "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Presunúť pred list\n\n", - "SSE.Views.Statusbar.filteredRecordsText": "{0} z {1} filtrovaných záznamov \n\n", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopírovať pred list", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Presunúť pred list", + "SSE.Views.Statusbar.filteredRecordsText": "{0} z {1} filtrovaných záznamov ", "SSE.Views.Statusbar.filteredText": "Režim filtra", "SSE.Views.Statusbar.itemCopy": "Kopírovať", "SSE.Views.Statusbar.itemDelete": "Vymazať", @@ -1479,19 +1479,19 @@ "SSE.Views.Statusbar.textNoColor": "Bez farby", "SSE.Views.Statusbar.textSum": "SÚČET", "SSE.Views.Statusbar.tipAddTab": "Pridať pracovný hárok", - "SSE.Views.Statusbar.tipFirst": "Prejsť na prvý list\n\n", - "SSE.Views.Statusbar.tipLast": "Prejsť na posledný list\n", - "SSE.Views.Statusbar.tipNext": "Posunúť zoznam listov vpravo\n", - "SSE.Views.Statusbar.tipPrev": "Posunúť zoznam listov vľavo\n\n", + "SSE.Views.Statusbar.tipFirst": "Prejsť na prvý list", + "SSE.Views.Statusbar.tipLast": "Prejsť na posledný list", + "SSE.Views.Statusbar.tipNext": "Posunúť zoznam listov vpravo", + "SSE.Views.Statusbar.tipPrev": "Posunúť zoznam listov vľavo", "SSE.Views.Statusbar.tipZoomFactor": "Priblíženie", "SSE.Views.Statusbar.tipZoomIn": "Priblížiť", "SSE.Views.Statusbar.tipZoomOut": "Oddialiť", "SSE.Views.Statusbar.zoomText": "Priblíženie {0}%", - "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.\n\n", - "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
Vyberte rozsah tak, aby prvý riadok tabuľky bol na rovnakom riadku
a výsledná tabuľka sa prekrývala s aktuálnou.\n", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
Vyberte rozsah tak, aby prvý riadok tabuľky bol na rovnakom riadku
a výsledná tabuľka sa prekrývala s aktuálnou.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operácia sa nedala dokončiť pre zvolený rozsah buniek.
Zvoľte rozsah, ktorý nezahŕňa iné tabuľky.", "SSE.Views.TableOptionsDialog.textCancel": "Zrušiť", - "SSE.Views.TableOptionsDialog.txtEmpty": "Toto pole sa vyžaduje\n\n", + "SSE.Views.TableOptionsDialog.txtEmpty": "Toto pole sa vyžaduje", "SSE.Views.TableOptionsDialog.txtFormat": "Vytvoriť tabuľku", "SSE.Views.TableOptionsDialog.txtInvalidRange": "CHYBA! Neplatný rozsah buniek", "SSE.Views.TableOptionsDialog.txtTitle": "Názov", @@ -1504,16 +1504,16 @@ "SSE.Views.TableSettings.insertRowBelowText": "Vložiť riadok pod", "SSE.Views.TableSettings.notcriticalErrorTitle": "Upozornenie", "SSE.Views.TableSettings.selectColumnText": "Vybrať celý stĺpec", - "SSE.Views.TableSettings.selectDataText": "Vybrať údaje stĺpca\n\n", + "SSE.Views.TableSettings.selectDataText": "Vybrať údaje stĺpca", "SSE.Views.TableSettings.selectRowText": "Vybrať riadok", "SSE.Views.TableSettings.selectTableText": "Vybrať tabuľku", "SSE.Views.TableSettings.textAdvanced": "Zobraziť pokročilé nastavenia", "SSE.Views.TableSettings.textBanded": "Pruhovaný/pásikovaný", "SSE.Views.TableSettings.textCancel": "Zrušiť", "SSE.Views.TableSettings.textColumns": "Stĺpce", - "SSE.Views.TableSettings.textConvertRange": "Premeniť na rozsah\n\n", + "SSE.Views.TableSettings.textConvertRange": "Premeniť na rozsah", "SSE.Views.TableSettings.textEdit": "Riadky a stĺpce", - "SSE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny\n\n", + "SSE.Views.TableSettings.textEmptyTemplate": "Žiadne šablóny", "SSE.Views.TableSettings.textExistName": "CHYBA! Rozsah s takýmto názvom už existuje", "SSE.Views.TableSettings.textFilter": "Tlačidlo filtru", "SSE.Views.TableSettings.textFirst": "prvý", @@ -1524,13 +1524,13 @@ "SSE.Views.TableSettings.textLongOperation": "Dlhá prevádzka", "SSE.Views.TableSettings.textOK": "OK", "SSE.Views.TableSettings.textReservedName": "Názov, ktorý sa pokúšate použiť, je už uvedený v bunkových vzorcoch. Použite iné meno.", - "SSE.Views.TableSettings.textResize": "Zmeniť veľkosť tabuľky\n", + "SSE.Views.TableSettings.textResize": "Zmeniť veľkosť tabuľky", "SSE.Views.TableSettings.textRows": "Riadky", "SSE.Views.TableSettings.textSelectData": "Vybrať údaje", "SSE.Views.TableSettings.textTableName": "Názov tabuľky", "SSE.Views.TableSettings.textTemplate": "Vybrať zo šablóny", "SSE.Views.TableSettings.textTotal": "Celkovo", - "SSE.Views.TableSettings.warnLongOperation": "Operácia, ktorú chcete vykonať, môže trvať pomerne dlhý čas na dokončenie.
Určite chcete pokračovať?\n\n", + "SSE.Views.TableSettings.warnLongOperation": "Operácia, ktorú chcete vykonať, môže trvať pomerne dlhý čas na dokončenie.
Určite chcete pokračovať?", "SSE.Views.TableSettingsAdvanced.cancelButtonText": "Zrušiť", "SSE.Views.TableSettingsAdvanced.okButtonText": "OK", "SSE.Views.TableSettingsAdvanced.textAlt": "Alternatívny text", @@ -1547,7 +1547,7 @@ "SSE.Views.TextArtSettings.strStroke": "Obrys", "SSE.Views.TextArtSettings.strTransparency": "Priehľadnosť", "SSE.Views.TextArtSettings.strType": "Typ", - "SSE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.\n", + "SSE.Views.TextArtSettings.textBorderSizeErr": "Zadaná hodnota je nesprávna.
Prosím, zadajte hodnotu medzi 0 pt a 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Vyplniť farbou", "SSE.Views.TextArtSettings.textDirection": "Smer", "SSE.Views.TextArtSettings.textEmptyPattern": "Bez vzoru", @@ -1568,9 +1568,9 @@ "SSE.Views.TextArtSettings.textTexture": "Z textúry", "SSE.Views.TextArtSettings.textTile": "Dlaždica", "SSE.Views.TextArtSettings.textTransform": "Transformovať", - "SSE.Views.TextArtSettings.txtBrownPaper": "Hnedý/baliaci papier\n", + "SSE.Views.TextArtSettings.txtBrownPaper": "Hnedý/baliaci papier", "SSE.Views.TextArtSettings.txtCanvas": "Plátno", - "SSE.Views.TextArtSettings.txtCarton": "Kartón\n", + "SSE.Views.TextArtSettings.txtCarton": "Kartón", "SSE.Views.TextArtSettings.txtDarkFabric": "Tmavá štruktúra", "SSE.Views.TextArtSettings.txtGrain": "Textúra/zrnitosť", "SSE.Views.TextArtSettings.txtGranite": "Mramorovaný", @@ -1587,7 +1587,7 @@ "SSE.Views.Toolbar.capInsertImage": "Obrázok", "SSE.Views.Toolbar.capInsertShape": "Tvar", "SSE.Views.Toolbar.capInsertTable": "Tabuľka", - "SSE.Views.Toolbar.capInsertText": "Textové pole\n\n", + "SSE.Views.Toolbar.capInsertText": "Textové pole", "SSE.Views.Toolbar.mniImageFromFile": "Obrázok zo súboru", "SSE.Views.Toolbar.mniImageFromUrl": "Obrázok z URL adresy", "SSE.Views.Toolbar.textAlignBottom": "Zarovnať dole", @@ -1604,37 +1604,37 @@ "SSE.Views.Toolbar.textBordersColor": "Farba orámovania", "SSE.Views.Toolbar.textBordersStyle": "Štýl orámovania", "SSE.Views.Toolbar.textBottomBorders": "Spodné orámovanie", - "SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie\n", + "SSE.Views.Toolbar.textCenterBorders": "Vnútorné vertikálne orámovanie", "SSE.Views.Toolbar.textCharts": "Grafy", "SSE.Views.Toolbar.textClockwise": "Otočiť v smere hodinových ručičiek", "SSE.Views.Toolbar.textColumn": "Stĺpec", "SSE.Views.Toolbar.textColumnSpark": "Stĺpec", "SSE.Views.Toolbar.textCompactToolbar": "Skryť panel s nástrojmi", "SSE.Views.Toolbar.textCounterCw": "Otočiť proti smeru hodinových ručičiek", - "SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo\n", - "SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore\n", + "SSE.Views.Toolbar.textDelLeft": "Posunúť bunky vľavo", + "SSE.Views.Toolbar.textDelUp": "Posunúť bunky hore", "SSE.Views.Toolbar.textDiagDownBorder": "Orámovanie diagonálne nadol", "SSE.Views.Toolbar.textDiagUpBorder": "Orámovanie diagonálne nahor", - "SSE.Views.Toolbar.textEntireCol": "Celý stĺpec\n\n", - "SSE.Views.Toolbar.textEntireRow": "Celý riadok\n\n", + "SSE.Views.Toolbar.textEntireCol": "Celý stĺpec", + "SSE.Views.Toolbar.textEntireRow": "Celý riadok", "SSE.Views.Toolbar.textFreezePanes": "Ukotviť priečky", "SSE.Views.Toolbar.textHideFBar": "Skryť riadok vzorcov", "SSE.Views.Toolbar.textHideGridlines": "Skryť mriežku", "SSE.Views.Toolbar.textHideHeadings": "Skryť záhlavia", - "SSE.Views.Toolbar.textHideTBar": "Skryť lištu nadpisu\n\n", - "SSE.Views.Toolbar.textHorizontal": "Horizontálny Text\n", - "SSE.Views.Toolbar.textInsDown": "Posunúť bunky dole\n\n", - "SSE.Views.Toolbar.textInsideBorders": "Vnútorné orámovanie\n\n", - "SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo\n", + "SSE.Views.Toolbar.textHideTBar": "Skryť lištu nadpisu", + "SSE.Views.Toolbar.textHorizontal": "Horizontálny Text", + "SSE.Views.Toolbar.textInsDown": "Posunúť bunky dole", + "SSE.Views.Toolbar.textInsideBorders": "Vnútorné orámovanie", + "SSE.Views.Toolbar.textInsRight": "Posunúť bunky vpravo", "SSE.Views.Toolbar.textItalic": "Kurzíva", - "SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo\n\n", + "SSE.Views.Toolbar.textLeftBorders": "Orámovanie vľavo", "SSE.Views.Toolbar.textLine": "Čiara", "SSE.Views.Toolbar.textLineSpark": "Čiara", - "SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne orámovanie\n\n", + "SSE.Views.Toolbar.textMiddleBorders": "Vnútorné horizontálne orámovanie", "SSE.Views.Toolbar.textMoreFormats": "Ďalšie formáty", "SSE.Views.Toolbar.textNewColor": "Pridať novú vlastnú farbu", "SSE.Views.Toolbar.textNoBorders": "Bez orámovania", - "SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie\n\n", + "SSE.Views.Toolbar.textOutBorders": "Vonkajšie orámovanie", "SSE.Views.Toolbar.textPie": "Koláčový graf", "SSE.Views.Toolbar.textPoint": "Bodový graf", "SSE.Views.Toolbar.textPrint": "Tlačiť", @@ -1648,7 +1648,7 @@ "SSE.Views.Toolbar.textTabFile": "Súbor", "SSE.Views.Toolbar.textTabHome": "Hlavná stránka", "SSE.Views.Toolbar.textTabInsert": "Vložiť", - "SSE.Views.Toolbar.textTopBorders": "Horné orámovanie\n\n", + "SSE.Views.Toolbar.textTopBorders": "Horné orámovanie", "SSE.Views.Toolbar.textUnderline": "Podčiarknuť", "SSE.Views.Toolbar.textWinLossSpark": "Zisk/strata", "SSE.Views.Toolbar.textZoom": "Priblíženie", @@ -1697,8 +1697,8 @@ "SSE.Views.Toolbar.tipPrint": "Tlačiť", "SSE.Views.Toolbar.tipRedo": "Krok vpred", "SSE.Views.Toolbar.tipSave": "Uložiť", - "SSE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.\n\n", - "SSE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.\n\n", + "SSE.Views.Toolbar.tipSaveCoauth": "Uložte zmeny, aby ich videli aj ostatní používatelia.", + "SSE.Views.Toolbar.tipSynchronize": "Dokument bol zmenený ďalším používateľom. Prosím, kliknite na uloženie zmien a opätovne načítajte aktualizácie.", "SSE.Views.Toolbar.tipTextOrientation": "Orientácia", "SSE.Views.Toolbar.tipUndo": "Krok späť", "SSE.Views.Toolbar.tipVAligh": "Vertikálne zarovnanie", @@ -1712,7 +1712,7 @@ "SSE.Views.Toolbar.txtClearFilter": "Vyčistiť filter", "SSE.Views.Toolbar.txtClearFormat": "Formát", "SSE.Views.Toolbar.txtClearFormula": "Funkcia", - "SSE.Views.Toolbar.txtClearHyper": "Hypertextové odkazy\n\n", + "SSE.Views.Toolbar.txtClearHyper": "Hypertextové odkazy", "SSE.Views.Toolbar.txtClearText": "Text", "SSE.Views.Toolbar.txtCurrency": "Mena", "SSE.Views.Toolbar.txtCustom": "Vlastný", @@ -1725,15 +1725,15 @@ "SSE.Views.Toolbar.txtFilter": "Filter", "SSE.Views.Toolbar.txtFormula": "Vložiť funkciu", "SSE.Views.Toolbar.txtFraction": "Zlomok", - "SSE.Views.Toolbar.txtFranc": "CHF švajčiarsky frank\n\n", + "SSE.Views.Toolbar.txtFranc": "CHF švajčiarsky frank", "SSE.Views.Toolbar.txtGeneral": "Všeobecné", - "SSE.Views.Toolbar.txtInteger": "Celé číslo\n", - "SSE.Views.Toolbar.txtManageRange": "Správca názvov\n\n", + "SSE.Views.Toolbar.txtInteger": "Celé číslo", + "SSE.Views.Toolbar.txtManageRange": "Správca názvov", "SSE.Views.Toolbar.txtMergeAcross": "Zlúčiť naprieč", "SSE.Views.Toolbar.txtMergeCells": "Zlúčiť bunky", "SSE.Views.Toolbar.txtMergeCenter": "Zlúčiť a centrovať", "SSE.Views.Toolbar.txtNamedRange": "Pomenované rozsahy", - "SSE.Views.Toolbar.txtNewRange": "Definovať meno\n\n", + "SSE.Views.Toolbar.txtNewRange": "Definovať meno", "SSE.Views.Toolbar.txtNoBorders": "Bez orámovania", "SSE.Views.Toolbar.txtNumber": "Číslo", "SSE.Views.Toolbar.txtPasteRange": "Vložiť názov", @@ -1745,16 +1745,16 @@ "SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme12": "Modul", "SSE.Views.Toolbar.txtScheme13": "Výnos", - "SSE.Views.Toolbar.txtScheme14": "Výklenok\n", + "SSE.Views.Toolbar.txtScheme14": "Výklenok", "SSE.Views.Toolbar.txtScheme15": "Pôvod", "SSE.Views.Toolbar.txtScheme16": "Papier", "SSE.Views.Toolbar.txtScheme17": "Slnovrat", "SSE.Views.Toolbar.txtScheme18": "Technika", "SSE.Views.Toolbar.txtScheme19": "Cestovanie", - "SSE.Views.Toolbar.txtScheme2": "Odtiene sivej\n", + "SSE.Views.Toolbar.txtScheme2": "Odtiene sivej", "SSE.Views.Toolbar.txtScheme20": "Mestský", "SSE.Views.Toolbar.txtScheme21": "Elán", - "SSE.Views.Toolbar.txtScheme3": "Vrchol\n", + "SSE.Views.Toolbar.txtScheme3": "Vrchol", "SSE.Views.Toolbar.txtScheme4": "Aspekt", "SSE.Views.Toolbar.txtScheme5": "Občiansky", "SSE.Views.Toolbar.txtScheme6": "Dav", @@ -1767,7 +1767,7 @@ "SSE.Views.Toolbar.txtSortAZ": "Zoradiť vzostupne", "SSE.Views.Toolbar.txtSortZA": "Zoradiť zostupne", "SSE.Views.Toolbar.txtSpecial": "Špeciálny", - "SSE.Views.Toolbar.txtTableTemplate": "Formátovať ako šablónu tabuľky\n\n", + "SSE.Views.Toolbar.txtTableTemplate": "Formátovať ako šablónu tabuľky", "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Čas", "SSE.Views.Toolbar.txtUnmerge": "Zrušiť zlúčenie buniek", diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index f1d103076..de423f844 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -283,7 +283,7 @@ "SSE.Views.ChartSettingsDlg.textFixed": "Določeno", "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", "SSE.Views.ChartSettingsDlg.textHide": "Hide", - "SSE.Views.ChartSettingsDlg.textHigh": "Visoko\n", + "SSE.Views.ChartSettingsDlg.textHigh": "Visoko", "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontalne osi", "SSE.Views.ChartSettingsDlg.textHorGrid": "Horizontalne mrežne črte", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontalen", diff --git a/apps/spreadsheeteditor/main/locale/tr.json b/apps/spreadsheeteditor/main/locale/tr.json index 5cd3122a2..5e8b00050 100644 --- a/apps/spreadsheeteditor/main/locale/tr.json +++ b/apps/spreadsheeteditor/main/locale/tr.json @@ -20,10 +20,13 @@ "Common.UI.SearchDialog.textTitle": "Bul ve Değiştir", "Common.UI.SearchDialog.textTitle2": "Bul", "Common.UI.SearchDialog.textWholeWords": "Sadece tam kelimeler", + "Common.UI.SearchDialog.txtBtnHideReplace": "Değiştirmeyi Gizle", "Common.UI.SearchDialog.txtBtnReplace": "Değiştir", "Common.UI.SearchDialog.txtBtnReplaceAll": "Hepsini Değiştir", "Common.UI.SynchronizeTip.textDontShow": "Bu mesajı bir daha gösterme", "Common.UI.SynchronizeTip.textSynchronize": "Döküman başka bir kullanıcı tarafından değiştirildi.
Lütfen değişikleri kaydetmek için tıklayın ve güncellemeleri yenileyin.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", + "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", "Common.UI.Window.cancelButtonText": "İptal Et", "Common.UI.Window.closeButtonText": "Kapat", "Common.UI.Window.noButtonText": "Hayır", @@ -34,6 +37,8 @@ "Common.UI.Window.textInformation": "Bilgi", "Common.UI.Window.textWarning": "Dikkat", "Common.UI.Window.yesButtonText": "Evet", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "adres:", "Common.Views.About.txtAscAddress": "Lubanas st. 125a-25, Riga, Letonya, AB, LV-1021", "Common.Views.About.txtLicensee": "LİSANS SAHİBİ", @@ -55,6 +60,7 @@ "Common.Views.Comments.textComments": "Yorumlar", "Common.Views.Comments.textEdit": "Düzenle", "Common.Views.Comments.textEnterCommentHint": "Yorumunuzu buraya giriniz", + "Common.Views.Comments.textHintAddComment": "Yorum Ekle", "Common.Views.Comments.textOpenAgain": "Tekrar Aç", "Common.Views.Comments.textReply": "Yanıtla", "Common.Views.Comments.textResolve": "Çöz", @@ -67,7 +73,19 @@ "Common.Views.CopyWarningDialog.textToPaste": "Yapıştırmak için", "Common.Views.DocumentAccessDialog.textLoading": "Yükleniyor...", "Common.Views.DocumentAccessDialog.textTitle": "Paylaşım Ayarları", + "Common.Views.Header.labelCoUsersDescr": "Belge şu an bir kaç kullanıcı tarafından düzenleniyor.", "Common.Views.Header.textBack": "Dökümanlara Git", + "Common.Views.Header.textSaveBegin": "Kaydediliyor...", + "Common.Views.Header.textSaveChanged": "Modifiyeli", + "Common.Views.Header.textSaveEnd": "Tüm değişiklikler kaydedildi", + "Common.Views.Header.textSaveExpander": "Tüm değişiklikler kaydedildi", + "Common.Views.Header.tipAccessRights": "Belge erişim haklarını yönet", + "Common.Views.Header.tipDownload": "Dosyayı indir", + "Common.Views.Header.tipGoEdit": "Mevcut belgeyi düzenle", + "Common.Views.Header.tipPrint": "Belgeyi yazdır", + "Common.Views.Header.tipViewUsers": "Kullanıcıları görüntüle ve belge erişim haklarını yönet", + "Common.Views.Header.txtAccessRights": "Erişim haklarını değiştir", + "Common.Views.Header.txtRename": "Yeniden adlandır", "Common.Views.ImageFromUrlDialog.cancelButtonText": "İptal Et", "Common.Views.ImageFromUrlDialog.okButtonText": "TAMAM", "Common.Views.ImageFromUrlDialog.textUrl": "Resim URL'sini yapıştır:", @@ -77,18 +95,139 @@ "Common.Views.OpenDialog.okButtonText": "TAMAM", "Common.Views.OpenDialog.txtDelimiter": "Sınırlayıcı", "Common.Views.OpenDialog.txtEncoding": "Kodlama", + "Common.Views.OpenDialog.txtIncorrectPwd": "Şifre hatalı.", + "Common.Views.OpenDialog.txtOther": "Diğer", + "Common.Views.OpenDialog.txtPassword": "Şifre", "Common.Views.OpenDialog.txtSpace": "Boşluk", "Common.Views.OpenDialog.txtTab": "Sekme", "Common.Views.OpenDialog.txtTitle": "%1 seçenekleri seçin", + "Common.Views.OpenDialog.txtTitleProtected": "Korumalı Dosya", + "Common.Views.PluginDlg.textLoading": "Yükleniyor", + "Common.Views.Plugins.groupCaption": "Eklentiler", + "Common.Views.Plugins.strPlugins": "Eklentiler", + "Common.Views.Plugins.textLoading": "Yükleniyor", + "Common.Views.Plugins.textStart": "Başlat", + "Common.Views.Plugins.textStop": "Durdur", + "Common.Views.RenameDialog.cancelButtonText": "İptal", + "Common.Views.RenameDialog.okButtonText": "Tamam", + "Common.Views.RenameDialog.textName": "Dosya adı", + "Common.Views.RenameDialog.txtInvalidName": "Dosya adı aşağıdaki karakterlerden herhangi birini içeremez:", + "SSE.Controllers.DocumentHolder.alignmentText": "Hizalama", + "SSE.Controllers.DocumentHolder.centerText": "Orta", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Sütunu Sil", + "SSE.Controllers.DocumentHolder.deleteRowText": "Satırı Sil", + "SSE.Controllers.DocumentHolder.deleteText": "Sil", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "Link referansı mevcut değil. Lütfen linki düzeltin veya silin.", "SSE.Controllers.DocumentHolder.guestText": "Misafir", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Sol Sütun", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Sağ Sütun", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Yukarı Satır", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Aşağı Satır", + "SSE.Controllers.DocumentHolder.insertText": "Ekle", + "SSE.Controllers.DocumentHolder.leftText": "Sol", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Uyarı", + "SSE.Controllers.DocumentHolder.rightText": "Sağ", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Sütun Genişliği {0} sembol ({1} piksel)", "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Satır Yüksekliği {0} puan ({1} piksel)", "SSE.Controllers.DocumentHolder.textCtrlClick": "CTRL'ye basın ve bağlantıya tıklayın", "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", + "SSE.Controllers.DocumentHolder.textSym": "sem", "SSE.Controllers.DocumentHolder.tipIsLocked": "Bu element başka bir kullanıcı tarafından düzenleniyor.", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Alt sınır ekle", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Kesir çizgisi ekle", + "SSE.Controllers.DocumentHolder.txtAddHor": "Yatay çizgi ekle", + "SSE.Controllers.DocumentHolder.txtAddLB": "Sol alt çizgi ekle", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Sol sınır ekle", + "SSE.Controllers.DocumentHolder.txtAddLT": "Sol üst çizgi ekle", + "SSE.Controllers.DocumentHolder.txtAddRight": "Sağ sınır ekle", + "SSE.Controllers.DocumentHolder.txtAddTop": "Üst sınır ekle", + "SSE.Controllers.DocumentHolder.txtAddVer": "Dikey çizgi ekle", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Karaktere uyarla", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Sınır özellikleri", + "SSE.Controllers.DocumentHolder.txtBottom": "Alt", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Sütun hizalama", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Argüman boyutunu azalt", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Argümanı sil", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Manüel sonu sil", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Çevreleyen karakterleri sil", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Çevreleyen karakterleri sil", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Denklemi sil", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Karakter sil", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Kökü sil", + "SSE.Controllers.DocumentHolder.txtExpand": "Genişlet ve sırala", + "SSE.Controllers.DocumentHolder.txtExpandSort": "Seçimin yanındaki veri sıralanmayacaktır. Seçimi genişleterek bitişik verilerin dahil edilmesini istiyor musunuz veya mevcut seçim ile devam etmek mi istiyorsunuz?", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Lineer fraksiyonu değiştir", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Eğimli fraksiyonu değiştir", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Yığılı fraksiyona değiştir", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Metin üstünde char", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Metin altında char", "SSE.Controllers.DocumentHolder.txtHeight": "Yükseklik", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Alt sınırı gizle", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Alt limiti gizle", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Kapatma parantezini gizle", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Dereceyi gizle", + "SSE.Controllers.DocumentHolder.txtHideHor": "Yatay çizgiyi gizle", + "SSE.Controllers.DocumentHolder.txtHideLB": "Sol alt çizgiyi gizle", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Sol sınırı gizle", + "SSE.Controllers.DocumentHolder.txtHideLT": "Sol üst çizgiyi gizle", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Açma parantezini gizle", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Yer tutucuyu gizle", + "SSE.Controllers.DocumentHolder.txtHideRight": "Sağ sınırı gizle", + "SSE.Controllers.DocumentHolder.txtHideTop": "Üst sınırı gizle", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Üst limiti gizle", + "SSE.Controllers.DocumentHolder.txtHideVer": "Dikey çizgiyi gizle", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Argüman boyutunu artır", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Sonuna argüman ekle", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Önüne argüman ekle", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Manüel son ekle", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Sonuna denklem ekle", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Önüne denklem ekle", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Sınır konumunu değiştir", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Metin üstüne limit", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Metin altına limit", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Argüman uzunluğuyla parantezleri eşle", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matris hizalama", + "SSE.Controllers.DocumentHolder.txtNoChoices": "Hücreyi doldurmak için seçenek bulunmuyor.
Yalnızca sütundaki metin değerleri ile değiştirilebilir.", + "SSE.Controllers.DocumentHolder.txtOverbar": "Metin üstünde bar", + "SSE.Controllers.DocumentHolder.txtPaste": "Yapıştır", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Sınırsız formül ", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Formül + sütun genişliği", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Hedef formatı", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Sadece formatla yapıştır", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formül + sayı formatı", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Sadece formülle yapıştır", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Formül + tüm biçimleme", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Linki yapıştır", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Bağlı resim", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Koşullu formatı birleştir", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Resim", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Kaynak formatılama", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpoz", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Değer + tüm biçim", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Değer + sayı biçimi", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Sadece değerle yapıştır", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Kesir barını kaldır", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Limiti kaldır", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Aksan karakterini kaldır", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Barı kaldır", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Script kaldır", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Altsimge kaldır", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Üstsimge kaldır", "SSE.Controllers.DocumentHolder.txtRowHeight": "Satır Yüksekliği", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Metinden sonra simge", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Metinden önce simge", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Alt sınırı göster", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Kapatma parantezini göster", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Dereceyi göster", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Açma parantezini göster", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Yer tutucuyu göster", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Üst sınırı göster", + "SSE.Controllers.DocumentHolder.txtSorting": "Sıralama", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Seçili olanları sırala", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Parantezleri genişlet", + "SSE.Controllers.DocumentHolder.txtTop": "Üst", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Metin altında bar", "SSE.Controllers.DocumentHolder.txtWidth": "Genişlik", "SSE.Controllers.LeftMenu.newDocumentTitle": "İsimlendirilmemiş spreadsheet", "SSE.Controllers.LeftMenu.textByColumns": "Sütunlarla", @@ -107,6 +246,7 @@ "SSE.Controllers.LeftMenu.textWorkbook": "Not defteri", "SSE.Controllers.LeftMenu.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.
Devam etmek istediğinizden emin misiniz?", "SSE.Controllers.Main.confirmMoveCellRange": "Hedef hücre aralığı veri içerebilir. Operasyona devam etmek istiyor musunuz?", + "SSE.Controllers.Main.confirmPutMergeRange": "Kaynak veri birleştirilmiş hücreler içeriyor.
Tabloya yapıştırılmadan önce birleştirmeleri kaldırılmıştır.", "SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", "SSE.Controllers.Main.criticalErrorExtText": "Döküman listesine dönmek için \"TAMAM\"'a tıklayın", "SSE.Controllers.Main.criticalErrorTitle": "Hata", @@ -114,6 +254,7 @@ "SSE.Controllers.Main.downloadErrorText": "Yükleme başarısız oldu.", "SSE.Controllers.Main.downloadTextText": "Spreadsheet yükleniyor...", "SSE.Controllers.Main.downloadTitleText": "Spreadsheet Yükleniyor", + "SSE.Controllers.Main.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", "SSE.Controllers.Main.errorArgsRange": "Girilen formülde hata oluştu.
Yanlış değişken aralığı kullanıldı.", "SSE.Controllers.Main.errorAutoFilterChange": "Operasyon çalışma tablonuzdaki tablodaki hücreleri kaldırmaya çalıştığından izin verilmiyor.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operasyon çalışma tablosunda filtreli bir aralığı değiştirmeye çalışıyor ve tamamlanamadı.
Operasyonu tamamlamak için tablodan Otomatik Filtreleri kaldırın.", @@ -122,6 +263,7 @@ "SSE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Döküman şu an düzenlenemez.", "SSE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
When you click the 'OK' button, you will be prompted to download the document.

Find more information about connecting Document Server here", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
Tek bir aralık seçin ve tekrar deneyin.", "SSE.Controllers.Main.errorCountArg": "Girilen formülde hata oluştu.
Yanlış değişken sayısı kullanıldı.", "SSE.Controllers.Main.errorCountArgExceed": "Girilen formülde hata oluştu.
Değişken sayısı aşıldı.", "SSE.Controllers.Main.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", @@ -134,21 +276,31 @@ "SSE.Controllers.Main.errorFillRange": "Seçilen hücre aralığı doldurulamıyor.
Birleştirilen tüm hücrelerin aynı boyutta olması gerekir.", "SSE.Controllers.Main.errorFormulaName": "Girilen formülde hata oluştu.
Yanlış formül ismi kullanıldı.", "SSE.Controllers.Main.errorFormulaParsing": "Formül ögelerine ayrılırken dahili hata", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Fonksiyon olmayan bir iş tablosuna bağlı.
Lütfen veriyi kontrol edin ve tekrar deneyin.", "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", "SSE.Controllers.Main.errorKeyEncrypt": "Bilinmeyen anahtar tanımlayıcı", "SSE.Controllers.Main.errorKeyExpire": "Anahtar tanımlayıcının süresi doldu", "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "SSE.Controllers.Main.errorLockedCellPivot": "Pivot tablodaki veriyi değiştiremezsiniz.", "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", "SSE.Controllers.Main.errorMoveRange": "Birleştirilmiş hücrenin parçası değiştirilemez", "SSE.Controllers.Main.errorOpenWarning": "The length of one of the formulas in the file exceeded
the allowed number of characters and it was removed.", "SSE.Controllers.Main.errorOperandExpected": "İşlemci beklentili", "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area does not match.
Please select an area with the same size or click the first cell in a row to paste the copied cells.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Maalesef 1500 sayfadan fazla yazdırmak mevcut program sürümü ile mümkün değildir.
Bu kısıt, önümüzdeki güncellemeler ile kaldırılacaktır.", "SSE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız oldu", + "SSE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", + "SSE.Controllers.Main.errorSessionAbsolute": "Belge düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", + "SSE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", + "SSE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", "SSE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", + "SSE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış.
Lütfen Belge Sunucu yöneticinize başvurun.", + "SSE.Controllers.Main.errorTokenExpire": "Belge güvenlik belirteci süresi doldu.
Lütfen Belge Sunucusu yöneticinize başvurun.", "SSE.Controllers.Main.errorUnexpectedGuid": "Harici hata.
Beklenmeyen GUID. Hata devam ederse lütfen destekle iletişime geçiniz.", "SSE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.", "SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", "SSE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", + "SSE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı geri yüklenene kadar indirme veya yazdırma yapamazsınız.", "SSE.Controllers.Main.errorWrongBracketsCount": "Girilen formülde hata oluştu.
Yanlış sayıda köşeli parantez kullanıldı.", "SSE.Controllers.Main.errorWrongOperator": "Girilen formülde hata oluştu.
Yanlış operatör kullanıldı.", "SSE.Controllers.Main.leavePageText": "Spreadsheet'te kaydedilmemiş değişiklikler var. Kaydetmek için 'Bu Sayfada Kal'a daha sonra da 'Kaydet'e tıklayınız.Kaydedilmemiş tüm değişiklikleri göz ardı etmek için 'Bu Sayfadan Ayrıl'a tıklayın.", @@ -162,6 +314,7 @@ "SSE.Controllers.Main.loadImageTitleText": "Resim yükleniyor", "SSE.Controllers.Main.loadingDocumentTitleText": "Spreadsheet yükleniyor", "SSE.Controllers.Main.notcriticalErrorTitle": "Dikkat", + "SSE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", "SSE.Controllers.Main.openTextText": "Spreadsheet açılıyor...", "SSE.Controllers.Main.openTitleText": "Spreadsheet Açılıyor", "SSE.Controllers.Main.pastInMergeAreaError": "Birleştirilmiş hücrenin parçası değiştirilemez", @@ -170,22 +323,29 @@ "SSE.Controllers.Main.reloadButtonText": "Sayfayı Yenile", "SSE.Controllers.Main.requestEditFailedMessageText": "Şu bu döküman biri tarafından düzenleniyor. Lütfen daha sonra tekrar deneyin.", "SSE.Controllers.Main.requestEditFailedTitleText": "Erişim reddedildi", + "SSE.Controllers.Main.saveErrorText": "Dosya kaydedilirken bir hata oluştu", "SSE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor", "SSE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", "SSE.Controllers.Main.saveTextText": "Spreadsheet kaydediliyor...", "SSE.Controllers.Main.saveTitleText": "Spreadsheet Kaydediliyor", "SSE.Controllers.Main.textAnonymous": "Anonim", + "SSE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", "SSE.Controllers.Main.textCloseTip": "Ucu kapamak için tıklayın", "SSE.Controllers.Main.textConfirm": "Konfirmasyon", + "SSE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin", "SSE.Controllers.Main.textLoadingDocument": "Spreadsheet yükleniyor", "SSE.Controllers.Main.textNo": "Hayır", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", "SSE.Controllers.Main.textPleaseWait": "Operasyon beklenenden daha çok vakit alabilir. Lütfen bekleyin...", "SSE.Controllers.Main.textRecalcFormulas": "Formüller hesaplanıyor...", "SSE.Controllers.Main.textShape": "Şekil", "SSE.Controllers.Main.textStrict": "Strict mode", "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", "SSE.Controllers.Main.textYes": "Evet", + "SSE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", "SSE.Controllers.Main.titleRecalcFormulas": "Hesaplanıyor...", + "SSE.Controllers.Main.titleServerVersion": "Editör güncellendi", + "SSE.Controllers.Main.txtAccent": "Aksan", "SSE.Controllers.Main.txtArt": "Your text here", "SSE.Controllers.Main.txtBasicShapes": "Temel Şekiller", "SSE.Controllers.Main.txtButtons": "Tuşlar", @@ -199,6 +359,27 @@ "SSE.Controllers.Main.txtRectangles": "Dikdörtgenler", "SSE.Controllers.Main.txtSeries": "Seriler", "SSE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", + "SSE.Controllers.Main.txtStyle_Bad": "Kötü", + "SSE.Controllers.Main.txtStyle_Calculation": "Hesaplama", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Hücreyi İşaretle", + "SSE.Controllers.Main.txtStyle_Comma": "Virgül", + "SSE.Controllers.Main.txtStyle_Currency": "Para Birimi", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Açıklayıcı Metin", + "SSE.Controllers.Main.txtStyle_Good": "İyi", + "SSE.Controllers.Main.txtStyle_Heading_1": "Başlık 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Başlık 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Başlık 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Başlık 4", + "SSE.Controllers.Main.txtStyle_Input": "Girdi", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Bağlı Hücre", + "SSE.Controllers.Main.txtStyle_Neutral": "Nötr", + "SSE.Controllers.Main.txtStyle_Normal": "Normal", + "SSE.Controllers.Main.txtStyle_Note": "Not", + "SSE.Controllers.Main.txtStyle_Output": "Çıktı", + "SSE.Controllers.Main.txtStyle_Percent": "Yüzde", + "SSE.Controllers.Main.txtStyle_Title": "Başlık", + "SSE.Controllers.Main.txtStyle_Total": "Toplam", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Uyarı Metni", "SSE.Controllers.Main.txtXAxis": "X Ekseni", "SSE.Controllers.Main.txtYAxis": "Y Ekseni", "SSE.Controllers.Main.unknownErrorText": "Bilinmeyen hata.", @@ -210,6 +391,8 @@ "SSE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", "SSE.Controllers.Main.warnBrowserIE9": "Uygulama IE9'da düşük yeteneklere sahip. IE10 yada daha yükseğini kullanınız", "SSE.Controllers.Main.warnBrowserZoom": "Tarayıcınızın mevcut zum ayarı tam olarak desteklenmiyor. Ctrl+0'a basarak varsayılan zumu sıfırlayınız.", + "SSE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", + "SSE.Controllers.Main.warnNoLicense": "ONLYOFFICE'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, belge sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı).
Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.", "SSE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", "SSE.Controllers.Print.strAllSheets": "Tüm Tablolar", "SSE.Controllers.Print.textWarning": "Dikkat", @@ -220,46 +403,436 @@ "SSE.Controllers.Statusbar.warnDeleteSheet": "Çalışma tablosu veri içerebilir. Devam etmek istediğinizden emin misiniz?", "SSE.Controllers.Statusbar.zoomText": "Zum {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the device fonts, the saved font will be used when it is available.
Do you want to continue?", + "SSE.Controllers.Toolbar.errorMaxRows": "HATA! Her grafik için maksimum veri serileri sayısı 255'tir", + "SSE.Controllers.Toolbar.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", + "SSE.Controllers.Toolbar.textAccent": "Aksanlar", + "SSE.Controllers.Toolbar.textBracket": "Köşeli Ayraç", "SSE.Controllers.Toolbar.textCancel": "İptal Et", "SSE.Controllers.Toolbar.textFontSizeErr": "Girilen değer yanlış.
Lütfen 1 ile 409 arasında sayısal değer giriniz.", + "SSE.Controllers.Toolbar.textFraction": "Kesirler", + "SSE.Controllers.Toolbar.textFunction": "Fonksiyonlar", + "SSE.Controllers.Toolbar.textIntegral": "İntegraller", + "SSE.Controllers.Toolbar.textLargeOperator": "Büyük Operatörler", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limit ve Logaritma", + "SSE.Controllers.Toolbar.textLongOperation": "Uzun işlem", + "SSE.Controllers.Toolbar.textMatrix": "Matrisler", + "SSE.Controllers.Toolbar.textOperator": "Operatörler", + "SSE.Controllers.Toolbar.textRadical": "Kökler", + "SSE.Controllers.Toolbar.textScript": "Simgeler", + "SSE.Controllers.Toolbar.textSymbols": "Semboller", "SSE.Controllers.Toolbar.textWarning": "Dikkat", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Akut", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Yukarı Sağ-Sol Ok", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Sola Yukarı Ok", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Sağa Yukarı Ok", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Çubuk grafik", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Altçizgi", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Üstçizgi", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Kutulu Formül (Yer Tutuculu)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Kutulu formül (örnek)", + "SSE.Controllers.Toolbar.txtAccent_Check": "İşaretle", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Altparantez", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Üstparantez", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vektör A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "Çizgili ABC", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y Üstçizgili", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Üç Nokta", + "SSE.Controllers.Toolbar.txtAccent_DDot": "İki Nokta", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Nokta", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Çift Üst Çizgi", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Yavaş", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Aşağı Gruplama Karakteri", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Yukarı Gruplama Karakteri", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Sola Yukarı Süslü Ok", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Sağa Yukarı Süslü Ok", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Şapka", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Kısa", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Ayırıcılı Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Ayırıcılı Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Ayırıcılı Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Vakalar (İki Koşullu)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Vakalar (Üç Koşullu)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Yığın Obje", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Yığın Obje", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Vakalar Örnek", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binom Katsayı", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binom Katsayı", + "SSE.Controllers.Toolbar.txtBracket_Line": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Round": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Ayırıcılı Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Square": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Köşeli Ayraç", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Tek Parantez", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Tek Parantez", + "SSE.Controllers.Toolbar.txtExpand": "Genişlet ve sırala", + "SSE.Controllers.Toolbar.txtExpandSort": "Seçimin yanındaki veri sıralanmayacaktır. Seçimi genişleterek bitişik verilerin dahil edilmesini istiyor musunuz veya mevcut seçim ile devam etmek mi istiyorsunuz?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Eğimli Kesir", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferansiyel", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferansiyel", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferansiyel", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferansiyel", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Lineer Kesir", + "SSE.Controllers.Toolbar.txtFractionPi_2": "2 Üzeri Pi", + "SSE.Controllers.Toolbar.txtFractionSmall": "Küçük Kesir", + "SSE.Controllers.Toolbar.txtFractionVertical": "Yığın Kesir", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Ters Kosinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Hiperbolik Ters Kosinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Ters Kotanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Hiperbolik Ters Kotanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Ters Kosekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Hiperbolik Ters Kosekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Ters Sekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Hiperbolik Ters Sekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Ters Sinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Hiperbolik Ters Sinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Ters Tanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Hiperbolik Ters Tanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Kosinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Hiperbolik Kosinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Kotanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Hiperbolik Kotanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Kosekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Hiperbolik Kosekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sin teta", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tanjant formülü", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Sekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Hiperbolik Sekant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Sinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Hiperbolik Sinüs Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Tanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Hiperbolik Tanjant Fonksiyonu", + "SSE.Controllers.Toolbar.txtIntegral": "İntegral", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferansiyel teta", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferansiyel x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferansiyel y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "İntegral", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Çift İntegral", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Çift İntegral", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Çift İntegral", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Kontur İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Kontur İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Yüzey İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Yüzey İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Yüzey İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Kontur İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Hacim İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Hacim İntegrali", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Hacim İntegrali", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "İntegral", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Üçlü İntegral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Üçlü İntegral", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Üçlü İntegral", + "SSE.Controllers.Toolbar.txtInvalidRange": "HATA! Geçersiz hücre aralığı", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Ortak İş", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Ortak İş", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Ortak İş", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Ortak İş", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Ortak İş", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Ürün", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Bileşim", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Kesişim", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Kesişim", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Kesişim", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Kesişim", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Kesişim", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Ürün", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Ürün", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Ürün", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Ürün", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Ürün", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Toplama", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Bileşim", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Bileşim", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Bileşim", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Bileşim", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Bileşim", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit Örneği", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maksimum Örnek", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Doğal logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritma", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maksimum", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Köşeli Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Köşeli Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Köşeli Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Köşeli Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 Boş Matris", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Temel Noktalar", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Orta Noktalar", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diyagonal Noktalar", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Dikey Noktalar", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Seyrek Matris", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Seyrek Matris", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 Birim Matrisi", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 Birim Matrisi", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 Birim Matrisi", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 Birim Matrisi", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Aşağı Sağ-Sol Ok", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Yukarı Sağ-Sol Ok", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Sola Aşağı Ok", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Sola Yukarı Ok", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Sağa Aşağı Ok", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Sağa Yukarı Ok", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Sütun Boyutu", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Getiriler", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta Miktarları", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Tanımla eşittir", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta Eşittir", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Aşağı Sağ-Sol Ok", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Yukarı Sağ-Sol Ok", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Sola Aşağı Ok", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Sola Yukarı Ok", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Sağa Aşağı Ok", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Sağa Yukarı Ok", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Eşit eşittir", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Eksi eşit", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Artı Eşittir", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Ölçüm", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Kök", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Kök", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Dereceli Kare Kök", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Küp Kökü", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Dereceli Kök", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "Kare Kök", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Simge", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Simge", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Simge", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Simge", + "SSE.Controllers.Toolbar.txtScriptSub": "Altsimge", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Altsimge-Üstsimge", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Sol altsimge-üstsimge", + "SSE.Controllers.Toolbar.txtScriptSup": "Üstsimge", + "SSE.Controllers.Toolbar.txtSorting": "Sıralama", + "SSE.Controllers.Toolbar.txtSortSelected": "Seçili olanları sırala", + "SSE.Controllers.Toolbar.txtSymbol_about": "Yaklaşık", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Tamamlayıcı", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Yaklaşık Değer", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Asterisk Operatörü", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Madde Operatörü", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Kesişim", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Küp Kökü", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Orta Yatay Elipsler", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Derece Santigrat", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Yaklaşık", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Bileşim", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Aşağı Sağ Diyagonal Elips", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Derece", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Bölme İşareti", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Aşağı Oku", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Boş Küme", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Eşittir", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Eşittir", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "Mevcut", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Faktöriyel", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Derece Fahrenhayt", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Tümüne", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gama", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Büyük Eşittir", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Çok büyüktür", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Büyüktür", + "SSE.Controllers.Toolbar.txtSymbol_in": "Elemanı", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Orantısal", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Sonsuz", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Sol Ok", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Sol-Sağ Ok", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Küçük eşittir", + "SSE.Controllers.Toolbar.txtSymbol_less": "Küçüktür", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Çok Küçüktür", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Eksi", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Eksi Artı", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Eşit değildir", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Üye İçerir", + "SSE.Controllers.Toolbar.txtSymbol_not": "Değildir simgesi", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "Mevcut Değil", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Parçalı Diferansiyel", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Yüzde", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Artı", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Artı Eksi", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Orantısal", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Dördüncü kök", + "SSE.Controllers.Toolbar.txtSymbol_qed": "İspat Sonu", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Yukarı Sağ Diyagonal Elips", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Sağ Ok", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Kök İşareti", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "Bu nedenle", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Teta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Çarpma İşareti", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Yukarı Oku", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Teta Varyantı", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Dikey Elips", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.warnLongOperation": "Yapmak istediğiniz işlemin tamamlanması uzun sürebilir.
Devam etmek istediğinize emin misiniz?", "SSE.Controllers.Toolbar.warnMergeLostData": "Sadece üst sol hücredeki veri birleştirilmiş hücrede kalacaktır.
Devam etmek istediğinizden emin misiniz?", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Özel Filtre", "SSE.Views.AutoFilterDialog.cancelButtonText": "İptal Et", "SSE.Views.AutoFilterDialog.okButtonText": "TAMAM", + "SSE.Views.AutoFilterDialog.textAddSelection": "Seçimi filtreye ekle", "SSE.Views.AutoFilterDialog.textEmptyItem": "{Boşluklar}", "SSE.Views.AutoFilterDialog.textSelectAll": "Hepsini seç", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Tüm Arama Sonuçlarını Seç", "SSE.Views.AutoFilterDialog.textWarning": "Dikkat", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Ortalama üstü", + "SSE.Views.AutoFilterDialog.txtBegins": "Başlangıç...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Ortalama altı", + "SSE.Views.AutoFilterDialog.txtBetween": "Arasında...", + "SSE.Views.AutoFilterDialog.txtClear": "Temizle", + "SSE.Views.AutoFilterDialog.txtContains": "İçerir...", "SSE.Views.AutoFilterDialog.txtEmpty": "Hücre filtresi gir", + "SSE.Views.AutoFilterDialog.txtEnds": "Biter...", + "SSE.Views.AutoFilterDialog.txtEquals": "Eşittir...", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Hücre rengine göre filtrele", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Yazı rengine göre filtrele", + "SSE.Views.AutoFilterDialog.txtGreater": "Büyüktür...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Büyük eşittir...", + "SSE.Views.AutoFilterDialog.txtLess": "Küçüktür...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Küçük eşittir...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Başlamaz...", + "SSE.Views.AutoFilterDialog.txtNotContains": "İçermez...", + "SSE.Views.AutoFilterDialog.txtNotEnds": "Bitmez...", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Eşit değildir...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Sayı filtresi", + "SSE.Views.AutoFilterDialog.txtReapply": "Yeniden uygula", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Hücre rengine göre sırala", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Yazı rengine göre sırala", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Büyükten Küçüğe Sırala", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Küçükten Büyüğe Sırala", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Metin filtresi", "SSE.Views.AutoFilterDialog.txtTitle": "Filtre", + "SSE.Views.AutoFilterDialog.txtTop10": "İlk 10", "SSE.Views.AutoFilterDialog.warnNoSelected": "En az bir değer seçmelisiniz", "SSE.Views.CellEditor.textManager": "Manager", "SSE.Views.CellEditor.tipFormula": "Fonksiyon Ekle", "SSE.Views.CellRangeDialog.errorMaxRows": "HATA! Her grafik için maksimum veri serileri sayısı 255'tir", + "SSE.Views.CellRangeDialog.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", "SSE.Views.CellRangeDialog.textCancel": "İptal Et", "SSE.Views.CellRangeDialog.txtEmpty": "Bu alan gereklidir", "SSE.Views.CellRangeDialog.txtInvalidRange": "HATA! Geçersiz hücre aralığı", "SSE.Views.CellRangeDialog.txtTitle": "Veri Aralığı Seç", + "SSE.Views.ChartSettings.strLineWeight": "Satır Genişliği", + "SSE.Views.ChartSettings.strSparkColor": "Renk", + "SSE.Views.ChartSettings.strTemplate": "Şablon", "SSE.Views.ChartSettings.textAdvanced": "Gelişmiş ayarları göster", "SSE.Views.ChartSettings.textArea": "Bölge Grafiği", "SSE.Views.ChartSettings.textBar": "Çubuk grafik", + "SSE.Views.ChartSettings.textBorderSizeErr": "Girilen değer yanlış.
Lütfen 0 ile 1584 pt arasında değer giriniz.", "SSE.Views.ChartSettings.textChartType": "Grafik Tipini Değiştir", "SSE.Views.ChartSettings.textColumn": "Sütun grafik", + "SSE.Views.ChartSettings.textColumnSpark": "Sütun", "SSE.Views.ChartSettings.textEditData": "Veri düzenle", + "SSE.Views.ChartSettings.textFirstPoint": "İlk Nokta", "SSE.Views.ChartSettings.textHeight": "Yükseklik", + "SSE.Views.ChartSettings.textHighPoint": "Yüksek Nokta", "SSE.Views.ChartSettings.textKeepRatio": "Sabit Orantılar", + "SSE.Views.ChartSettings.textLastPoint": "Son Nokta", "SSE.Views.ChartSettings.textLine": "Çizgi grafiği", + "SSE.Views.ChartSettings.textLineSpark": "Çizgi Grafiği", + "SSE.Views.ChartSettings.textLowPoint": "Düşük Nokta", + "SSE.Views.ChartSettings.textMarkers": "İşaretler", + "SSE.Views.ChartSettings.textNegativePoint": "Negatif Nokta", + "SSE.Views.ChartSettings.textNewColor": "Yeni Özel Renk Ekle", "SSE.Views.ChartSettings.textPie": "Dilim grafik", "SSE.Views.ChartSettings.textPoint": "Nokta grafiği", + "SSE.Views.ChartSettings.textRanges": "Veri Aralığı", + "SSE.Views.ChartSettings.textSelectData": "Veriyi Seç", + "SSE.Views.ChartSettings.textShow": "Göster", "SSE.Views.ChartSettings.textSize": "Boyut", "SSE.Views.ChartSettings.textStock": "Stok Grafiği", "SSE.Views.ChartSettings.textStyle": "Stil", + "SSE.Views.ChartSettings.textSurface": "Yüzey", + "SSE.Views.ChartSettings.textType": "Tip", "SSE.Views.ChartSettings.textWidth": "Genişlik", + "SSE.Views.ChartSettings.textWinLossSpark": "Kazanç/Kayıp", "SSE.Views.ChartSettingsDlg.cancelButtonText": "İptal Et", "SSE.Views.ChartSettingsDlg.errorMaxRows": "HATA! Her grafik için maksimum veri serileri sayısı 255'tir", "SSE.Views.ChartSettingsDlg.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı. ", + "SSE.Views.ChartSettingsDlg.textAlt": "Alternatif Metin", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Açıklama", + "SSE.Views.ChartSettingsDlg.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Başlık", "SSE.Views.ChartSettingsDlg.textArea": "Bölge Grafiği", "SSE.Views.ChartSettingsDlg.textAuto": "Otomatik", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Her Biri için Otomatik", "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Eksen kesişmeleri", "SSE.Views.ChartSettingsDlg.textAxisOptions": "Eksen Seçenekleri", "SSE.Views.ChartSettingsDlg.textAxisPos": "Eksen Pozisyonu", @@ -267,11 +840,13 @@ "SSE.Views.ChartSettingsDlg.textBar": "Çubuk grafik", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Tik İşaretleri Arasında", "SSE.Views.ChartSettingsDlg.textBillions": "Milyar", + "SSE.Views.ChartSettingsDlg.textBottom": "Alt", "SSE.Views.ChartSettingsDlg.textCategoryName": "Kategori İsmi", "SSE.Views.ChartSettingsDlg.textCenter": "Orta", "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Grafik Elementleri &
Grafik Göstergesi", "SSE.Views.ChartSettingsDlg.textChartTitle": "Grafik başlığı", "SSE.Views.ChartSettingsDlg.textColumn": "Sütun grafik", + "SSE.Views.ChartSettingsDlg.textColumnSpark": "Sütun", "SSE.Views.ChartSettingsDlg.textCross": "Kesişme", "SSE.Views.ChartSettingsDlg.textCustom": "Özel", "SSE.Views.ChartSettingsDlg.textDataColumns": "sütunlarda", @@ -280,8 +855,13 @@ "SSE.Views.ChartSettingsDlg.textDataRows": "satırlarda", "SSE.Views.ChartSettingsDlg.textDataSeries": "Veri serileri", "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Göstergeyi görüntüle", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Gizli ve Boş hücreler", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Veri noktalarını çizgi ile bağlayın", + "SSE.Views.ChartSettingsDlg.textFit": "Genişliğe Sığdır", "SSE.Views.ChartSettingsDlg.textFixed": "Düzeltildi", + "SSE.Views.ChartSettingsDlg.textGaps": "Aralıklar", "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", + "SSE.Views.ChartSettingsDlg.textGroup": "Grup Sparkline", "SSE.Views.ChartSettingsDlg.textHide": "Hide", "SSE.Views.ChartSettingsDlg.textHigh": "Yüksek", "SSE.Views.ChartSettingsDlg.textHorAxis": "Yatay Eksen", @@ -300,6 +880,7 @@ "SSE.Views.ChartSettingsDlg.textLabelOptions": "Etiket Seçenekleri", "SSE.Views.ChartSettingsDlg.textLabelPos": "Etiket Pozisyonu", "SSE.Views.ChartSettingsDlg.textLayout": "Tasarım", + "SSE.Views.ChartSettingsDlg.textLeft": "Sol", "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Sol Bindirme", "SSE.Views.ChartSettingsDlg.textLegendBottom": "Alt", "SSE.Views.ChartSettingsDlg.textLegendLeft": "Sol", @@ -308,6 +889,8 @@ "SSE.Views.ChartSettingsDlg.textLegendTop": "Üst", "SSE.Views.ChartSettingsDlg.textLine": "Çizgi grafiği", "SSE.Views.ChartSettingsDlg.textLines": "Satırlar", + "SSE.Views.ChartSettingsDlg.textLineSpark": "Çizgi Grafiği", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Konum Aralığı", "SSE.Views.ChartSettingsDlg.textLow": "Düşük", "SSE.Views.ChartSettingsDlg.textMajor": "Majör", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Majör ve Minör", @@ -330,25 +913,36 @@ "SSE.Views.ChartSettingsDlg.textPie": "Dilim grafik", "SSE.Views.ChartSettingsDlg.textPoint": "Nokta grafiği", "SSE.Views.ChartSettingsDlg.textReverse": "Ters sıralanmış değerler", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Sırayı tersine çevir", + "SSE.Views.ChartSettingsDlg.textRight": "Sağ", "SSE.Views.ChartSettingsDlg.textRightOverlay": "Sağ Bindirme", "SSE.Views.ChartSettingsDlg.textRotated": "Döndürüldü", + "SSE.Views.ChartSettingsDlg.textSameAll": "Hepsi Aynı", "SSE.Views.ChartSettingsDlg.textSelectData": "Veri Seç", "SSE.Views.ChartSettingsDlg.textSeparator": "Veri Etiketi Ayırıcı", "SSE.Views.ChartSettingsDlg.textSeriesName": "Seri İsmi", "SSE.Views.ChartSettingsDlg.textShow": "Show", "SSE.Views.ChartSettingsDlg.textShowAxis": "Ekseni görüntüle", "SSE.Views.ChartSettingsDlg.textShowBorders": "Grafik sınırlarını görüntüle", + "SSE.Views.ChartSettingsDlg.textShowData": "Gizli satır ve sütunlardaki veriyi göster", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Boş hücreleri göster", "SSE.Views.ChartSettingsDlg.textShowGrid": "Kılavuz çizgileri", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Ekseni Göster", "SSE.Views.ChartSettingsDlg.textShowValues": "Grafik değerlerini görüntüle", + "SSE.Views.ChartSettingsDlg.textSingle": "Tek Sparkline", "SSE.Views.ChartSettingsDlg.textSmooth": "Düz", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Aralıkları", "SSE.Views.ChartSettingsDlg.textStock": "Stok Grafiği", "SSE.Views.ChartSettingsDlg.textStraight": "Düz", "SSE.Views.ChartSettingsDlg.textStyle": "Stil", + "SSE.Views.ChartSettingsDlg.textSurface": "Yüzey", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", "SSE.Views.ChartSettingsDlg.textThousands": "Binlerce", "SSE.Views.ChartSettingsDlg.textTickOptions": "Tik Seçenekleri", "SSE.Views.ChartSettingsDlg.textTitle": "Grafik - Gelişmiş Ayarlar", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Gelişmiş Ayarlar", + "SSE.Views.ChartSettingsDlg.textTop": "Üst", "SSE.Views.ChartSettingsDlg.textTrillions": "Trilyonlarca", "SSE.Views.ChartSettingsDlg.textType": "Tip", "SSE.Views.ChartSettingsDlg.textTypeData": "Tip & Veri", @@ -358,8 +952,10 @@ "SSE.Views.ChartSettingsDlg.textVertAxis": "Dikey Eksen", "SSE.Views.ChartSettingsDlg.textVertGrid": "Dikey Çizgi Kılavuzları", "SSE.Views.ChartSettingsDlg.textVertTitle": "Dikey Eksen Başlığı", + "SSE.Views.ChartSettingsDlg.textWinLossSpark": "Kazanç/Kayıp", "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Eksen Başlığı", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y eksen başlığı", + "SSE.Views.ChartSettingsDlg.textZero": "Sıfır", "SSE.Views.ChartSettingsDlg.txtEmpty": "Bu alan gereklidir", "SSE.Views.DigitalFilterDialog.cancelButtonText": "İptal Et", "SSE.Views.DigitalFilterDialog.capAnd": "Ve", @@ -381,66 +977,100 @@ "SSE.Views.DigitalFilterDialog.textUse1": "Herhangi bir tek karakteri sunmak için ?'ini kullanın", "SSE.Views.DigitalFilterDialog.textUse2": "Herhangi bir karakter serisini sunmak için *'ı kullanın", "SSE.Views.DigitalFilterDialog.txtTitle": "Özel Filtre", + "SSE.Views.DocumentHolder.advancedImgText": "Resim Gelişmiş Ayarlar", "SSE.Views.DocumentHolder.advancedShapeText": "Şekil Gelişmiş Ayarlar", "SSE.Views.DocumentHolder.bottomCellText": "Alta Hizala", + "SSE.Views.DocumentHolder.bulletsText": "Madde ve Sayılar", "SSE.Views.DocumentHolder.centerCellText": "Ortaya Hizala", "SSE.Views.DocumentHolder.chartText": "Grafik Gelişmiş Ayarlar", + "SSE.Views.DocumentHolder.deleteColumnText": "Sütun", + "SSE.Views.DocumentHolder.deleteRowText": "Satır", + "SSE.Views.DocumentHolder.deleteTableText": "Tablo", "SSE.Views.DocumentHolder.direct270Text": "Rotate at 270°", "SSE.Views.DocumentHolder.direct90Text": "Rotate at 90°", "SSE.Views.DocumentHolder.directHText": "Horizontal", "SSE.Views.DocumentHolder.directionText": "Text Direction", "SSE.Views.DocumentHolder.editChartText": "Veri düzenle", "SSE.Views.DocumentHolder.editHyperlinkText": "Hiper bağı düzenle", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Sol Sütun", + "SSE.Views.DocumentHolder.insertColumnRightText": "Sağ Sütun", + "SSE.Views.DocumentHolder.insertRowAboveText": "Yukarı Satır", + "SSE.Views.DocumentHolder.insertRowBelowText": "Aşağı Satır", "SSE.Views.DocumentHolder.removeHyperlinkText": "Hiper bağı kaldır", + "SSE.Views.DocumentHolder.selectColumnText": "Tüm sütun", + "SSE.Views.DocumentHolder.selectDataText": "Sütun Verisi", + "SSE.Views.DocumentHolder.selectRowText": "Satır", + "SSE.Views.DocumentHolder.selectTableText": "Tablo", "SSE.Views.DocumentHolder.textArrangeBack": "Arkaplana gönder", - "SSE.Views.DocumentHolder.textArrangeBackward": "Geri Taşı", + "SSE.Views.DocumentHolder.textArrangeBackward": "Geri Gönder", "SSE.Views.DocumentHolder.textArrangeForward": "İleri Taşı", "SSE.Views.DocumentHolder.textArrangeFront": "Önplana Getir", + "SSE.Views.DocumentHolder.textEntriesList": "Açılır listeden seç", "SSE.Views.DocumentHolder.textFreezePanes": "Parçaları Dondur", + "SSE.Views.DocumentHolder.textNone": "Hiçbiri", + "SSE.Views.DocumentHolder.textUndo": "Geri Al", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.topCellText": "Üste Hizala", "SSE.Views.DocumentHolder.txtAddComment": "Yorum Ekle", "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", "SSE.Views.DocumentHolder.txtArrange": "Düzenle", "SSE.Views.DocumentHolder.txtAscending": "Artan", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Sütun Genişliğine Uyarla", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Satır Uzunluğuna Uyarla", "SSE.Views.DocumentHolder.txtClear": "Temizle", "SSE.Views.DocumentHolder.txtClearAll": "Hepsi", "SSE.Views.DocumentHolder.txtClearComments": "Yorumlar", "SSE.Views.DocumentHolder.txtClearFormat": "Biçim", "SSE.Views.DocumentHolder.txtClearHyper": "Hiper bağlar", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Seçili Sparkline Grupları Temizle", + "SSE.Views.DocumentHolder.txtClearSparklines": "Seçili Sparklineları Temizle", "SSE.Views.DocumentHolder.txtClearText": "Metin", "SSE.Views.DocumentHolder.txtColumn": "Tüm sütun", "SSE.Views.DocumentHolder.txtColumnWidth": "Sütun Genişliği", "SSE.Views.DocumentHolder.txtCopy": "Kopyala", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Özel Sütun Genişliği", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Özel Satır Yüksekliği", "SSE.Views.DocumentHolder.txtCut": "Kes", "SSE.Views.DocumentHolder.txtDelete": "Sil", "SSE.Views.DocumentHolder.txtDescending": "Azalan", "SSE.Views.DocumentHolder.txtEditComment": "Yorum düzenle", + "SSE.Views.DocumentHolder.txtFilter": "Filtre", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Hücre rengine göre filtrele", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Yazı rengine göre filtrele", + "SSE.Views.DocumentHolder.txtFilterValue": "Seçili hücre değerine göre filtrele", "SSE.Views.DocumentHolder.txtFormula": "Fonksiyon Ekle", "SSE.Views.DocumentHolder.txtGroup": "Grup", "SSE.Views.DocumentHolder.txtHide": "Gizle", "SSE.Views.DocumentHolder.txtInsert": "Ekle", "SSE.Views.DocumentHolder.txtInsHyperlink": "Hiper bağ", "SSE.Views.DocumentHolder.txtPaste": "Yapıştır", + "SSE.Views.DocumentHolder.txtReapply": "Yeniden uygula", "SSE.Views.DocumentHolder.txtRow": "Tüm satır", "SSE.Views.DocumentHolder.txtRowHeight": "Satır Yüksekliği", + "SSE.Views.DocumentHolder.txtSelect": "Seç", "SSE.Views.DocumentHolder.txtShiftDown": "Hücreleri aşağı kaydır", "SSE.Views.DocumentHolder.txtShiftLeft": "Hücreleri sola kaydır", "SSE.Views.DocumentHolder.txtShiftRight": "Hücreleri sağa kaydır", "SSE.Views.DocumentHolder.txtShiftUp": "Hücreleri yukarı kaydır", "SSE.Views.DocumentHolder.txtShow": "Göster", + "SSE.Views.DocumentHolder.txtShowComment": "Yorumu göster", "SSE.Views.DocumentHolder.txtSort": "Sırala", + "SSE.Views.DocumentHolder.txtSortCellColor": "Seçili Hücre Rengi üstte", + "SSE.Views.DocumentHolder.txtSortFontColor": "Seçili Yazı Rengi üstte", + "SSE.Views.DocumentHolder.txtSparklines": "Sparklinelar", "SSE.Views.DocumentHolder.txtTextAdvanced": "Metin Gelişmiş Ayarlar", "SSE.Views.DocumentHolder.txtUngroup": "Gruptan çıkar", "SSE.Views.DocumentHolder.txtWidth": "Genişlik", "SSE.Views.DocumentHolder.vertAlignText": "Dikey Hizalama", "SSE.Views.FileMenu.btnBackCaption": "Dökümanlara Git", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Menüyü kapat", "SSE.Views.FileMenu.btnCreateNewCaption": "Yeni oluştur", "SSE.Views.FileMenu.btnDownloadCaption": "Farklı Yükle...", "SSE.Views.FileMenu.btnHelpCaption": "Yardım...", "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Bilgisi...", "SSE.Views.FileMenu.btnPrintCaption": "Yazdır", "SSE.Views.FileMenu.btnRecentFilesCaption": "En sonunucuyu aç...", + "SSE.Views.FileMenu.btnRenameCaption": "Yeniden adlandır...", "SSE.Views.FileMenu.btnReturnCaption": "Spreadsheete geri dön", "SSE.Views.FileMenu.btnRightsCaption": "Access Rights...", "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", @@ -460,17 +1090,20 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Erişim haklarını değiştir", "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Hakkı olan kişiler", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Uygula", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Otomatik kaydetmeyi aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Otomatik kaydetmeyi aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing mode", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Yazı Tipi İpucu", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Her zaman sunucuya kaydet (aksi takdirde belge kapandığında sunucuya kaydet)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Canlı yorum yapma seçeneğini aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Çözülmüş yorumların görünümünü aç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Ölçüm birimi", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Varsayılan Zum Değeri", @@ -478,19 +1111,53 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Her 30 dakika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Her 5 Dakika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Her Saat", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Otomatik Kurtarma", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Otomatik Kaydetme", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Devre Dışı", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Sunucuya Kaydet", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Her Dakika", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Santimetre", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Deutsch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "İnç", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Canlı Yorum", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS X olarak", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Yerli", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Parlat", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Nokta", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "Windows olarak", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Genel", + "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sayfa Ayarları", + "SSE.Views.FormatSettingsDialog.textCancel": "İptal", + "SSE.Views.FormatSettingsDialog.textCategory": "Kategori", + "SSE.Views.FormatSettingsDialog.textDecimal": "Ondalık", + "SSE.Views.FormatSettingsDialog.textFormat": "Format", + "SSE.Views.FormatSettingsDialog.textOk": "TAMAM", + "SSE.Views.FormatSettingsDialog.textSeparator": "1000 ayracı kullan", + "SSE.Views.FormatSettingsDialog.textSymbols": "Semboller", + "SSE.Views.FormatSettingsDialog.textTitle": "Sayı Formatı", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Muhasebe", + "SSE.Views.FormatSettingsDialog.txtAs10": "Onluk (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "Yüzlük (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "On altılık (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "Yarım (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "Dörtlük (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "Sekizlik (4/8)", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Para Birimi", + "SSE.Views.FormatSettingsDialog.txtCustom": "Özel", + "SSE.Views.FormatSettingsDialog.txtDate": "Tarih", + "SSE.Views.FormatSettingsDialog.txtFraction": "Kesir", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Genel", + "SSE.Views.FormatSettingsDialog.txtNumber": "Sayı", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Yüzde", + "SSE.Views.FormatSettingsDialog.txtSample": "Örnek:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Bilimsel", + "SSE.Views.FormatSettingsDialog.txtText": "Metin", + "SSE.Views.FormatSettingsDialog.txtTime": "Saat", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Bir haneye kadar (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "İki haneye kadar (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Üç haneye kadar (131/135)", "SSE.Views.FormulaDialog.cancelButtonText": "İptal Et", "SSE.Views.FormulaDialog.okButtonText": "TAMAM", "SSE.Views.FormulaDialog.sCategoryAll": "All", @@ -550,6 +1217,9 @@ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hiper bağ Ayarları", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Bu alan gereklidir", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Bu alan \"http://www.example.com\" formatında URL olmalıdır", + "SSE.Views.ImageSettings.textAdvanced": "Gelişmiş Ayarları Göster", + "SSE.Views.ImageSettings.textEdit": "Düzenle", + "SSE.Views.ImageSettings.textEditObject": "Obje Düzenle", "SSE.Views.ImageSettings.textFromFile": "Dosyadan", "SSE.Views.ImageSettings.textFromUrl": "URL'den", "SSE.Views.ImageSettings.textHeight": "Yükseklik", @@ -558,12 +1228,21 @@ "SSE.Views.ImageSettings.textOriginalSize": "Varsayılan Boyut", "SSE.Views.ImageSettings.textSize": "Boyut", "SSE.Views.ImageSettings.textWidth": "Genişlik", + "SSE.Views.ImageSettingsAdvanced.cancelButtonText": "İptal", + "SSE.Views.ImageSettingsAdvanced.okButtonText": "Tamam", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternatif Metin", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Açıklama", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Başlık", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Resim - Gelişmiş Ayarlar", "SSE.Views.LeftMenu.tipAbout": "Hakkında", "SSE.Views.LeftMenu.tipChat": "Sohbet", "SSE.Views.LeftMenu.tipComments": "Yorumlar", "SSE.Views.LeftMenu.tipFile": "Dosya", + "SSE.Views.LeftMenu.tipPlugins": "Eklentiler", "SSE.Views.LeftMenu.tipSearch": "Ara", "SSE.Views.LeftMenu.tipSupport": "Geri Bildirim & Destek", + "SSE.Views.LeftMenu.txtDeveloper": "GELİŞTİRİCİ MODU", "SSE.Views.MainSettingsPrint.okButtonText": "Kaydet", "SSE.Views.MainSettingsPrint.strBottom": "Alt", "SSE.Views.MainSettingsPrint.strLandscape": "Peyzaj", @@ -573,7 +1252,12 @@ "SSE.Views.MainSettingsPrint.strPrint": "Yazdır", "SSE.Views.MainSettingsPrint.strRight": "Sağ", "SSE.Views.MainSettingsPrint.strTop": "Üst", + "SSE.Views.MainSettingsPrint.textActualSize": "Gerçek Boyut", + "SSE.Views.MainSettingsPrint.textFitCols": "Tüm Sütunları Bir Sayfaya Sığdır", + "SSE.Views.MainSettingsPrint.textFitPage": "Yaprağı Bir Sayfaya Sığdır", + "SSE.Views.MainSettingsPrint.textFitRows": "Tüm Satırları Bir Sayfaya Sığdır", "SSE.Views.MainSettingsPrint.textPageOrientation": "Sayfa Orientasyonu", + "SSE.Views.MainSettingsPrint.textPageScaling": "Ölçeklendirme", "SSE.Views.MainSettingsPrint.textPageSize": "Sayfa Boyutu", "SSE.Views.MainSettingsPrint.textPrintGrid": "Kılavuz Çizgilerini Yazdır", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Satır ve Sütun Başlıklarını Yazdır", @@ -670,14 +1354,19 @@ "SSE.Views.PrintSettings.textActualSize": "Gerçek Boyut", "SSE.Views.PrintSettings.textAllSheets": "Tüm Tablolar", "SSE.Views.PrintSettings.textCurrentSheet": "Mevcut Tablo", + "SSE.Views.PrintSettings.textFitCols": "Tüm Sütunları Bir Sayfaya Sığdır", + "SSE.Views.PrintSettings.textFitPage": "Yaprağı Bir Sayfaya Sığdır", + "SSE.Views.PrintSettings.textFitRows": "Tüm Satırları Bir Sayfaya Sığdır", "SSE.Views.PrintSettings.textHideDetails": "Detayları Gizle", "SSE.Views.PrintSettings.textLayout": "Tasarım", "SSE.Views.PrintSettings.textPageOrientation": "Sayfa Orientasyonu", + "SSE.Views.PrintSettings.textPageScaling": "Ölçeklendirme", "SSE.Views.PrintSettings.textPageSize": "Sayfa Boyutu", "SSE.Views.PrintSettings.textPrintGrid": "Kılavuz Çizgilerini Yazdır", "SSE.Views.PrintSettings.textPrintHeadings": "Satır ve Sütun Başlıklarını Yazdır", "SSE.Views.PrintSettings.textPrintRange": "Yazdırma Aralığı", "SSE.Views.PrintSettings.textSelection": "Seçim", + "SSE.Views.PrintSettings.textSettings": "Yaprak Ayarları", "SSE.Views.PrintSettings.textShowDetails": "Detayları Göster", "SSE.Views.PrintSettings.textTitle": "Yazdırma Ayarları", "SSE.Views.RightMenu.txtChartSettings": "Grafik Ayarları", @@ -685,6 +1374,8 @@ "SSE.Views.RightMenu.txtParagraphSettings": "Metin Ayarları", "SSE.Views.RightMenu.txtSettings": "Genel Ayarlar", "SSE.Views.RightMenu.txtShapeSettings": "Şekil Ayarları", + "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline Ayarları", + "SSE.Views.RightMenu.txtTableSettings": "Tablo Ayarları", "SSE.Views.RightMenu.txtTextArtSettings": "Text Art Settings", "SSE.Views.SetValueDialog.cancelButtonText": "İptal Et", "SSE.Views.SetValueDialog.okButtonText": "TAMAM", @@ -699,6 +1390,7 @@ "SSE.Views.ShapeSettings.strSize": "Boyut", "SSE.Views.ShapeSettings.strStroke": "Bölü işareti", "SSE.Views.ShapeSettings.strTransparency": "Opasite", + "SSE.Views.ShapeSettings.strType": "Tip", "SSE.Views.ShapeSettings.textAdvanced": "Gelişmiş ayarları göster", "SSE.Views.ShapeSettings.textBorderSizeErr": "Girilen değer yanlış.
Lütfen 0 ile 1584 pt arasında değer giriniz.", "SSE.Views.ShapeSettings.textColor": "Renk Dolgusu", @@ -734,13 +1426,19 @@ "SSE.Views.ShapeSettings.txtWood": "Ahşap", "SSE.Views.ShapeSettingsAdvanced.cancelButtonText": "İptal Et", "SSE.Views.ShapeSettingsAdvanced.okButtonText": "TAMAM", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Sütunlar", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Metin Dolgulama", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternatif Metin", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Açıklama", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Başlık", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Oklar", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Başlama Boyutu", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Başlama Stili", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Eğimli", "SSE.Views.ShapeSettingsAdvanced.textBottom": "Alt", "SSE.Views.ShapeSettingsAdvanced.textCapType": "Başlık Tipi", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Sütun Sayısı", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Bitiş Boyutu", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Bitiş Stili", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Düz", @@ -753,6 +1451,7 @@ "SSE.Views.ShapeSettingsAdvanced.textRight": "Sağ", "SSE.Views.ShapeSettingsAdvanced.textRound": "Yuvarlak", "SSE.Views.ShapeSettingsAdvanced.textSize": "Boyut", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Sütunlar arasında boşluk", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Kare", "SSE.Views.ShapeSettingsAdvanced.textTitle": "Şekil - Gelişmiş Ayarlar", "SSE.Views.ShapeSettingsAdvanced.textTop": "Üst", @@ -762,6 +1461,8 @@ "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Sona Taşı)", "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Tablodan önce kopyala", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Tablo öncesine taşı", + "SSE.Views.Statusbar.filteredRecordsText": "{0} / {1} kayıt filtrelendi", + "SSE.Views.Statusbar.filteredText": "Filtre modu", "SSE.Views.Statusbar.itemCopy": "Kopyala", "SSE.Views.Statusbar.itemDelete": "Sil", "SSE.Views.Statusbar.itemHidden": "Gizli", @@ -783,16 +1484,61 @@ "SSE.Views.Statusbar.tipLast": "Son tabloya kaydır", "SSE.Views.Statusbar.tipNext": "Tablo Listesini Sağa Kaydır", "SSE.Views.Statusbar.tipPrev": "Tablo Listesini Sola Kaydır", - "SSE.Views.Statusbar.tipZoomFactor": "Büyütme", + "SSE.Views.Statusbar.tipZoomFactor": "Büyüt", "SSE.Views.Statusbar.tipZoomIn": "Yakınlaştır", "SSE.Views.Statusbar.tipZoomOut": "Uzaklaştır", "SSE.Views.Statusbar.zoomText": "Zum {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Seçilen hücre aralığı için operasyon tamamlanamadı.
Tablo içinde yada dışında tekdüze veri aralığı seçin ve tekrar deneyin.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Seçili hücre aralığı için işlem yapılamıyor.
İlk tablo satırı aynı satırda olan bir aralık seçilir
ve sonuç tablosu mevcut olanın üstüne biner.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Seçili hücre aralığı için işlem yapılamıyor.
Diğer tabloları içeren bir aralık seçemezsiniz.", "SSE.Views.TableOptionsDialog.textCancel": "İptal Et", "SSE.Views.TableOptionsDialog.txtEmpty": "Bu alan gereklidir", "SSE.Views.TableOptionsDialog.txtFormat": "Tablo oluştur", "SSE.Views.TableOptionsDialog.txtInvalidRange": "HATA! Geçersiz hücre aralığı", "SSE.Views.TableOptionsDialog.txtTitle": "Başlık", + "SSE.Views.TableSettings.deleteColumnText": "Sütunu Sil", + "SSE.Views.TableSettings.deleteRowText": "Satırı Sil", + "SSE.Views.TableSettings.deleteTableText": "Tabloyu Sil", + "SSE.Views.TableSettings.insertColumnLeftText": "Sola Sütun Ekle", + "SSE.Views.TableSettings.insertColumnRightText": "Sağa Sütun Ekle", + "SSE.Views.TableSettings.insertRowAboveText": "Yukarı Satır Ekle", + "SSE.Views.TableSettings.insertRowBelowText": "Aşağı Satır Ekle", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Uyarı", + "SSE.Views.TableSettings.selectColumnText": "Tüm Sütunu Seç", + "SSE.Views.TableSettings.selectDataText": "Sütun Verisini Seç", + "SSE.Views.TableSettings.selectRowText": "Satır Seç", + "SSE.Views.TableSettings.selectTableText": "Tablo Seç", + "SSE.Views.TableSettings.textAdvanced": "Gelişmiş Ayarları Göster", + "SSE.Views.TableSettings.textBanded": "Bağlı", + "SSE.Views.TableSettings.textCancel": "İptal", + "SSE.Views.TableSettings.textColumns": "Sütunlar", + "SSE.Views.TableSettings.textConvertRange": "Aralığa dönüştür", + "SSE.Views.TableSettings.textEdit": "Satırlar & Sütunlar", + "SSE.Views.TableSettings.textEmptyTemplate": "Şablon yok", + "SSE.Views.TableSettings.textExistName": "HATA! Böyle bir aralık zaten mevcut", + "SSE.Views.TableSettings.textFilter": "Filtre tuşu", + "SSE.Views.TableSettings.textFirst": "İlk", + "SSE.Views.TableSettings.textHeader": "Başlık", + "SSE.Views.TableSettings.textInvalidName": "HATA! Geçersiz tablo adı", + "SSE.Views.TableSettings.textIsLocked": "Bu eleman başka bir kullanıcı tarafından düzenleniyor.", + "SSE.Views.TableSettings.textLast": "Son", + "SSE.Views.TableSettings.textLongOperation": "Uzun işlem", + "SSE.Views.TableSettings.textOK": "TAMAM", + "SSE.Views.TableSettings.textReservedName": "Kullanmak istediğiniz ad zaten hücre formüllerinde referanslanmış. Lütfen başka bir ad kkullanın.", + "SSE.Views.TableSettings.textResize": "Tabloyu yeniden boyutlandır", + "SSE.Views.TableSettings.textRows": "Satırlar", + "SSE.Views.TableSettings.textSelectData": "Veriyi Seç", + "SSE.Views.TableSettings.textTableName": "Tablo Adı", + "SSE.Views.TableSettings.textTemplate": "Şablondan Seç", + "SSE.Views.TableSettings.textTotal": "Toplam", + "SSE.Views.TableSettings.warnLongOperation": "Yapmak istediğiniz işlemin tamamlanması uzun sürebilir.
Devam etmek istediğinize emin misiniz?", + "SSE.Views.TableSettingsAdvanced.cancelButtonText": "İptal", + "SSE.Views.TableSettingsAdvanced.okButtonText": "Tamam", + "SSE.Views.TableSettingsAdvanced.textAlt": "Alternatif Metin", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Açıklama", + "SSE.Views.TableSettingsAdvanced.textAltTip": "Görsel obje bilgilerinin alternatif metin tabanlı sunumu görsel veya bilinçsel açıdan problem yaşan kişilere okunarak resimdeki, şekildeki, grafikteki veya tablodaki bilgileri daha kolay anlamalarını sağlamayı amaçlar.", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Başlık", + "SSE.Views.TableSettingsAdvanced.textTitle": "Tablo - Gelişmiş Ayarlar", "SSE.Views.TextArtSettings.strBackground": "Background color", "SSE.Views.TextArtSettings.strColor": "Color", "SSE.Views.TextArtSettings.strFill": "Fill", @@ -801,6 +1547,7 @@ "SSE.Views.TextArtSettings.strSize": "Size", "SSE.Views.TextArtSettings.strStroke": "Stroke", "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.strType": "Tip", "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Color Fill", "SSE.Views.TextArtSettings.textDirection": "Direction", @@ -834,6 +1581,14 @@ "SSE.Views.TextArtSettings.txtNoBorders": "No Line", "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnComment": "Yorum yap", + "SSE.Views.Toolbar.capInsertChart": "Grafik", + "SSE.Views.Toolbar.capInsertEquation": "Denklem", + "SSE.Views.Toolbar.capInsertHyperlink": "Hiper Link", + "SSE.Views.Toolbar.capInsertImage": "Resim", + "SSE.Views.Toolbar.capInsertShape": "Şekil", + "SSE.Views.Toolbar.capInsertTable": "Tablo", + "SSE.Views.Toolbar.capInsertText": "Metin Kutusu", "SSE.Views.Toolbar.mniImageFromFile": "Dosyadan resim", "SSE.Views.Toolbar.mniImageFromUrl": "URL'den resim", "SSE.Views.Toolbar.textAlignBottom": "Alta Hizala", @@ -844,12 +1599,18 @@ "SSE.Views.Toolbar.textAlignRight": "Sağa Hizala", "SSE.Views.Toolbar.textAlignTop": "Üste Hizala", "SSE.Views.Toolbar.textAllBorders": "Tüm Sınırlar", + "SSE.Views.Toolbar.textArea": "Bölge Grafiği", + "SSE.Views.Toolbar.textBar": "Çubuk grafik", "SSE.Views.Toolbar.textBold": "Kalın", "SSE.Views.Toolbar.textBordersColor": "Sınır Rengi", + "SSE.Views.Toolbar.textBordersStyle": "Sınır Stili", "SSE.Views.Toolbar.textBottomBorders": "Alt Sınırlar", "SSE.Views.Toolbar.textCenterBorders": "Dikey İç Sınırlar", + "SSE.Views.Toolbar.textCharts": "Grafikler", "SSE.Views.Toolbar.textClockwise": "Saat yönünde açı", - "SSE.Views.Toolbar.textCompactToolbar": "Kompakt Aletçantasını göster", + "SSE.Views.Toolbar.textColumn": "Sütun", + "SSE.Views.Toolbar.textColumnSpark": "Sütun", + "SSE.Views.Toolbar.textCompactToolbar": "Araç listesini gizle", "SSE.Views.Toolbar.textCounterCw": "Saat yönü tersi açı", "SSE.Views.Toolbar.textDelLeft": "Hücreleri sola kaydır", "SSE.Views.Toolbar.textDelUp": "Hücreleri yukarı kaydır", @@ -868,17 +1629,29 @@ "SSE.Views.Toolbar.textInsRight": "Hücreleri sağa kaydır", "SSE.Views.Toolbar.textItalic": "İtalik", "SSE.Views.Toolbar.textLeftBorders": "Sol Sınırlar", + "SSE.Views.Toolbar.textLine": "Çizgi Grafiği", + "SSE.Views.Toolbar.textLineSpark": "Çizgi Grafiği", "SSE.Views.Toolbar.textMiddleBorders": "Yatay İç Sınırlar", + "SSE.Views.Toolbar.textMoreFormats": "Daha fazla format", "SSE.Views.Toolbar.textNewColor": "Yeni Özel Renk Ekle", "SSE.Views.Toolbar.textNoBorders": "Sınır yok", "SSE.Views.Toolbar.textOutBorders": "Dış Sınırlar", + "SSE.Views.Toolbar.textPie": "Dilim", + "SSE.Views.Toolbar.textPoint": "XY (Noktalı)", "SSE.Views.Toolbar.textPrint": "Yazdır", "SSE.Views.Toolbar.textPrintOptions": "Yazdırma Ayarları", "SSE.Views.Toolbar.textRightBorders": "Sağ Sınırlar", "SSE.Views.Toolbar.textRotateDown": "Metini Aşağı Döndür", "SSE.Views.Toolbar.textRotateUp": "Metini Yukarı Döndür", + "SSE.Views.Toolbar.textSparks": "Sparklinelar", + "SSE.Views.Toolbar.textStock": "Stok Grafiği", + "SSE.Views.Toolbar.textSurface": "Yüzey", + "SSE.Views.Toolbar.textTabFile": "Dosya", + "SSE.Views.Toolbar.textTabHome": "Ana Sayfa", + "SSE.Views.Toolbar.textTabInsert": "Ekle", "SSE.Views.Toolbar.textTopBorders": "Üst Sınırlar", "SSE.Views.Toolbar.textUnderline": "Altı çizili", + "SSE.Views.Toolbar.textWinLossSpark": "Kazanç/Kayıp", "SSE.Views.Toolbar.textZoom": "Zum", "SSE.Views.Toolbar.tipAdvSettings": "Gelişmiş Ayarlar", "SSE.Views.Toolbar.tipAlignBottom": "Alta Hizala", @@ -904,17 +1677,20 @@ "SSE.Views.Toolbar.tipDigStylePercent": "Yüzde Stili", "SSE.Views.Toolbar.tipEditChart": "Grafiği Düzenle", "SSE.Views.Toolbar.tipFontColor": "Yazı Tipi Rengi", - "SSE.Views.Toolbar.tipFontName": "Yazı Tipi İsmi", + "SSE.Views.Toolbar.tipFontName": "Yazı Tipi", "SSE.Views.Toolbar.tipFontSize": "Yazıtipi boyutu", "SSE.Views.Toolbar.tipHAligh": "Yatay Hizalama", "SSE.Views.Toolbar.tipIncDecimal": "Ondalık Arttır", "SSE.Views.Toolbar.tipIncFont": "Yazı Tipi Boyut Arttırımı", "SSE.Views.Toolbar.tipInsertChart": "Tablo ekle", + "SSE.Views.Toolbar.tipInsertChartSpark": "Tablo ekle", + "SSE.Views.Toolbar.tipInsertEquation": "Denklem Ekle", "SSE.Views.Toolbar.tipInsertHyperlink": "Hiperbağ ekle", "SSE.Views.Toolbar.tipInsertImage": "Resim ekle", "SSE.Views.Toolbar.tipInsertOpt": "Hücre Ekle", "SSE.Views.Toolbar.tipInsertShape": "Otomatik Şekil ekle", "SSE.Views.Toolbar.tipInsertText": "Metin ekle", + "SSE.Views.Toolbar.tipInsertTextart": "Metin Art Ekle", "SSE.Views.Toolbar.tipMerge": "Birleştir", "SSE.Views.Toolbar.tipNumFormat": "Sayı Formatı", "SSE.Views.Toolbar.tipPaste": "Yapıştır", @@ -996,5 +1772,13 @@ "SSE.Views.Toolbar.txtText": "Metin", "SSE.Views.Toolbar.txtTime": "Zaman", "SSE.Views.Toolbar.txtUnmerge": "Hücreleri Ayır", - "SSE.Views.Toolbar.txtYen": "¥ Yen" + "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Top10FilterDialog.cancelButtonText": "İptal", + "SSE.Views.Top10FilterDialog.okButtonText": "TAMAM", + "SSE.Views.Top10FilterDialog.textType": "Göster", + "SSE.Views.Top10FilterDialog.txtBottom": "Alt", + "SSE.Views.Top10FilterDialog.txtItems": "Öğe", + "SSE.Views.Top10FilterDialog.txtPercent": "Yüzde", + "SSE.Views.Top10FilterDialog.txtTitle": "İlk 10 Otomatik Filtre", + "SSE.Views.Top10FilterDialog.txtTop": "Üst" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/uk.json b/apps/spreadsheeteditor/main/locale/uk.json index 85468e2ad..f4f97b465 100644 --- a/apps/spreadsheeteditor/main/locale/uk.json +++ b/apps/spreadsheeteditor/main/locale/uk.json @@ -37,14 +37,14 @@ "Common.UI.Window.textInformation": "Інформація", "Common.UI.Window.textWarning": "Застереження", "Common.UI.Window.yesButtonText": "Так", - "Common.Utils.Metric.txtCm": "см\n", + "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", "Common.Views.About.txtAddress": "адреса:", "Common.Views.About.txtAscAddress": "Вул. Лубанас 125а-25, Рига, Латвія, ЄС, LV-1021", "Common.Views.About.txtLicensee": "ЛІЦЕНЗІЯ", "Common.Views.About.txtLicensor": "Ліцензіар", "Common.Views.About.txtMail": "пошта:", - "Common.Views.About.txtPoweredBy": "Під керуванням\n", + "Common.Views.About.txtPoweredBy": "Під керуванням", "Common.Views.About.txtTel": "Тел.:", "Common.Views.About.txtVersion": "Версія", "Common.Views.AdvancedSettingsWindow.cancelButtonText": "Скасувати", @@ -89,7 +89,7 @@ "Common.Views.ImageFromUrlDialog.cancelButtonText": "Скасувати", "Common.Views.ImageFromUrlDialog.okButtonText": "OК", "Common.Views.ImageFromUrlDialog.textUrl": "Вставити URL зображення:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим\n", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Це поле є обов'язковим", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", "Common.Views.OpenDialog.cancelButtonText": "Скасувати", "Common.Views.OpenDialog.okButtonText": "OК", @@ -785,13 +785,13 @@ "SSE.Views.CellRangeDialog.errorMaxRows": "ПОМИЛКА! Максимальна кількість даних на кожну діаграму становить 255", "SSE.Views.CellRangeDialog.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", "SSE.Views.CellRangeDialog.textCancel": "Скасувати", - "SSE.Views.CellRangeDialog.txtEmpty": "Це поле є обов'язковим\n", + "SSE.Views.CellRangeDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.CellRangeDialog.txtInvalidRange": "ПОМИЛКА! Невірний діапазон клітин", "SSE.Views.CellRangeDialog.txtTitle": "Виберати діапазон даних", "SSE.Views.ChartSettings.strLineWeight": "Line Weight", "SSE.Views.ChartSettings.strSparkColor": "Колір", "SSE.Views.ChartSettings.strTemplate": "Шаблон", - "SSE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування\n", + "SSE.Views.ChartSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.ChartSettings.textArea": "Площа", "SSE.Views.ChartSettings.textBar": "Вставити", "SSE.Views.ChartSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", @@ -955,7 +955,7 @@ "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Назва осі X", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Назва осі Y", "SSE.Views.ChartSettingsDlg.textZero": "Нуль", - "SSE.Views.ChartSettingsDlg.txtEmpty": "Це поле є обов'язковим\n", + "SSE.Views.ChartSettingsDlg.txtEmpty": "Це поле є обов'язковим", "SSE.Views.DigitalFilterDialog.cancelButtonText": "Скасувати", "SSE.Views.DigitalFilterDialog.capAnd": "і", "SSE.Views.DigitalFilterDialog.capCondition1": "Дорівнює", @@ -1017,7 +1017,7 @@ "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Автоматична ширина колонки", "SSE.Views.DocumentHolder.txtAutoRowHeight": "Автоматично встановити висоту рядка", "SSE.Views.DocumentHolder.txtClear": "Очистити", - "SSE.Views.DocumentHolder.txtClearAll": "Всі\n", + "SSE.Views.DocumentHolder.txtClearAll": "Всі", "SSE.Views.DocumentHolder.txtClearComments": "Коментарі", "SSE.Views.DocumentHolder.txtClearFormat": "Формат", "SSE.Views.DocumentHolder.txtClearHyper": "Гіперсилки", @@ -1159,7 +1159,7 @@ "SSE.Views.FormatSettingsDialog.txtUpto3": "До трьох цифр (131/135)", "SSE.Views.FormulaDialog.cancelButtonText": "Скасувати", "SSE.Views.FormulaDialog.okButtonText": "OК", - "SSE.Views.FormulaDialog.sCategoryAll": "Всі\n", + "SSE.Views.FormulaDialog.sCategoryAll": "Всі", "SSE.Views.FormulaDialog.sCategoryAll_de": "Все", "SSE.Views.FormulaDialog.sCategoryAll_ru": "Усі", "SSE.Views.FormulaDialog.sCategoryCube": "Куб", @@ -1214,9 +1214,9 @@ "SSE.Views.HyperlinkSettingsDialog.textLinkType": "Тип посилання", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Текст ScreenTip", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Налаштування гіперсилки", - "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим\n", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "SSE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування\n", + "SSE.Views.ImageSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.ImageSettings.textEdit": "Редагувати", "SSE.Views.ImageSettings.textEditObject": "Редагувати об'єкт", "SSE.Views.ImageSettings.textFromFile": "З файлу", @@ -1276,7 +1276,7 @@ "SSE.Views.NamedRangeEditDlg.textReservedName": "Ім'я, яке ви намагаєтесь використовувати, вже посилається на формули клітинки. Будь ласка, використовуйте якесь інше ім'я.", "SSE.Views.NamedRangeEditDlg.textScope": "Масштаб", "SSE.Views.NamedRangeEditDlg.textSelectData": "Вибрати дату", - "SSE.Views.NamedRangeEditDlg.txtEmpty": "Це поле є обов'язковим\n", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "Це поле є обов'язковим", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Редагувати назву", "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Нове ім'я", "SSE.Views.NamedRangePasteDlg.cancelButtonText": "Скасувати", @@ -1291,7 +1291,7 @@ "SSE.Views.NameManagerDlg.textEdit": "Редагувати", "SSE.Views.NameManagerDlg.textEmpty": "Названих діапазонів ще не створено.
Створіть принаймні один названий діапазон і він з'явиться в цьому полі.", "SSE.Views.NameManagerDlg.textFilter": "Фільтр", - "SSE.Views.NameManagerDlg.textFilterAll": "Всі\n", + "SSE.Views.NameManagerDlg.textFilterAll": "Всі", "SSE.Views.NameManagerDlg.textFilterDefNames": "Визначені імена", "SSE.Views.NameManagerDlg.textFilterSheet": "Імена, наведені в аркуші", "SSE.Views.NameManagerDlg.textFilterTableNames": "Назви таблиці", @@ -1307,7 +1307,7 @@ "SSE.Views.ParagraphSettings.strParagraphSpacing": "Параметр інтервалу", "SSE.Views.ParagraphSettings.strSpacingAfter": "після", "SSE.Views.ParagraphSettings.strSpacingBefore": "Перед", - "SSE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування\n", + "SSE.Views.ParagraphSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.ParagraphSettings.textAt": "в", "SSE.Views.ParagraphSettings.textAtLeast": "принаймні", "SSE.Views.ParagraphSettings.textAuto": "Багаторазовий", @@ -1380,7 +1380,7 @@ "SSE.Views.SetValueDialog.okButtonText": "OК", "SSE.Views.SetValueDialog.txtMaxText": "Максимальне значення для цього поля: {0}", "SSE.Views.SetValueDialog.txtMinText": "Мінімальне значення для цього поля: {0}", - "SSE.Views.ShapeSettings.strBackground": "Колір фону\n", + "SSE.Views.ShapeSettings.strBackground": "Колір фону", "SSE.Views.ShapeSettings.strChange": "Змінити автофігуру", "SSE.Views.ShapeSettings.strColor": "Колір", "SSE.Views.ShapeSettings.strFill": "Заповнити", @@ -1390,7 +1390,7 @@ "SSE.Views.ShapeSettings.strStroke": "Штрих", "SSE.Views.ShapeSettings.strTransparency": "Непрозорість", "SSE.Views.ShapeSettings.strType": "Тип", - "SSE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування\n", + "SSE.Views.ShapeSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.ShapeSettings.textBorderSizeErr": "Введене значення невірно.
Будь ласка, введіть значення від 0 pt до 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Заповнити колір", "SSE.Views.ShapeSettings.textDirection": "Напрямок", @@ -1491,7 +1491,7 @@ "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Операція не може бути завершена для вибраного діапазону клітин.
Виберіть діапазон таким чином, щоб перший рядок таблиці містився в одному рядку
, а таблиця результату перекрила поточну.", "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Операція не може бути завершена для вибраного діапазону клітин.
Виберіть діапазон, який не включає інші таблиці.", "SSE.Views.TableOptionsDialog.textCancel": "Скасувати", - "SSE.Views.TableOptionsDialog.txtEmpty": "Це поле є обов'язковим\n", + "SSE.Views.TableOptionsDialog.txtEmpty": "Це поле є обов'язковим", "SSE.Views.TableOptionsDialog.txtFormat": "Створити таблицю", "SSE.Views.TableOptionsDialog.txtInvalidRange": "ПОМИЛКА! Невірний діапазон клітин", "SSE.Views.TableOptionsDialog.txtTitle": "Назва", @@ -1507,7 +1507,7 @@ "SSE.Views.TableSettings.selectDataText": "Виберіть дані стовпця", "SSE.Views.TableSettings.selectRowText": "Виберіть рядок", "SSE.Views.TableSettings.selectTableText": "Виберіть таблицю", - "SSE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування\n", + "SSE.Views.TableSettings.textAdvanced": "Показати додаткові налаштування", "SSE.Views.TableSettings.textBanded": "У смужку", "SSE.Views.TableSettings.textCancel": "Скасувати", "SSE.Views.TableSettings.textColumns": "Колонки", @@ -1538,7 +1538,7 @@ "SSE.Views.TableSettingsAdvanced.textAltTip": "Альтернативне текстове представлення інформації про візуальний об'єкт, яке може бути прочитано людям із порушеннями зору або когнітивними дисфункціями, щоб вони могли краще зрозуміти, яка інформація знаходиться в зображенні, автошопі, діаграмі або таблиці.", "SSE.Views.TableSettingsAdvanced.textAltTitle": "Назва", "SSE.Views.TableSettingsAdvanced.textTitle": "Таблиця - розширені налаштування", - "SSE.Views.TextArtSettings.strBackground": "Колір фону\n", + "SSE.Views.TextArtSettings.strBackground": "Колір фону", "SSE.Views.TextArtSettings.strColor": "Колір", "SSE.Views.TextArtSettings.strFill": "Заповнити", "SSE.Views.TextArtSettings.strForeground": "Колір переднього плану", @@ -1693,7 +1693,7 @@ "SSE.Views.Toolbar.tipMerge": "Злиття", "SSE.Views.Toolbar.tipNumFormat": "Номер формату", "SSE.Views.Toolbar.tipPaste": "Вставити", - "SSE.Views.Toolbar.tipPrColor": "Колір фону\n", + "SSE.Views.Toolbar.tipPrColor": "Колір фону", "SSE.Views.Toolbar.tipPrint": "Роздрукувати", "SSE.Views.Toolbar.tipRedo": "Переробити", "SSE.Views.Toolbar.tipSave": "Зберегти", @@ -1707,7 +1707,7 @@ "SSE.Views.Toolbar.txtAccounting": "Бухгалтерський облік", "SSE.Views.Toolbar.txtAdditional": "Додатковий", "SSE.Views.Toolbar.txtAscending": "Висхідний", - "SSE.Views.Toolbar.txtClearAll": "Всі\n", + "SSE.Views.Toolbar.txtClearAll": "Всі", "SSE.Views.Toolbar.txtClearComments": "Коментарі", "SSE.Views.Toolbar.txtClearFilter": "Очистити фільтр", "SSE.Views.Toolbar.txtClearFormat": "Формат", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index 6b434522b..5542c1879 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -72,7 +72,6 @@ "Common.Views.CopyWarningDialog.textToPaste": "粘贴", "Common.Views.DocumentAccessDialog.textLoading": "载入中……", "Common.Views.DocumentAccessDialog.textTitle": "共享设置", - "Common.Views.Header.openNewTabText": "在新标签页中打开", "Common.Views.Header.textBack": "转到文档", "Common.Views.Header.txtRename": "重命名", "Common.Views.ImageFromUrlDialog.cancelButtonText": "取消", @@ -101,7 +100,7 @@ "SSE.Controllers.DocumentHolder.alignmentText": "校准", "SSE.Controllers.DocumentHolder.centerText": "中心", "SSE.Controllers.DocumentHolder.deleteColumnText": "删除列", - "SSE.Controllers.DocumentHolder.deleteRowText": "删除行\n", + "SSE.Controllers.DocumentHolder.deleteRowText": "删除行", "SSE.Controllers.DocumentHolder.deleteText": "删除", "SSE.Controllers.DocumentHolder.errorInvalidLink": "链接引用不存在。请更正链接或删除。", "SSE.Controllers.DocumentHolder.guestText": "游客", @@ -146,7 +145,7 @@ "SSE.Controllers.DocumentHolder.txtFractionLinear": "改为线性分数", "SSE.Controllers.DocumentHolder.txtFractionSkewed": "改为倾斜分数", "SSE.Controllers.DocumentHolder.txtFractionStacked": "改为堆积分数", - "SSE.Controllers.DocumentHolder.txtGroupCharOver": "字符在文字上\n", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "字符在文字上", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "文字下的Char", "SSE.Controllers.DocumentHolder.txtHeight": "高低", "SSE.Controllers.DocumentHolder.txtHideBottom": "隐藏底部边框", @@ -181,12 +180,12 @@ "SSE.Controllers.DocumentHolder.txtPasteColWidths": "公式+列宽", "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "目的地格式", "SSE.Controllers.DocumentHolder.txtPasteFormat": "仅粘贴格式", - "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "公式+数字格式\n", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "公式+数字格式", "SSE.Controllers.DocumentHolder.txtPasteFormulas": "仅粘贴公式", "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "公式+所有格式", "SSE.Controllers.DocumentHolder.txtPasteLink": "粘贴链接", "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "链接图片", - "SSE.Controllers.DocumentHolder.txtPasteMerge": "合并条件格式\n", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "合并条件格式", "SSE.Controllers.DocumentHolder.txtPastePicture": "图片", "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "源格式", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "颠倒", @@ -204,7 +203,7 @@ "SSE.Controllers.DocumentHolder.txtScriptsAfter": "文字后的脚本", "SSE.Controllers.DocumentHolder.txtScriptsBefore": "文字前的脚本", "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "显示下限", - "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "显示关闭括号\n", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "显示关闭括号", "SSE.Controllers.DocumentHolder.txtShowDegree": "显示学位", "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "显示开放支架", "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "显示占位符", @@ -219,7 +218,7 @@ "SSE.Controllers.LeftMenu.textByColumns": "通过列", "SSE.Controllers.LeftMenu.textByRows": "按行", "SSE.Controllers.LeftMenu.textFormulas": "公式", - "SSE.Controllers.LeftMenu.textItemEntireCell": "整个单元格内容\n", + "SSE.Controllers.LeftMenu.textItemEntireCell": "整个单元格内容", "SSE.Controllers.LeftMenu.textLookin": "在看", "SSE.Controllers.LeftMenu.textNoTextFound": "您搜索的数据无法找到。请调整您的搜索选项。", "SSE.Controllers.LeftMenu.textReplaceSkipped": "已经更换了。 {0}次跳过。", @@ -243,7 +242,7 @@ "SSE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.", "SSE.Controllers.Main.errorArgsRange": "一个错误的输入公式。< br >使用不正确的参数范围。", "SSE.Controllers.Main.errorAutoFilterChange": "不允许操作,因为它正在尝试在工作表上的表格中移动单元格。", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "无法对所选单元格进行操作,因为您无法移动表格的一部分。
选择其他数据范围,以便整个表格被移动并重试。\n", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "无法对所选单元格进行操作,因为您无法移动表格的一部分。
选择其他数据范围,以便整个表格被移动并重试。", "SSE.Controllers.Main.errorAutoFilterDataRange": "所选单元格区域无法进行操作。
选择与现有单元格不同的统一数据范围,然后重试。", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "无法执行操作,因为该区域包含已过滤的单元格。
请取消隐藏已过滤的元素,然后重试。", "SSE.Controllers.Main.errorBadImageUrl": "图片地址不正确", @@ -257,19 +256,19 @@ "SSE.Controllers.Main.errorDataRange": "数据范围不正确", "SSE.Controllers.Main.errorDefaultMessage": "错误代码:%1", "SSE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法打开。", - "SSE.Controllers.Main.errorFileRequest": "外部错误。
文件请求错误。如果错误仍然存​​在,请与支持部门联系。\n", + "SSE.Controllers.Main.errorFileRequest": "外部错误。
文件请求错误。如果错误仍然存​​在,请与支持部门联系。", "SSE.Controllers.Main.errorFileVKey": "外部错误。
安全密钥不正确。如果错误仍然存​​在,请与支持部门联系。", "SSE.Controllers.Main.errorFillRange": "无法填充所选范围的单元格。
所有合并的单元格的大小必须相同。", "SSE.Controllers.Main.errorFormulaName": "一个错误的输入公式。< br >正确使用公式名称。", "SSE.Controllers.Main.errorFormulaParsing": "解析公式时出现内部错误。", - "SSE.Controllers.Main.errorFrmlWrongReferences": "该功能是指不存在的工作表。
请检查数据,然后重试。\n", + "SSE.Controllers.Main.errorFrmlWrongReferences": "该功能是指不存在的工作表。
请检查数据,然后重试。", "SSE.Controllers.Main.errorInvalidRef": "输入选择的正确名称或有效参考。", "SSE.Controllers.Main.errorKeyEncrypt": "未知密钥描述", "SSE.Controllers.Main.errorKeyExpire": "密钥过期", - "SSE.Controllers.Main.errorLockedAll": "由于工作表被其他用户锁定,因此无法进行操作。\n", + "SSE.Controllers.Main.errorLockedAll": "由于工作表被其他用户锁定,因此无法进行操作。", "SSE.Controllers.Main.errorLockedWorksheetRename": "此时由于其他用户重命名该表单,因此无法重命名该表", "SSE.Controllers.Main.errorMoveRange": "不能改变合并单元的一部分", - "SSE.Controllers.Main.errorOpenWarning": "文件中的一个公式的长度超过了
允许的字符数,并被删除。\n", + "SSE.Controllers.Main.errorOpenWarning": "文件中的一个公式的长度超过了
允许的字符数,并被删除。", "SSE.Controllers.Main.errorOperandExpected": "输入的函数语法不正确。请检查你是否缺少一个括号 - '('或')'。", "SSE.Controllers.Main.errorPasteMaxRange": "复制和粘贴区域不匹配。
请选择相同尺寸的区域,或单击一行中的第一个单元格以粘贴复制的单元格。", "SSE.Controllers.Main.errorPrintMaxPagesCount": "不幸的是,不能在当前的程序版本中一次打印超过1500页。
这个限制将在即将发布的版本中被删除。", @@ -330,7 +329,6 @@ "SSE.Controllers.Main.titleLicenseExp": "许可证过期", "SSE.Controllers.Main.titleRecalcFormulas": "计算...", "SSE.Controllers.Main.titleServerVersion": "编辑器已更新", - "SSE.Controllers.Main.txtAccent": "Accent", "SSE.Controllers.Main.txtArt": "你的文本在此", "SSE.Controllers.Main.txtBasicShapes": "基本形状", "SSE.Controllers.Main.txtButtons": "按钮", @@ -344,27 +342,6 @@ "SSE.Controllers.Main.txtRectangles": "矩形", "SSE.Controllers.Main.txtSeries": "系列", "SSE.Controllers.Main.txtStarsRibbons": "星星和丝带", - "SSE.Controllers.Main.txtStyle_Bad": "Bad", - "SSE.Controllers.Main.txtStyle_Calculation": "Calculation", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell", - "SSE.Controllers.Main.txtStyle_Comma": "Comma", - "SSE.Controllers.Main.txtStyle_Currency": "Currency", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text", - "SSE.Controllers.Main.txtStyle_Good": "Good", - "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", - "SSE.Controllers.Main.txtStyle_Input": "Input", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Note", - "SSE.Controllers.Main.txtStyle_Output": "Output", - "SSE.Controllers.Main.txtStyle_Percent": "Percent", - "SSE.Controllers.Main.txtStyle_Title": "Title", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text", "SSE.Controllers.Main.txtXAxis": "X轴", "SSE.Controllers.Main.txtYAxis": "Y轴", "SSE.Controllers.Main.unknownErrorText": "示知错误", @@ -388,7 +365,7 @@ "SSE.Controllers.Statusbar.warnDeleteSheet": "工作表可能包含数据。你确定要继续吗?", "SSE.Controllers.Statusbar.zoomText": "缩放%{0}", "SSE.Controllers.Toolbar.confirmAddFontName": "您要保存的字体在当前设备上不可用。
使用其中一种系统字体显示文本样式,当可用时将使用保存的字体。
是否要继续?", - "SSE.Controllers.Toolbar.errorMaxRows": "错误!每个图表的最大数据系列数为255\n", + "SSE.Controllers.Toolbar.errorMaxRows": "错误!每个图表的最大数据系列数为255", "SSE.Controllers.Toolbar.errorStockChart": "行顺序不正确,建立股票图表将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。", "SSE.Controllers.Toolbar.textAccent": "口音", "SSE.Controllers.Toolbar.textBracket": "括号", @@ -517,9 +494,9 @@ "SSE.Controllers.Toolbar.txtIntegral_dx": "差分x", "SSE.Controllers.Toolbar.txtIntegral_dy": "差分y", "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "积分", - "SSE.Controllers.Toolbar.txtIntegralDouble": "双积分\n", - "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "双积分\n", - "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "双积分\n", + "SSE.Controllers.Toolbar.txtIntegralDouble": "双积分", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "双积分", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "双积分", "SSE.Controllers.Toolbar.txtIntegralOriented": "轮廓积分", "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "轮廓积分", "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "曲面积分", @@ -621,7 +598,7 @@ "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "向左箭头", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "下面箭头向右", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "向右箭头上方", - "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "等于\n", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "等于", "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "减号相等", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "加上等于", "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "被测量", @@ -768,7 +745,7 @@ "SSE.Views.AutoFilterDialog.warnNoSelected": "您必须至少选择一个值", "SSE.Views.CellEditor.textManager": "名称管理", "SSE.Views.CellEditor.tipFormula": "插入功能", - "SSE.Views.CellRangeDialog.errorMaxRows": "错误!每个图表的最大数据系列数为255\n", + "SSE.Views.CellRangeDialog.errorMaxRows": "错误!每个图表的最大数据系列数为255", "SSE.Views.CellRangeDialog.errorStockChart": "行顺序不正确,建立股票图表将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。", "SSE.Views.CellRangeDialog.textCancel": "取消", "SSE.Views.CellRangeDialog.txtEmpty": "这是必填栏", @@ -804,12 +781,11 @@ "SSE.Views.ChartSettings.textSize": "大小", "SSE.Views.ChartSettings.textStock": "股票", "SSE.Views.ChartSettings.textStyle": "类型", - "SSE.Views.ChartSettings.textSurface": "Surface", "SSE.Views.ChartSettings.textType": "类型", "SSE.Views.ChartSettings.textWidth": "宽度", "SSE.Views.ChartSettings.textWinLossSpark": "赢/输", "SSE.Views.ChartSettingsDlg.cancelButtonText": "取消", - "SSE.Views.ChartSettingsDlg.errorMaxRows": "错误!每个图表的最大数据系列数为255\n", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "错误!每个图表的最大数据系列数为255", "SSE.Views.ChartSettingsDlg.errorStockChart": "行顺序不正确建立股票图表将数据按照以下顺序放置在表格上:
开盘价,最高价格,最低价格,收盘价。", "SSE.Views.ChartSettingsDlg.textAlt": "备选条款", "SSE.Views.ChartSettingsDlg.textAltDescription": "描述", @@ -920,7 +896,6 @@ "SSE.Views.ChartSettingsDlg.textStock": "股票", "SSE.Views.ChartSettingsDlg.textStraight": "直行", "SSE.Views.ChartSettingsDlg.textStyle": "类型", - "SSE.Views.ChartSettingsDlg.textSurface": "Surface", "SSE.Views.ChartSettingsDlg.textTenMillions": "一千万", "SSE.Views.ChartSettingsDlg.textTenThousands": "一万", "SSE.Views.ChartSettingsDlg.textThousands": "成千上万", @@ -959,7 +934,7 @@ "SSE.Views.DigitalFilterDialog.capOr": "或", "SSE.Views.DigitalFilterDialog.textNoFilter": "没有过滤器", "SSE.Views.DigitalFilterDialog.textShowRows": "显示行在哪里", - "SSE.Views.DigitalFilterDialog.textUse1": "使用 ?呈现任何单个字符\n", + "SSE.Views.DigitalFilterDialog.textUse1": "使用 ?呈现任何单个字符", "SSE.Views.DigitalFilterDialog.textUse2": "使用*来呈现任何一系列的角色", "SSE.Views.DigitalFilterDialog.txtTitle": "自定义过滤器", "SSE.Views.DocumentHolder.advancedImgText": "高级图像设置", @@ -1007,7 +982,7 @@ "SSE.Views.DocumentHolder.txtClearComments": "评论", "SSE.Views.DocumentHolder.txtClearFormat": "格式", "SSE.Views.DocumentHolder.txtClearHyper": "超链接", - "SSE.Views.DocumentHolder.txtClearSparklineGroups": "清除所选的Sparkline组\n", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "清除所选的Sparkline组", "SSE.Views.DocumentHolder.txtClearSparklines": "清除所选的迷你曲", "SSE.Views.DocumentHolder.txtClearText": "文本", "SSE.Views.DocumentHolder.txtColumn": "整列", @@ -1040,7 +1015,7 @@ "SSE.Views.DocumentHolder.txtShow": "显示", "SSE.Views.DocumentHolder.txtShowComment": "显示评论", "SSE.Views.DocumentHolder.txtSort": "分类", - "SSE.Views.DocumentHolder.txtSortCellColor": "所选单元格颜色在顶部\n", + "SSE.Views.DocumentHolder.txtSortCellColor": "所选单元格颜色在顶部", "SSE.Views.DocumentHolder.txtSortFontColor": "选定的字体颜色在上面", "SSE.Views.DocumentHolder.txtSparklines": "迷你", "SSE.Views.DocumentHolder.txtTextAdvanced": "文本高级设置", @@ -1126,7 +1101,7 @@ "SSE.Views.FormatSettingsDialog.txtAs10": "十分钟", "SSE.Views.FormatSettingsDialog.txtAs100": "百分之一百", "SSE.Views.FormatSettingsDialog.txtAs16": "十六点", - "SSE.Views.FormatSettingsDialog.txtAs2": "一半\n", + "SSE.Views.FormatSettingsDialog.txtAs2": "一半", "SSE.Views.FormatSettingsDialog.txtAs4": "四(2/4)", "SSE.Views.FormatSettingsDialog.txtAs8": "第八,八分之一的", "SSE.Views.FormatSettingsDialog.txtCurrency": "货币", @@ -1172,7 +1147,7 @@ "SSE.Views.FormulaDialog.sCategoryLookupAndReference": "查找和参考", "SSE.Views.FormulaDialog.sCategoryLookupAndReference_de": "Suchen und Bezüge", "SSE.Views.FormulaDialog.sCategoryLookupAndReference_ru": "Поискиссылки", - "SSE.Views.FormulaDialog.sCategoryMathematic": "数学和三角学\n", + "SSE.Views.FormulaDialog.sCategoryMathematic": "数学和三角学", "SSE.Views.FormulaDialog.sCategoryMathematic_de": "数学和三角函数", "SSE.Views.FormulaDialog.sCategoryMathematic_ru": "Математические", "SSE.Views.FormulaDialog.sCategoryStatistical": "统计", @@ -1255,7 +1230,7 @@ "SSE.Views.NamedRangeEditDlg.strWorkbook": "工作簿", "SSE.Views.NamedRangeEditDlg.textDataRange": "数据范围", "SSE.Views.NamedRangeEditDlg.textExistName": "错误!具有这种名称的范围已经存在", - "SSE.Views.NamedRangeEditDlg.textInvalidName": "名称必须以字母或下划线开头,不能包含无效字符。\n", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "名称必须以字母或下划线开头,不能包含无效字符。", "SSE.Views.NamedRangeEditDlg.textInvalidRange": "错误!单元格范围无效", "SSE.Views.NamedRangeEditDlg.textIsLocked": "错误!此元素正在被其他用户编辑。", "SSE.Views.NamedRangeEditDlg.textName": "名称", @@ -1464,18 +1439,14 @@ "SSE.Views.Statusbar.textNewColor": "添加新的自定义颜色", "SSE.Views.Statusbar.textNoColor": "没有颜色", "SSE.Views.Statusbar.textSum": "合计", - "SSE.Views.Statusbar.tipAccessRights": "管理文档访问权限\n", "SSE.Views.Statusbar.tipAddTab": "添加工作表", "SSE.Views.Statusbar.tipFirst": "滚动到第一张", "SSE.Views.Statusbar.tipLast": "滚动到最后一张", "SSE.Views.Statusbar.tipNext": "滚动表列表对", "SSE.Views.Statusbar.tipPrev": "向左滚动表单", - "SSE.Views.Statusbar.tipUsers": "目前正在由几个用户编辑文档。", - "SSE.Views.Statusbar.tipViewUsers": "查看用户和管理文档访问权限", "SSE.Views.Statusbar.tipZoomFactor": "放大", "SSE.Views.Statusbar.tipZoomIn": "放大", "SSE.Views.Statusbar.tipZoomOut": "缩小", - "SSE.Views.Statusbar.txAccessRights": "更改访问权限", "SSE.Views.Statusbar.zoomText": "缩放%{0}", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "所选单元格区域无法进行操作。
选择与现有单元格不同的统一数据范围,然后重试。", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "所选单元格范围无法完成操作。
选择一个范围,使第一个表行位于同一行
上,并将生成的表与当前的列重叠。", @@ -1486,7 +1457,7 @@ "SSE.Views.TableOptionsDialog.txtInvalidRange": "错误!单元格范围无效", "SSE.Views.TableOptionsDialog.txtTitle": "标题", "SSE.Views.TableSettings.deleteColumnText": "删除列", - "SSE.Views.TableSettings.deleteRowText": "删除行\n", + "SSE.Views.TableSettings.deleteRowText": "删除行", "SSE.Views.TableSettings.deleteTableText": "删除表", "SSE.Views.TableSettings.insertColumnLeftText": "在左侧插入列", "SSE.Views.TableSettings.insertColumnRightText": "向右侧插入列", @@ -1599,7 +1570,6 @@ "SSE.Views.Toolbar.textDiagUpBorder": "对角线上边界", "SSE.Views.Toolbar.textEntireCol": "整列", "SSE.Views.Toolbar.textEntireRow": "整行", - "SSE.Views.Toolbar.textFreezePanes": "Freeze Panes", "SSE.Views.Toolbar.textHideFBar": "隐藏公式栏", "SSE.Views.Toolbar.textHideGridlines": "隐藏网格线", "SSE.Views.Toolbar.textHideHeadings": "隐藏标题", @@ -1608,8 +1578,6 @@ "SSE.Views.Toolbar.textInsDown": "向下移动单元格", "SSE.Views.Toolbar.textInsideBorders": "内陆边界", "SSE.Views.Toolbar.textInsRight": "右移小区", - "SSE.Views.Toolbar.textInsText": "插入文本框", - "SSE.Views.Toolbar.textInsTextArt": "插入文本类型", "SSE.Views.Toolbar.textItalic": "斜体", "SSE.Views.Toolbar.textLeftBorders": "左边界", "SSE.Views.Toolbar.textLine": "线", @@ -1628,7 +1596,6 @@ "SSE.Views.Toolbar.textRotateUp": "旋转270°", "SSE.Views.Toolbar.textSparks": "迷你", "SSE.Views.Toolbar.textStock": "股票", - "SSE.Views.Toolbar.textSurface": "Surface", "SSE.Views.Toolbar.textTopBorders": "顶部边界", "SSE.Views.Toolbar.textUnderline": "下划线", "SSE.Views.Toolbar.textWinLossSpark": "赢/输", @@ -1671,9 +1638,7 @@ "SSE.Views.Toolbar.tipInsertShape": "自动插入形状", "SSE.Views.Toolbar.tipInsertText": "插入文字", "SSE.Views.Toolbar.tipMerge": "合并", - "SSE.Views.Toolbar.tipNewDocument": "新建文档", "SSE.Views.Toolbar.tipNumFormat": "数字格式", - "SSE.Views.Toolbar.tipOpenDocument": "打开文档", "SSE.Views.Toolbar.tipPaste": "粘贴", "SSE.Views.Toolbar.tipPrColor": "背景颜色", "SSE.Views.Toolbar.tipPrint": "打印", diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index d627fd9de..bbedb0aaa 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -262,7 +262,7 @@ "SSE.Controllers.Settings.notcriticalErrorTitle": "Warnung", "SSE.Controllers.Settings.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
Möchten Sie wirklich fortsetzen?", "SSE.Controllers.Statusbar.errorLastSheet": "Ein Arbeitsbuch muss mindestens ein sichtbares Worksheet enthalten.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Worksheet kann nicht gelöscht werden. \n", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Worksheet kann nicht gelöscht werden. ", "SSE.Controllers.Statusbar.menuDelete": "Löschen", "SSE.Controllers.Statusbar.menuDuplicate": "Verdoppeln", "SSE.Controllers.Statusbar.menuHide": "Vergeben", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 273b56526..0fe53533d 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -111,7 +111,7 @@ "SSE.Controllers.Main.errorArgsRange": "Une erreur dans la formule entrée.
La plage des arguments utilisée est incorrecte.", "SSE.Controllers.Main.errorAutoFilterChange": "L'opération n'est pas autorisée, car elle tente de déplacer les cellules d'un tableau de votre feuille de calcul.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Impossible de réaliser l'opération sur les cellules sélectionnées car vous ne pouvez pas déplacer une partie du tableau.
Sélectionnez une autre plage de données afin que tout le tableau soit déplacé et essayez à nouveau.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.\n", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
Veuillez afficher des éléments filtrés et réessayez.", "SSE.Controllers.Main.errorBadImageUrl": "L'URL d'image est incorrecte", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", @@ -205,7 +205,6 @@ "SSE.Controllers.Main.titleLicenseExp": "Licence expirée", "SSE.Controllers.Main.titleServerVersion": "L'éditeur est mis à jour", "SSE.Controllers.Main.titleUpdateVersion": "Version a été modifiée", - "SSE.Controllers.Main.txtAccent": "Accent", "SSE.Controllers.Main.txtArt": "Entrez votre texte", "SSE.Controllers.Main.txtBasicShapes": "Formes de base", "SSE.Controllers.Main.txtButtons": "Boutons", @@ -223,27 +222,6 @@ "SSE.Controllers.Main.txtSeries": "Série", "SSE.Controllers.Main.txtSpace": "Espace", "SSE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", - "SSE.Controllers.Main.txtStyle_Bad": "Bad", - "SSE.Controllers.Main.txtStyle_Calculation": "Calculation", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell", - "SSE.Controllers.Main.txtStyle_Comma": "Comma", - "SSE.Controllers.Main.txtStyle_Currency": "Currency", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text", - "SSE.Controllers.Main.txtStyle_Good": "Good", - "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", - "SSE.Controllers.Main.txtStyle_Input": "Input", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Note", - "SSE.Controllers.Main.txtStyle_Output": "Output", - "SSE.Controllers.Main.txtStyle_Percent": "Percent", - "SSE.Controllers.Main.txtStyle_Title": "Title", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text", "SSE.Controllers.Main.txtTab": "Tabulation", "SSE.Controllers.Main.txtXAxis": "Axe X", "SSE.Controllers.Main.txtYAxis": "Axe Y", @@ -478,7 +456,6 @@ "SSE.Views.Settings.textFindAndReplace": "Rechercher et remplacer", "SSE.Views.Settings.textHelp": "Aide", "SSE.Views.Settings.textLoading": "Chargement en cours...", - "SSE.Views.Settings.textPoweredBy": "Powered by", "SSE.Views.Settings.textSettings": "Paramètres", "SSE.Views.Settings.textTel": "tél.", "SSE.Views.Settings.textVersion": "Version", diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 73b9e427b..43a174a31 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -135,7 +135,7 @@ "SSE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", "SSE.Controllers.Main.errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", "SSE.Controllers.Main.errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Laden mislukt\n", + "SSE.Controllers.Main.errorMailMergeLoadFile": "Laden mislukt", "SSE.Controllers.Main.errorMailMergeSaveFile": "Samenvoegen mislukt.", "SSE.Controllers.Main.errorMoveRange": "Een gedeelte van een samengevoegde cel kan niet worden gewijzigd", "SSE.Controllers.Main.errorOpenWarning": "De lengte van een van de formules in het bestand overschrijdt
het toegestane aantal tekens en de formule is verwijderd.", @@ -167,9 +167,9 @@ "SSE.Controllers.Main.loadImageTextText": "Afbeelding wordt geladen...", "SSE.Controllers.Main.loadImageTitleText": "Afbeelding wordt geladen", "SSE.Controllers.Main.loadingDocumentTextText": "Document wordt geladen...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Document wordt geladen\n", + "SSE.Controllers.Main.loadingDocumentTitleText": "Document wordt geladen", "SSE.Controllers.Main.mailMergeLoadFileText": "Gegevensbron wordt geladen...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen\n", + "SSE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen", "SSE.Controllers.Main.notcriticalErrorTitle": "Waarschuwing", "SSE.Controllers.Main.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", "SSE.Controllers.Main.openTextText": "Document wordt geopend...", @@ -193,7 +193,7 @@ "SSE.Controllers.Main.textClose": "Sluiten", "SSE.Controllers.Main.textContactUs": "Contact opnemen met Verkoop", "SSE.Controllers.Main.textDone": "Klaar", - "SSE.Controllers.Main.textLoadingDocument": "Document wordt geladen\n", + "SSE.Controllers.Main.textLoadingDocument": "Document wordt geladen", "SSE.Controllers.Main.textNoLicenseTitle": "Open source-versie ONLYOFFICE", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPassword": "Wachtwoord", diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json new file mode 100644 index 000000000..93b3c6761 --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -0,0 +1,487 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", + "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "SSE.Controllers.AddChart.txtDiagramTitle": "Tytuł wykresu", + "SSE.Controllers.AddChart.txtSeries": "Serie", + "SSE.Controllers.AddChart.txtXAxis": "Oś X", + "SSE.Controllers.AddChart.txtYAxis": "Oś Y", + "SSE.Controllers.AddContainer.textChart": "Wykres", + "SSE.Controllers.AddContainer.textFormula": "Funkcja", + "SSE.Controllers.AddContainer.textImage": "Obraz", + "SSE.Controllers.AddContainer.textOther": "Inny", + "SSE.Controllers.AddContainer.textShape": "Kształt", + "SSE.Controllers.AddLink.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek", + "SSE.Controllers.AddLink.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "SSE.Controllers.AddOther.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "SSE.Controllers.AddOther.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "SSE.Controllers.DocumentHolder.menuAddLink": "Dodaj link", + "SSE.Controllers.DocumentHolder.menuCell": "Komórka", + "SSE.Controllers.DocumentHolder.menuCopy": "Kopiuj", + "SSE.Controllers.DocumentHolder.menuCut": "Wytnij", + "SSE.Controllers.DocumentHolder.menuDelete": "Usuń", + "SSE.Controllers.DocumentHolder.menuEdit": "Edytuj", + "SSE.Controllers.DocumentHolder.menuHide": "Ukryj", + "SSE.Controllers.DocumentHolder.menuMerge": "Scal", + "SSE.Controllers.DocumentHolder.menuMore": "Więcej", + "SSE.Controllers.DocumentHolder.menuOpenLink": "Otwórz link", + "SSE.Controllers.DocumentHolder.menuPaste": "Wklej", + "SSE.Controllers.DocumentHolder.menuShow": "Pokaż", + "SSE.Controllers.DocumentHolder.menuUnmerge": "Zanikuj", + "SSE.Controllers.DocumentHolder.menuUnwrap": "Rozwiń", + "SSE.Controllers.DocumentHolder.menuWrap": "Zawijaj", + "SSE.Controllers.DocumentHolder.sheetCancel": "Anuluj", + "SSE.Controllers.DocumentHolder.warnMergeLostData": "Operacja może zniszczyć dane w wybranych komórkach.
Kontynuować?", + "SSE.Controllers.EditCell.textAuto": "Automatyczny", + "SSE.Controllers.EditCell.textFonts": "Czcionki", + "SSE.Controllers.EditCell.textPt": "pt", + "SSE.Controllers.EditChart.errorMaxRows": "ERROR! Maksymalna liczba serii danych na wykres to 255.", + "SSE.Controllers.EditChart.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "SSE.Controllers.EditChart.textAuto": "Automatyczny", + "SSE.Controllers.EditChart.textBetweenTickMarks": "Pomiędzy znakami Tick", + "SSE.Controllers.EditChart.textBillions": "Miliardy", + "SSE.Controllers.EditChart.textBottom": "Dół", + "SSE.Controllers.EditChart.textCenter": "Wyśrodkuj", + "SSE.Controllers.EditChart.textCross": "Na skrzyżowaniu", + "SSE.Controllers.EditChart.textCustom": "Niestandardowy", + "SSE.Controllers.EditChart.textFit": "Dopasuj szerokość", + "SSE.Controllers.EditChart.textFixed": "Ustalony", + "SSE.Controllers.EditChart.textHigh": "Wysoki", + "SSE.Controllers.EditChart.textHorizontal": "Poziomy", + "SSE.Controllers.EditChart.textHundredMil": "100 000 000", + "SSE.Controllers.EditChart.textHundreds": "Setki", + "SSE.Controllers.EditChart.textHundredThousands": "100 000", + "SSE.Controllers.EditChart.textIn": "w", + "SSE.Controllers.EditChart.textInnerBottom": "Dolna strona", + "SSE.Controllers.EditChart.textInnerTop": "Górna strona", + "SSE.Controllers.EditChart.textLeft": "Lewy", + "SSE.Controllers.EditChart.textLeftOverlay": "Lewa nakładka", + "SSE.Controllers.EditChart.textLow": "Niski", + "SSE.Controllers.EditChart.textManual": "Ręczny", + "SSE.Controllers.EditChart.textMaxValue": "Maksymalna wartość", + "SSE.Controllers.EditChart.textMillions": "Miliony", + "SSE.Controllers.EditChart.textMinValue": "Wartość minimalna", + "SSE.Controllers.EditChart.textNextToAxis": "Obok osi", + "SSE.Controllers.EditChart.textNone": "żaden", + "SSE.Controllers.EditChart.textNoOverlay": "Brak pokrycia", + "SSE.Controllers.EditChart.textOnTickMarks": "Podział", + "SSE.Controllers.EditChart.textOut": "Na zewnątrz", + "SSE.Controllers.EditChart.textOuterTop": "Wierzchołek zewnętrzny", + "SSE.Controllers.EditChart.textOverlay": "Nałożenie", + "SSE.Controllers.EditChart.textRight": "Prawy", + "SSE.Controllers.EditChart.textRightOverlay": "Właściwa nakładka", + "SSE.Controllers.EditChart.textRotated": "Obrócony", + "SSE.Controllers.EditChart.textTenMillions": "10 000 000", + "SSE.Controllers.EditChart.textTenThousands": "10 000", + "SSE.Controllers.EditChart.textThousands": "Tysiące", + "SSE.Controllers.EditChart.textTop": "Góra", + "SSE.Controllers.EditChart.textTrillions": "Tryliony", + "SSE.Controllers.EditChart.textValue": "Wartość", + "SSE.Controllers.EditContainer.textCell": "Komórka", + "SSE.Controllers.EditContainer.textChart": "Wykres", + "SSE.Controllers.EditContainer.textHyperlink": "Hiperlink", + "SSE.Controllers.EditContainer.textImage": "Obraz", + "SSE.Controllers.EditContainer.textSettings": "Ustawienia", + "SSE.Controllers.EditContainer.textShape": "Kształt", + "SSE.Controllers.EditContainer.textTable": "Tabela", + "SSE.Controllers.EditContainer.textText": "Tekst", + "SSE.Controllers.EditHyperlink.textDefault": "Wybrany zakres", + "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musisz podać adres URL obrazu.", + "SSE.Controllers.EditHyperlink.textExternalLink": "Link zewnętrzny", + "SSE.Controllers.EditHyperlink.textInternalLink": "Wewnętrzny zakres danych", + "SSE.Controllers.EditHyperlink.textInvalidRange": "Błędny zakres komórek.", + "SSE.Controllers.EditHyperlink.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", + "SSE.Controllers.Main.advCSVOptions": "Wybierz opcje CSV", + "SSE.Controllers.Main.advDRMEnterPassword": "Wprowadź swoje hasło:", + "SSE.Controllers.Main.advDRMOptions": "Plik chroniony", + "SSE.Controllers.Main.advDRMPassword": "Hasło", + "SSE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", + "SSE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", + "SSE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", + "SSE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.", + "SSE.Controllers.Main.criticalErrorTitle": "Błąd", + "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Edytor arkusza kalkulacyjnego", + "SSE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", + "SSE.Controllers.Main.downloadMergeText": "Pobieranie...", + "SSE.Controllers.Main.downloadMergeTitle": "Pobieranie", + "SSE.Controllers.Main.downloadTextText": "Pobieranie dokumentu...", + "SSE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu", + "SSE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
Proszę skontaktować się z administratorem serwera dokumentów.", + "SSE.Controllers.Main.errorArgsRange": "Wprowadzona formuła jest błędna.
Użyto niepoprawnego argumentu zakresu.", + "SSE.Controllers.Main.errorAutoFilterChange": "Operacja nie jest dozwolona, ponieważ próbuje przesunąć komórki w tabeli w arkuszu.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operacja nie mogła zostać wykonana dla wybranych komórek, ponieważ nie można przenieść części tabeli.
Wybierz inny zakres danych, aby cała tabela została przesunięta i spróbuj ponownie.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Operacja nie mogła zostać wykonana dla wybranego zakresu komórek.
Wybierz jednolity zakres danych inny niż istniejący i spróbuj ponownie.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operacja nie może zostać wykonana, ponieważ obszar zawiera filtrowane komórki.
Proszę ukryj filtrowane elementy i spróbuj ponownie.", + "SSE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.", + "SSE.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.

Dowiedz się więcej o połączeniu serwera dokumentów tutaj", + "SSE.Controllers.Main.errorCopyMultiselectArea": "To polecenie nie może być użyte z wieloma wyborami.
Wybierz jeden zakres i spróbuj ponownie.", + "SSE.Controllers.Main.errorCountArg": "Wprowadzona formuła jest błędna.
Niepoprawna ilość argumentów.", + "SSE.Controllers.Main.errorCountArgExceed": "Wprowadzona formuła jest błędna.
Przekroczono liczbę argumentów.", + "SSE.Controllers.Main.errorCreateDefName": "Istniejące zakresy nazw nie mogą być edytowane, a nowe nie mogą zostać utworzone
w chwili, gdy niektóre z nich są edytowane.", + "SSE.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ą.", + "SSE.Controllers.Main.errorDataRange": "Błędny zakres danych.", + "SSE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", + "SSE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", + "SSE.Controllers.Main.errorFileRequest": "Błąd zewnętrzny.
Błąd zgłoszenia pliku. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "SSE.Controllers.Main.errorFileVKey": "Błąd zewnętrzny.
Niewłaściwy klucz bezpieczeństwa. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "SSE.Controllers.Main.errorFillRange": "Nie można wypełnić zaznaczonego zakresu komórek.
Wszystkie scalone komórki muszą mieć ten sam rozmiar.", + "SSE.Controllers.Main.errorFormulaName": "Wprowadzona formuła jest błędna.
Użyto niepoprawnej nazwy formuły.", + "SSE.Controllers.Main.errorFormulaParsing": "Błąd wewnętrzny podczas analizowania formuły.", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcja odnosi się do arkusza, który nie istnieje.
Proszę sprawdzić dane i spróbować ponownie.", + "SSE.Controllers.Main.errorInvalidRef": "Wprowadź prawidłową nazwę dla wyboru lub prawidłowe odniesienie, aby przejść do tego.", + "SSE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", + "SSE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucz wygasł", + "SSE.Controllers.Main.errorLockedAll": "Operacja nie mogła zostać wykonana, gdy arkusz został zablokowany przez innego użytkownika.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "Nie można zmienić nazwy arkusza, gdy zmieniana jest ona przez innego użytkownika", + "SSE.Controllers.Main.errorMailMergeLoadFile": "Wczytywanie nie powiodło się", + "SSE.Controllers.Main.errorMailMergeSaveFile": "Scalanie nie powiodło się.", + "SSE.Controllers.Main.errorMoveRange": "Nie można zmienić części scalonej komórki", + "SSE.Controllers.Main.errorOpenWarning": "Długość jednej z formuł w pliku przekroczyła
dozwoloną liczbę znaków i została usunięta.", + "SSE.Controllers.Main.errorOperandExpected": "Wprowadzona składnia funkcji jest nieprawidłowa. Sprawdź, czy nie brakuje jednego z nawiasów - '(' lub ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "Obszar kopiowania i wklejania nie pasuje.
Proszę zaznacz obszar o takim samym rozmiarze lub wybierz pierwszą komórkę w rzędzie do wklejenia skopiowanych komórek.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Niestety w bieżącej wersji programu nie można wydrukować więcej niż 1500 stron naraz.
To ograniczenie zostanie usunięte w przyszłych wersjach.", + "SSE.Controllers.Main.errorProcessSaveResult": "Zapis nieudany", + "SSE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", + "SSE.Controllers.Main.errorSessionAbsolute": "Sesja edycji dokumentu wygasła. Proszę ponownie załadować stronę.", + "SSE.Controllers.Main.errorSessionIdle": "Dokument nie był edytowany przez długi czas. Proszę ponownie załadować stronę.", + "SSE.Controllers.Main.errorSessionToken": "Połączenie z serwerem zostało przerwane. Proszę ponownie załadować stronę.", + "SSE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", + "SSE.Controllers.Main.errorToken": "Token bezpieczeństwa dokumentu jest nieprawidłowo uformowany.
Prosimy o kontakt z administratorem serwera dokumentów.", + "SSE.Controllers.Main.errorTokenExpire": "Token zabezpieczeń dokumentu wygasł.
Prosimy o kontakt z administratorem serwera dokumentów.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Błąd zewnętrzny.
Niespodziewany identyfikator GUID. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", + "SSE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", + "SSE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", + "SSE.Controllers.Main.errorUsersExceed": "Przekroczono liczbę dozwolonych użytkowników określonych przez plan cenowy wersji", + "SSE.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.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Wprowadzona formuła jest błędna.
Użyto niepoprawnej liczby klamr.", + "SSE.Controllers.Main.errorWrongOperator": "Wprowadzona formuła jest błędna. Został użyty błędny operator.
Proszę poprawić błąd.", + "SSE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "SSE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", + "SSE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", + "SSE.Controllers.Main.loadFontTextText": "Ładowanie danych...", + "SSE.Controllers.Main.loadFontTitleText": "Ładowanie danych", + "SSE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", + "SSE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", + "SSE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", + "SSE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", + "SSE.Controllers.Main.loadingDocumentTextText": "Ładowanie dokumentu...", + "SSE.Controllers.Main.loadingDocumentTitleText": "Ładowanie dokumentu", + "SSE.Controllers.Main.mailMergeLoadFileText": "Ładowanie źródła danych", + "SSE.Controllers.Main.mailMergeLoadFileTitle": "Ładowanie źródła danych", + "SSE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", + "SSE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", + "SSE.Controllers.Main.openTextText": "Otwieranie dokumentu...", + "SSE.Controllers.Main.openTitleText": "Otwieranie dokumentu", + "SSE.Controllers.Main.printTextText": "Drukowanie dokumentu...", + "SSE.Controllers.Main.printTitleText": "Drukowanie dokumentu", + "SSE.Controllers.Main.reloadButtonText": "Przeładuj stronę", + "SSE.Controllers.Main.requestEditFailedMessageText": "Ktoś właśnie edytuje ten dokument. Proszę spróbuj później.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Odmowa dostępu", + "SSE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliku", + "SSE.Controllers.Main.savePreparingText": "Przygotowywanie do zapisu", + "SSE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", + "SSE.Controllers.Main.saveTextText": "Zapisywanie dokumentu...", + "SSE.Controllers.Main.saveTitleText": "Zapisywanie dokumentu", + "SSE.Controllers.Main.sendMergeText": "Wysyłanie korespondencji seryjnej", + "SSE.Controllers.Main.sendMergeTitle": "Wysyłanie korespondencji seryjnej", + "SSE.Controllers.Main.textAnonymous": "Gość", + "SSE.Controllers.Main.textBack": "Powrót", + "SSE.Controllers.Main.textBuyNow": "Odwiedź stronę web", + "SSE.Controllers.Main.textCancel": "Anuluj", + "SSE.Controllers.Main.textClose": "Zamknij", + "SSE.Controllers.Main.textContactUs": "Skontaktuj się z działem sprzedaży", + "SSE.Controllers.Main.textDone": "Gotowe", + "SSE.Controllers.Main.textLoadingDocument": "Ładowanie dokumentu", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", + "SSE.Controllers.Main.textOK": "OK", + "SSE.Controllers.Main.textPassword": "Hasło", + "SSE.Controllers.Main.textPreloader": "Ładowanie...", + "SSE.Controllers.Main.textShape": "Kształt", + "SSE.Controllers.Main.textStrict": "Tryb ścisły", + "SSE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie \"Szybki\" współtworzenia.
Kliknij przycisk \"Tryb ścisły\", aby przejść do trybu ścisłego edytowania, aby edytować plik bez ingerencji innych użytkowników i wysyłać zmiany tylko po zapisaniu. Możesz przełączać się między trybami współtworzenia, używając edytora Ustawienia zaawansowane.", + "SSE.Controllers.Main.textUsername": "Nazwa użytkownika", + "SSE.Controllers.Main.titleLicenseExp": "Licencja wygasła", + "SSE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", + "SSE.Controllers.Main.titleUpdateVersion": "Wersja uległa zmianie", + "SSE.Controllers.Main.txtAccent": "Akcent", + "SSE.Controllers.Main.txtArt": "Twój tekst tutaj", + "SSE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", + "SSE.Controllers.Main.txtButtons": "Przyciski", + "SSE.Controllers.Main.txtCallouts": "Objaśnienia", + "SSE.Controllers.Main.txtCharts": "Wykresy", + "SSE.Controllers.Main.txtDelimiter": "Separator", + "SSE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", + "SSE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", + "SSE.Controllers.Main.txtEncoding": "Kodowanie", + "SSE.Controllers.Main.txtErrorLoadHistory": "Ładowanie historii nie powiodło się.", + "SSE.Controllers.Main.txtFiguredArrows": "Strzałki", + "SSE.Controllers.Main.txtLines": "Wiersze", + "SSE.Controllers.Main.txtMath": "Matematyczne", + "SSE.Controllers.Main.txtRectangles": "Prostokąty", + "SSE.Controllers.Main.txtSeries": "Serie", + "SSE.Controllers.Main.txtSpace": "Odstęp", + "SSE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", + "SSE.Controllers.Main.txtStyle_Bad": "Zły", + "SSE.Controllers.Main.txtStyle_Calculation": "Obliczenie", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Sprawdź komórkę", + "SSE.Controllers.Main.txtStyle_Comma": "Przecinek", + "SSE.Controllers.Main.txtStyle_Currency": "Waluta", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Tekst wyjaśniający", + "SSE.Controllers.Main.txtStyle_Good": "Dobry", + "SSE.Controllers.Main.txtStyle_Heading_1": "Nagłówek 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Nagłówek 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Nagłówek 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Nagłówek 4", + "SSE.Controllers.Main.txtStyle_Input": "Wejście", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Połączona komórka", + "SSE.Controllers.Main.txtStyle_Neutral": "Neutralny", + "SSE.Controllers.Main.txtStyle_Normal": "Normalny", + "SSE.Controllers.Main.txtStyle_Note": "Notka", + "SSE.Controllers.Main.txtStyle_Output": "Wyjście", + "SSE.Controllers.Main.txtStyle_Percent": "Procent", + "SSE.Controllers.Main.txtStyle_Title": "Tytuł", + "SSE.Controllers.Main.txtStyle_Total": "Wszystkie", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Tekst ostrzegawczy", + "SSE.Controllers.Main.txtTab": "Karta", + "SSE.Controllers.Main.txtXAxis": "Oś X", + "SSE.Controllers.Main.txtYAxis": "Oś Y", + "SSE.Controllers.Main.unknownErrorText": "Nieznany błąd.", + "SSE.Controllers.Main.unsupportedBrowserErrorText ": "Twoja przeglądarka nie jest wspierana.", + "SSE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu został przekroczony.", + "SSE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", + "SSE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", + "SSE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
Zaktualizuj licencję i odśwież stronę.", + "SSE.Controllers.Main.warnNoLicense": "Używasz wersji ONLYOFFICE 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.", + "SSE.Controllers.Main.warnProcessRightsChange": "Nie masz uprawnień do edycji tego pliku.", + "SSE.Controllers.Search.textNoTextFound": "Nie znaleziono tekstu", + "SSE.Controllers.Search.textReplaceAll": "Zamień wszystko", + "SSE.Controllers.Settings.notcriticalErrorTitle": "Ostrzeżenie", + "SSE.Controllers.Settings.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
Czy na pewno chcesz kontynuować?", + "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.menuDelete": "Usuń", + "SSE.Controllers.Statusbar.menuDuplicate": "Duplikuj", + "SSE.Controllers.Statusbar.menuHide": "Ukryj", + "SSE.Controllers.Statusbar.menuUnhide": "Odkryj", + "SSE.Controllers.Statusbar.strSheet": "Arkusz", + "SSE.Controllers.Statusbar.textExternalLink": "Link zewnętrzny", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Arkusz roboczy może zawierać dane. Wykonać operację?", + "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", + "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opuszczasz aplikację", + "SSE.Controllers.Toolbar.leaveButtonText": "Zostaw tę stronę", + "SSE.Controllers.Toolbar.stayButtonText": "Zostań na tej stronie", + "SSE.Views.AddFunction.sCatDateAndTime": "Data i czas", + "SSE.Views.AddFunction.sCatEngineering": "Inżyniera", + "SSE.Views.AddFunction.sCatFinancial": "Finansowe", + "SSE.Views.AddFunction.sCatInformation": "Informacja", + "SSE.Views.AddFunction.sCatLogical": "Logiczny", + "SSE.Views.AddFunction.sCatLookupAndReference": "Wyszukiwanie i odniesienie", + "SSE.Views.AddFunction.sCatMathematic": "Matematyczne i trygonometryczne", + "SSE.Views.AddFunction.sCatStatistical": "Statystyczny", + "SSE.Views.AddFunction.sCatTextAndData": "Tekst i data", + "SSE.Views.AddFunction.textBack": "Powrót", + "SSE.Views.AddFunction.textGroups": "Kategorie", + "SSE.Views.AddLink.textAddLink": "Dodaj link", + "SSE.Views.AddLink.textAddress": "Adres", + "SSE.Views.AddLink.textDisplay": "Pokaż", + "SSE.Views.AddLink.textExternalLink": "Link zewnętrzny", + "SSE.Views.AddLink.textInsert": "Wstaw", + "SSE.Views.AddLink.textInternalLink": "Wewnętrzny zakres danych", + "SSE.Views.AddLink.textLink": "Połączyć", + "SSE.Views.AddLink.textLinkSettings": "Ustawienia linku", + "SSE.Views.AddLink.textLinkType": "Typ linku", + "SSE.Views.AddLink.textRange": "Zakres", + "SSE.Views.AddLink.textRequired": "Wymagany", + "SSE.Views.AddLink.textSheet": "Arkusz", + "SSE.Views.AddLink.textTip": "Wskazówka", + "SSE.Views.AddOther.textAddress": "Adres", + "SSE.Views.AddOther.textBack": "Powrót", + "SSE.Views.AddOther.textFilter": "Filtr", + "SSE.Views.AddOther.textFromLibrary": "Obraz z biblioteki", + "SSE.Views.AddOther.textFromURL": "Obraz z URL", + "SSE.Views.AddOther.textImageURL": "Adres URL obrazu", + "SSE.Views.AddOther.textInsert": "Wstaw", + "SSE.Views.AddOther.textInsertImage": "Wstaw obraz", + "SSE.Views.AddOther.textLink": "Link", + "SSE.Views.AddOther.textSort": "Sortuj i filtruj", + "SSE.Views.EditCell.textAccounting": "Rachunkowy", + "SSE.Views.EditCell.textAlignBottom": "Wyrównaj do dołu", + "SSE.Views.EditCell.textAlignCenter": "Wyrównaj do środka", + "SSE.Views.EditCell.textAlignLeft": "Wyrównaj do lewej", + "SSE.Views.EditCell.textAlignMiddle": "Wyrównaj do środka", + "SSE.Views.EditCell.textAlignRight": "Wyrównaj do prawej", + "SSE.Views.EditCell.textAlignTop": "Wyrównaj do góry", + "SSE.Views.EditCell.textAllBorders": "Wszystkie krawędzie", + "SSE.Views.EditCell.textBack": "Powrót", + "SSE.Views.EditCell.textBorderStyle": "Styl obramowania", + "SSE.Views.EditCell.textBottomBorder": "Dolna krawędź", + "SSE.Views.EditCell.textCellStyle": "Style komórki", + "SSE.Views.EditCell.textColor": "Kolor", + "SSE.Views.EditCell.textCurrency": "Waluta", + "SSE.Views.EditCell.textDate": "Data", + "SSE.Views.EditCell.textDiagDownBorder": "Przekątna granica z góry na dół", + "SSE.Views.EditCell.textDiagUpBorder": "Przekątna granica od dołu do góry", + "SSE.Views.EditCell.textDollar": "Dolar", + "SSE.Views.EditCell.textEuro": "Euro", + "SSE.Views.EditCell.textFillColor": "Wypełnij kolorem", + "SSE.Views.EditCell.textFonts": "Czcionki", + "SSE.Views.EditCell.textFormat": "Formatowanie", + "SSE.Views.EditCell.textGeneral": "Ogólne", + "SSE.Views.EditCell.textInBorders": "Wewnątrz granic", + "SSE.Views.EditCell.textInHorBorder": "Wewnątrz obramowania poziomego", + "SSE.Views.EditCell.textInteger": "Liczba całkowita", + "SSE.Views.EditCell.textInVertBorder": "Wewnątrz pionowego obramowania", + "SSE.Views.EditCell.textJustified": "Wyjustowany", + "SSE.Views.EditCell.textLeftBorder": "Lewa krawędź", + "SSE.Views.EditCell.textMedium": "Średni", + "SSE.Views.EditCell.textNoBorder": "Brak obramowania", + "SSE.Views.EditCell.textNumber": "Numeryczny", + "SSE.Views.EditCell.textPercentage": "Procentowo", + "SSE.Views.EditCell.textPound": "Funt", + "SSE.Views.EditCell.textRightBorder": "Prawa krawędź", + "SSE.Views.EditCell.textRouble": "Rubel", + "SSE.Views.EditCell.textScientific": "Naukowy", + "SSE.Views.EditCell.textSize": "Rozmiar", + "SSE.Views.EditCell.textText": "Tekst", + "SSE.Views.EditCell.textTextColor": "Kolor tekstu", + "SSE.Views.EditCell.textTextFormat": "Format tekstu", + "SSE.Views.EditCell.textThick": "Gruby", + "SSE.Views.EditCell.textThin": "Cienki", + "SSE.Views.EditCell.textTime": "Czas", + "SSE.Views.EditCell.textTopBorder": "Górna krawędź", + "SSE.Views.EditCell.textWrapText": "Zawijaj tekst", + "SSE.Views.EditCell.textYen": "Jen", + "SSE.Views.EditChart.textAuto": "Automatyczny", + "SSE.Views.EditChart.textAxisCrosses": "Krzywe osie", + "SSE.Views.EditChart.textAxisOptions": "Opcje osi", + "SSE.Views.EditChart.textAxisPosition": "Pozycja osi", + "SSE.Views.EditChart.textAxisTitle": "Tytuł osi", + "SSE.Views.EditChart.textBack": "Powrót", + "SSE.Views.EditChart.textBackward": "Przenieś do tyłu", + "SSE.Views.EditChart.textBorder": "Obramowanie", + "SSE.Views.EditChart.textBottom": "Dół", + "SSE.Views.EditChart.textChart": "Wykres", + "SSE.Views.EditChart.textChartTitle": "Tytuł wykresu", + "SSE.Views.EditChart.textColor": "Kolor", + "SSE.Views.EditChart.textCrossesValue": "Wartość", + "SSE.Views.EditChart.textDataLabels": "Ciemne etykiety", + "SSE.Views.EditChart.textDesign": "Widok", + "SSE.Views.EditChart.textDisplayUnits": "Pokaż jednostki", + "SSE.Views.EditChart.textFill": "Wypełnij", + "SSE.Views.EditChart.textForward": "Przenieś do przodu", + "SSE.Views.EditChart.textHorAxis": "Pozioma oś", + "SSE.Views.EditChart.textHorizontal": "Poziomy", + "SSE.Views.EditChart.textLabelOptions": "Ustawienia etykiety", + "SSE.Views.EditChart.textLabelPos": "Pozycja etykiety", + "SSE.Views.EditChart.textLayout": "Układ", + "SSE.Views.EditChart.textLeft": "Lewy", + "SSE.Views.EditChart.textLeftOverlay": "Lewa nakładka", + "SSE.Views.EditChart.textLegend": "Legenda", + "SSE.Views.EditChart.textMajor": "Główny", + "SSE.Views.EditChart.textMajorMinor": "Większy i mniejszy", + "SSE.Views.EditChart.textMajorType": "Główny typ", + "SSE.Views.EditChart.textMaxValue": "Maksymalna wartość", + "SSE.Views.EditChart.textMinor": "Mniejszy", + "SSE.Views.EditChart.textMinorType": "Mały typ", + "SSE.Views.EditChart.textMinValue": "Wartość minimalna", + "SSE.Views.EditChart.textNone": "żaden", + "SSE.Views.EditChart.textNoOverlay": "Brak pokrycia", + "SSE.Views.EditChart.textOverlay": "Nałożenie", + "SSE.Views.EditChart.textRemoveChart": "Usuń wykres", + "SSE.Views.EditChart.textReorder": "Zmień kolejność", + "SSE.Views.EditChart.textRight": "Prawy", + "SSE.Views.EditChart.textRightOverlay": "Właściwa nakładka", + "SSE.Views.EditChart.textRotated": "Obrócony", + "SSE.Views.EditChart.textSize": "Rozmiar", + "SSE.Views.EditChart.textStyle": "Styl", + "SSE.Views.EditChart.textTickOptions": "Zaznacz opcje", + "SSE.Views.EditChart.textToBackground": "Wyślij do tła", + "SSE.Views.EditChart.textToForeground": "Idź na pierwszy plan", + "SSE.Views.EditChart.textTop": "Góra", + "SSE.Views.EditChart.textType": "Typ", + "SSE.Views.EditChart.textValReverseOrder": "Wartości w odwrotnej kolejności", + "SSE.Views.EditChart.textVerAxis": "Oś pionowa", + "SSE.Views.EditChart.textVertical": "Pionowy", + "SSE.Views.EditHyperlink.textBack": "Powrót", + "SSE.Views.EditHyperlink.textDisplay": "Pokaż", + "SSE.Views.EditHyperlink.textEditLink": "Edytuj link", + "SSE.Views.EditHyperlink.textExternalLink": "Link zewnętrzny", + "SSE.Views.EditHyperlink.textInternalLink": "Wewnętrzny zakres danych", + "SSE.Views.EditHyperlink.textLink": "Link", + "SSE.Views.EditHyperlink.textLinkType": "Typ linku", + "SSE.Views.EditHyperlink.textRange": "Zakres", + "SSE.Views.EditHyperlink.textRemoveLink": "Usuń link", + "SSE.Views.EditHyperlink.textScreenTip": "Wskazówka", + "SSE.Views.EditHyperlink.textSheet": "Arkusz", + "SSE.Views.EditImage.textAddress": "Adres", + "SSE.Views.EditImage.textBack": "Powrót", + "SSE.Views.EditImage.textBackward": "Przenieś do tyłu", + "SSE.Views.EditImage.textDefault": "Domyślny rozmiar", + "SSE.Views.EditImage.textForward": "Przenieś do przodu", + "SSE.Views.EditImage.textFromLibrary": "Obraz z biblioteki", + "SSE.Views.EditImage.textFromURL": "Obraz z URL", + "SSE.Views.EditImage.textImageURL": "Adres URL obrazu", + "SSE.Views.EditImage.textLinkSettings": "Ustawienia linku", + "SSE.Views.EditImage.textRemove": "Usuń obraz", + "SSE.Views.EditImage.textReorder": "Zmień kolejność", + "SSE.Views.EditImage.textReplace": "Zamień", + "SSE.Views.EditImage.textReplaceImg": "Zamień obraz", + "SSE.Views.EditImage.textToBackground": "Wyślij do tła", + "SSE.Views.EditImage.textToForeground": "Idź na pierwszy plan", + "SSE.Views.EditShape.textBack": "Powrót", + "SSE.Views.EditShape.textBackward": "Przenieś do tyłu", + "SSE.Views.EditShape.textBorder": "Obramowanie", + "SSE.Views.EditShape.textColor": "Kolor", + "SSE.Views.EditShape.textEffects": "Efekty", + "SSE.Views.EditShape.textFill": "Wypełnij", + "SSE.Views.EditShape.textForward": "Przenieś do przodu", + "SSE.Views.EditShape.textOpacity": "Nieprzezroczystość", + "SSE.Views.EditShape.textRemoveShape": "Usuń kształt", + "SSE.Views.EditShape.textReorder": "Zmień kolejność", + "SSE.Views.EditShape.textReplace": "Zamień", + "SSE.Views.EditShape.textSize": "Rozmiar", + "SSE.Views.EditShape.textStyle": "Styl", + "SSE.Views.EditShape.textToBackground": "Wyślij do tła", + "SSE.Views.EditShape.textToForeground": "Przejdź na pierwszy plan", + "SSE.Views.EditText.textBack": "Powrót", + "SSE.Views.EditText.textFillColor": "Wypełnij kolorem", + "SSE.Views.EditText.textFonts": "Czcionki", + "SSE.Views.EditText.textSize": "Rozmiar", + "SSE.Views.EditText.textTextColor": "Kolor tekstu", + "SSE.Views.Search.textDone": "Gotowe", + "SSE.Views.Search.textFind": "Znajdź", + "SSE.Views.Search.textFindAndReplace": "Znajdź i zamień", + "SSE.Views.Search.textMatchCase": "Z uwzględnieniem wielkości liter", + "SSE.Views.Search.textMatchCell": "Dopasuj komórkę", + "SSE.Views.Search.textReplace": "Zamień", + "SSE.Views.Search.textSearch": "Szukaj", + "SSE.Views.Search.textSearchIn": "Szukaj w", + "SSE.Views.Search.textSheet": "Arkusz", + "SSE.Views.Search.textWorkbook": "Skoroszyt", + "SSE.Views.Settings.textAbout": "O", + "SSE.Views.Settings.textAddress": "Adres", + "SSE.Views.Settings.textAuthor": "Autor", + "SSE.Views.Settings.textBack": "Powrót", + "SSE.Views.Settings.textCreateDate": "Data utworzenia", + "SSE.Views.Settings.textDocInfo": "Informacje o arkuszu kalkulacyjnym", + "SSE.Views.Settings.textDocTitle": "Tytuł arkusza kalkulacyjnego", + "SSE.Views.Settings.textDone": "Gotowe", + "SSE.Views.Settings.textDownload": "Pobierz", + "SSE.Views.Settings.textDownloadAs": "Pobierz jako...", + "SSE.Views.Settings.textEditDoc": "Edytuj dokument", + "SSE.Views.Settings.textEmail": "E-mail", + "SSE.Views.Settings.textFind": "Znajdź", + "SSE.Views.Settings.textFindAndReplace": "Znajdź i zamień", + "SSE.Views.Settings.textHelp": "Pomoc", + "SSE.Views.Settings.textLoading": "Ładowanie...", + "SSE.Views.Settings.textPoweredBy": "zasilany przez", + "SSE.Views.Settings.textSettings": "Ustawienia", + "SSE.Views.Settings.textTel": "tel", + "SSE.Views.Settings.textVersion": "Wersja", + "SSE.Views.Settings.unknownText": "Nieznany", + "SSE.Views.Toolbar.textBack": "Powrót" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 22d611760..a0b4e90ae 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -5,8 +5,8 @@ "Common.Utils.Metric.txtPt": "pt", "SSE.Controllers.AddChart.txtDiagramTitle": "Názov grafu", "SSE.Controllers.AddChart.txtSeries": "Rady", - "SSE.Controllers.AddChart.txtXAxis": "Os X\n\n", - "SSE.Controllers.AddChart.txtYAxis": "Os Y\n\n", + "SSE.Controllers.AddChart.txtXAxis": "Os X", + "SSE.Controllers.AddChart.txtYAxis": "Os Y", "SSE.Controllers.AddContainer.textChart": "Graf", "SSE.Controllers.AddContainer.textFormula": "Funkcia", "SSE.Controllers.AddContainer.textImage": "Obrázok", @@ -25,19 +25,19 @@ "SSE.Controllers.DocumentHolder.menuHide": "Skryť", "SSE.Controllers.DocumentHolder.menuMerge": "Zlúčiť", "SSE.Controllers.DocumentHolder.menuMore": "Viac", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz\n\n", + "SSE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz", "SSE.Controllers.DocumentHolder.menuPaste": "Vložiť", "SSE.Controllers.DocumentHolder.menuShow": "Zobraziť", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Zrušiť zlúčenie\n\n", + "SSE.Controllers.DocumentHolder.menuUnmerge": "Zrušiť zlúčenie", "SSE.Controllers.DocumentHolder.menuUnwrap": "Rozbaliť", "SSE.Controllers.DocumentHolder.menuWrap": "Zabaliť", "SSE.Controllers.DocumentHolder.sheetCancel": "Zrušiť", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Operácia môže zničiť údaje vo vybraných bunkách.
Pokračovať?\n\n", + "SSE.Controllers.DocumentHolder.warnMergeLostData": "Operácia môže zničiť údaje vo vybraných bunkách.
Pokračovať?", "SSE.Controllers.EditCell.textAuto": "Automaticky", "SSE.Controllers.EditCell.textFonts": "Písma", "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255.\n\n", - "SSE.Controllers.EditChart.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", + "SSE.Controllers.EditChart.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255.", + "SSE.Controllers.EditChart.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", "SSE.Controllers.EditChart.textAuto": "Automaticky", "SSE.Controllers.EditChart.textBetweenTickMarks": "Medzi značkami rozsahu", "SSE.Controllers.EditChart.textBillions": "Miliardy", @@ -74,7 +74,7 @@ "SSE.Controllers.EditChart.textRotated": "Otočený", "SSE.Controllers.EditChart.textTenMillions": "10 000 000", "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tisíce\n\n", + "SSE.Controllers.EditChart.textThousands": "Tisíce", "SSE.Controllers.EditChart.textTop": "Hore", "SSE.Controllers.EditChart.textTrillions": "Bilióny", "SSE.Controllers.EditChart.textValue": "Hodnota", @@ -90,7 +90,7 @@ "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musíte upresniť URL obrázka.", "SSE.Controllers.EditHyperlink.textExternalLink": "Externý odkaz", "SSE.Controllers.EditHyperlink.textInternalLink": "Interný rozsah údajov", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Neplatný rozsah buniek\n\n", + "SSE.Controllers.EditHyperlink.textInvalidRange": "Neplatný rozsah buniek", "SSE.Controllers.EditHyperlink.txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", "SSE.Controllers.Main.advCSVOptions": "Vybrať možnosti CSV", "SSE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:", @@ -98,66 +98,66 @@ "SSE.Controllers.Main.advDRMPassword": "Heslo", "SSE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", "SSE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", - "SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.\n\n", - "SSE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.\n\n", + "SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", + "SSE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.", "SSE.Controllers.Main.criticalErrorTitle": "Chyba", - "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek\n\n", + "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Editor tabuliek", "SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", "SSE.Controllers.Main.downloadMergeText": "Sťahovanie...", "SSE.Controllers.Main.downloadMergeTitle": "Sťahovanie", "SSE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", "SSE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", - "SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", + "SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorArgsRange": "Chyba v zadanom vzorci.
Používa sa nesprávny rozsah argumentov.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.\n\n", + "SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.", "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operácia nemôže byť vykonaná pre vybrané bunky, pretože nemôžete presunúť časť tabuľky.
Vyberte iný rozsah údajov tak, aby sa celá tabuľka posunula a skúste to znova.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.\n\n", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operáciu nemožno vykonať, pretože oblasť obsahuje filtrované bunky.
Odkryte filtrované prvky a skúste to znova.", "SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.\n\n", - "SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu\n\n\n\n\n\n", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
Vyberte jeden rozsah a skúste to znova.\n\n", - "SSE.Controllers.Main.errorCountArg": "Chyba v zadanom vzorci.
Používa sa nesprávny počet argumentov.\n\n\n", - "SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadanom vzorci.
Počet argumentov je prekročený.\n\n\n", - "SSE.Controllers.Main.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
, keďže niektoré z nich sú práve editované.\n\n", - "SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. \n\n", - "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.\n\n", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", + "SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.

Viac informácií o pripojení dokumentového servera nájdete tu", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
Vyberte jeden rozsah a skúste to znova.", + "SSE.Controllers.Main.errorCountArg": "Chyba v zadanom vzorci.
Používa sa nesprávny počet argumentov.", + "SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadanom vzorci.
Počet argumentov je prekročený.", + "SSE.Controllers.Main.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
, keďže niektoré z nich sú práve editované.", + "SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", + "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", "SSE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", "SSE.Controllers.Main.errorFileRequest": "Externá chyba.
Chyba požiadavky súboru. Ak chyba pretrváva, kontaktujte podporu.", "SSE.Controllers.Main.errorFileVKey": "Externá chyba.
Nesprávny bezpečnostný kľúč. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
Všetky zlúčené bunky musia mať rovnakú veľkosť.\n\n\n", + "SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
Všetky zlúčené bunky musia mať rovnakú veľkosť.", "SSE.Controllers.Main.errorFormulaName": "Chyba v zadanom vzorci.
Používa sa nesprávny názov vzorca.", "SSE.Controllers.Main.errorFormulaParsing": "Interná chyba pri analýze vzorca.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.
Skontrolujte prosím údaje a skúste to znova.\n\n", - "SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.\n\n", - "SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru\n\n", - "SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal\n\n", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.
Skontrolujte prosím údaje a skúste to znova.", + "SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.", + "SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", + "SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", "SSE.Controllers.Main.errorLockedAll": "Operáciu nemožno vykonať, pretože list bol zamknutý iným používateľom.", "SSE.Controllers.Main.errorLockedWorksheetRename": "List nemôže byť momentálne premenovaný, pretože je premenovaný iným používateľom", "SSE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo", "SSE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", - "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky\n\n", - "SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
povolený počet znakov a bola odstránená.\n\n", - "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.\n\n", - "SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.
Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.\n\n", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.
Toto obmedzenie bude odstránené v najbližších vydaniach.\n\n", + "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky", + "SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
povolený počet znakov a bola odstránená.", + "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.
Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.
Toto obmedzenie bude odstránené v najbližších vydaniach.", "SSE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo", - "SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.\n\n", - "SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.\n\n", - "SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.\n\n", - "SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.\n\n", - "SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.\n\n\n\n", - "SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. \n", - "SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. \n\n", + "SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", + "SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", + "SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
začiatočná cena, max cena, min cena, konečná cena.", + "SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
Prosím, kontaktujte svojho správcu dokumentového servera. ", + "SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
Prosím, kontaktujte svojho správcu dokumentového servera. ", "SSE.Controllers.Main.errorUnexpectedGuid": "Externá chyba.
Neočakávaná GUID. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.\n\n", - "SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.\n", - "SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený\n\n", + "SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", + "SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", + "SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", "SSE.Controllers.Main.errorViewerDisconnect": "Spojenie je prerušené. Dokument môžete zobraziť,
ale nemôžete ho stiahnuť ani vytlačiť, kým sa spojenie neobnoví.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.
Používa sa nesprávny počet zátvoriek.\n\n", + "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.
Používa sa nesprávny počet zátvoriek.", "SSE.Controllers.Main.errorWrongOperator": "Chyba v zadanom vzorci. Používa sa nesprávny operátor.
Prosím, opravte chybu.", - "SSE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n", + "SSE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", "SSE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", "SSE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", "SSE.Controllers.Main.loadFontTextText": "Načítavanie dát...", @@ -165,11 +165,11 @@ "SSE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", "SSE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", "SSE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku\n\n", + "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", "SSE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...", "SSE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu", - "SSE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...\n\n", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov\n\n", + "SSE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...", + "SSE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov", "SSE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", "SSE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba", "SSE.Controllers.Main.openTextText": "Otváranie dokumentu...", @@ -177,55 +177,55 @@ "SSE.Controllers.Main.printTextText": "Tlač dokumentu...", "SSE.Controllers.Main.printTitleText": "Tlač dokumentu", "SSE.Controllers.Main.reloadButtonText": "Obnoviť stránku", - "SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.\n\n", + "SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", "SSE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", "SSE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "SSE.Controllers.Main.savePreparingText": "Príprava na uloženie\n\n", - "SSE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...\n\n", + "SSE.Controllers.Main.savePreparingText": "Príprava na uloženie", + "SSE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", "SSE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", "SSE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", - "SSE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...\n\n", - "SSE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia\n\n", + "SSE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...", + "SSE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia", "SSE.Controllers.Main.textAnonymous": "Anonymný", "SSE.Controllers.Main.textBack": "Späť", "SSE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", "SSE.Controllers.Main.textCancel": "Zrušiť", "SSE.Controllers.Main.textClose": "Zatvoriť", - "SSE.Controllers.Main.textContactUs": "Kontaktujte predajcu\n\n", + "SSE.Controllers.Main.textContactUs": "Kontaktujte predajcu", "SSE.Controllers.Main.textDone": "Hotovo", "SSE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom\n\n", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE verzia s otvoreným zdrojom", "SSE.Controllers.Main.textOK": "OK", "SSE.Controllers.Main.textPassword": "Heslo", "SSE.Controllers.Main.textPreloader": "Nahrávanie...", "SSE.Controllers.Main.textShape": "Tvar", - "SSE.Controllers.Main.textStrict": "Prísny režim\n\n", + "SSE.Controllers.Main.textStrict": "Prísny režim", "SSE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", "SSE.Controllers.Main.textUsername": "Užívateľské meno", - "SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula\n\n", - "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný\n\n", - "SSE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená\n\n", + "SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", + "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", + "SSE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", "SSE.Controllers.Main.txtAccent": "Akcent", "SSE.Controllers.Main.txtArt": "Váš text tu", - "SSE.Controllers.Main.txtBasicShapes": "Základné tvary\n\n", + "SSE.Controllers.Main.txtBasicShapes": "Základné tvary", "SSE.Controllers.Main.txtButtons": "Tlačidlá", "SSE.Controllers.Main.txtCallouts": "Popisky obrázku", "SSE.Controllers.Main.txtCharts": "Grafy", "SSE.Controllers.Main.txtDelimiter": "Oddeľovač", "SSE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...\n\n", + "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", "SSE.Controllers.Main.txtEncoding": "Kódovanie", - "SSE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo\n\n", + "SSE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", "SSE.Controllers.Main.txtFiguredArrows": "Šipky", "SSE.Controllers.Main.txtLines": "Riadky/čiary", "SSE.Controllers.Main.txtMath": "Matematika", "SSE.Controllers.Main.txtRectangles": "Obdĺžniky", "SSE.Controllers.Main.txtSeries": "Rady", "SSE.Controllers.Main.txtSpace": "Priestor", - "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy\n\n", + "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", "SSE.Controllers.Main.txtStyle_Bad": "Zlý/chybný", "SSE.Controllers.Main.txtStyle_Calculation": "Kalkulácia", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Skontrolovať bunku\n\n", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Skontrolovať bunku", "SSE.Controllers.Main.txtStyle_Comma": "Čiarka", "SSE.Controllers.Main.txtStyle_Currency": "Mena", "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Vysvetľujúci text", @@ -234,7 +234,7 @@ "SSE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", "SSE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", "SSE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4", - "SSE.Controllers.Main.txtStyle_Input": "Vstup/vstupná jednotka\n", + "SSE.Controllers.Main.txtStyle_Input": "Vstup/vstupná jednotka", "SSE.Controllers.Main.txtStyle_Linked_Cell": "Spojená bunka", "SSE.Controllers.Main.txtStyle_Neutral": "Neutrálny", "SSE.Controllers.Main.txtStyle_Normal": "Normálny", @@ -245,42 +245,42 @@ "SSE.Controllers.Main.txtStyle_Total": "Celkovo", "SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text", "SSE.Controllers.Main.txtTab": "Tabulátor", - "SSE.Controllers.Main.txtXAxis": "Os X\n\n", - "SSE.Controllers.Main.txtYAxis": "Os Y\n\n", + "SSE.Controllers.Main.txtXAxis": "Os X", + "SSE.Controllers.Main.txtYAxis": "Os Y", "SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.", - "SSE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.\n\n", - "SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.\n\n", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.\n\n", + "SSE.Controllers.Main.unsupportedBrowserErrorText ": "Váš prehliadač nie je podporovaný.", + "SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", "SSE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka", "SSE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", "SSE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.\n\n\n\n", - "SSE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.\n\n\n", + "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
Prosím, aktualizujte si svoju licenciu a obnovte stránku.", + "SSE.Controllers.Main.warnNoLicense": "Používate verziu ONLYOFFICE s otvoreným zdrojom. Verzia má obmedzenia pre súbežné pripojenia k dokumentovému serveru (20 pripojení naraz).
Ak potrebujete viac, prosím zvážte nákup komerčnej licencie.", "SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", "SSE.Controllers.Search.textNoTextFound": "Text nebol nájdený", "SSE.Controllers.Search.textReplaceAll": "Nahradiť všetko", "SSE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?\n\n", + "SSE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
Ste si istý, že chcete pokračovať?", "SSE.Controllers.Statusbar.errorLastSheet": "Pracovný zošit musí mať aspoň jeden viditeľný pracovný list.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.\n\n", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.", "SSE.Controllers.Statusbar.menuDelete": "Vymazať", "SSE.Controllers.Statusbar.menuDuplicate": "Duplikát", "SSE.Controllers.Statusbar.menuHide": "Skryť", "SSE.Controllers.Statusbar.menuUnhide": "Odkryť", "SSE.Controllers.Statusbar.strSheet": "List", "SSE.Controllers.Statusbar.textExternalLink": "Externý odkaz", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže mať údaje. Vykonať operáciu?\n\n", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.\n\n", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže mať údaje. Vykonať operáciu?", + "SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu", "SSE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku", - "SSE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke\n\n", + "SSE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke", "SSE.Views.AddFunction.sCatDateAndTime": "Dátum a čas", "SSE.Views.AddFunction.sCatEngineering": "Inžinierstvo", "SSE.Views.AddFunction.sCatFinancial": "Finančné", "SSE.Views.AddFunction.sCatInformation": "Informácie", "SSE.Views.AddFunction.sCatLogical": "Logické", "SSE.Views.AddFunction.sCatLookupAndReference": "Vyhľadávanie a referencie", - "SSE.Views.AddFunction.sCatMathematic": "Matematika a trigonometria\n\n", + "SSE.Views.AddFunction.sCatMathematic": "Matematika a trigonometria", "SSE.Views.AddFunction.sCatStatistical": "Štatistické", "SSE.Views.AddFunction.sCatTextAndData": "Text a dáta", "SSE.Views.AddFunction.textBack": "Späť", @@ -292,7 +292,7 @@ "SSE.Views.AddLink.textInsert": "Vložiť", "SSE.Views.AddLink.textInternalLink": "Interný rozsah údajov", "SSE.Views.AddLink.textLink": "Odkaz", - "SSE.Views.AddLink.textLinkSettings": "Nastavenia odkazu\n\n", + "SSE.Views.AddLink.textLinkSettings": "Nastavenia odkazu", "SSE.Views.AddLink.textLinkType": "Typ odkazu", "SSE.Views.AddLink.textRange": "Rozsah", "SSE.Views.AddLink.textRequired": "Vyžadovaný", @@ -331,9 +331,9 @@ "SSE.Views.EditCell.textFonts": "Písma", "SSE.Views.EditCell.textFormat": "Formát", "SSE.Views.EditCell.textGeneral": "Všeobecné", - "SSE.Views.EditCell.textInBorders": "Vnútorné orámovanie\n\n", + "SSE.Views.EditCell.textInBorders": "Vnútorné orámovanie", "SSE.Views.EditCell.textInHorBorder": "Vnútorné horizontálne orámovanie", - "SSE.Views.EditCell.textInteger": "Celé číslo\n", + "SSE.Views.EditCell.textInteger": "Celé číslo", "SSE.Views.EditCell.textInVertBorder": "Vnútorné vertikálne orámovanie", "SSE.Views.EditCell.textJustified": "Podľa okrajov", "SSE.Views.EditCell.textLeftBorder": "Ľavé orámovanie", @@ -341,25 +341,25 @@ "SSE.Views.EditCell.textNoBorder": "Bez orámovania", "SSE.Views.EditCell.textNumber": "Číslo", "SSE.Views.EditCell.textPercentage": "Percentuálny podiel", - "SSE.Views.EditCell.textPound": "Libra (britská mena)\n", + "SSE.Views.EditCell.textPound": "Libra (britská mena)", "SSE.Views.EditCell.textRightBorder": "Pravé orámovanie", "SSE.Views.EditCell.textRouble": "Rubeľ", "SSE.Views.EditCell.textScientific": "Vedecký", "SSE.Views.EditCell.textSize": "Veľkosť", "SSE.Views.EditCell.textText": "Text", "SSE.Views.EditCell.textTextColor": "Farba textu", - "SSE.Views.EditCell.textTextFormat": "Formát textu\n\n", + "SSE.Views.EditCell.textTextFormat": "Formát textu", "SSE.Views.EditCell.textThick": "Hrubý/tučný", "SSE.Views.EditCell.textThin": "Tenký", "SSE.Views.EditCell.textTime": "Čas", "SSE.Views.EditCell.textTopBorder": "Horné orámovanie", "SSE.Views.EditCell.textWrapText": "Obtekanie textu", - "SSE.Views.EditCell.textYen": "yen/menová jednotka Japonska\n", + "SSE.Views.EditCell.textYen": "yen/menová jednotka Japonska", "SSE.Views.EditChart.textAuto": "Automaticky", "SSE.Views.EditChart.textAxisCrosses": "Kríženie os", "SSE.Views.EditChart.textAxisOptions": "Možnosti osi", "SSE.Views.EditChart.textAxisPosition": "Umiestnenie osi", - "SSE.Views.EditChart.textAxisTitle": "Názov osi\n\n", + "SSE.Views.EditChart.textAxisTitle": "Názov osi", "SSE.Views.EditChart.textBack": "Späť", "SSE.Views.EditChart.textBackward": "Posunúť späť", "SSE.Views.EditChart.textBorder": "Orámovanie", @@ -368,22 +368,22 @@ "SSE.Views.EditChart.textChartTitle": "Názov grafu", "SSE.Views.EditChart.textColor": "Farba", "SSE.Views.EditChart.textCrossesValue": "Prekračuje hodnotu", - "SSE.Views.EditChart.textDataLabels": "Popisky dát\n\n", + "SSE.Views.EditChart.textDataLabels": "Popisky dát", "SSE.Views.EditChart.textDesign": "Dizajn/náčrt", - "SSE.Views.EditChart.textDisplayUnits": "Zobrazovacie jednotky\n\n", + "SSE.Views.EditChart.textDisplayUnits": "Zobrazovacie jednotky", "SSE.Views.EditChart.textFill": "Vyplniť", "SSE.Views.EditChart.textForward": "Posunúť vpred", "SSE.Views.EditChart.textHorAxis": "Vodorovná os", "SSE.Views.EditChart.textHorizontal": "Vodorovný", - "SSE.Views.EditChart.textLabelOptions": "Možnosti menoviek\n\n", + "SSE.Views.EditChart.textLabelOptions": "Možnosti menoviek", "SSE.Views.EditChart.textLabelPos": "Umiestnenie menoviek", "SSE.Views.EditChart.textLayout": "Rozloženie", "SSE.Views.EditChart.textLeft": "Vľavo", "SSE.Views.EditChart.textLeftOverlay": "Ľavé prekrytie", "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Hlavný\n", + "SSE.Views.EditChart.textMajor": "Hlavný", "SSE.Views.EditChart.textMajorMinor": "Hlavný a vedľajší", - "SSE.Views.EditChart.textMajorType": "Hlavná značka\n\n", + "SSE.Views.EditChart.textMajorType": "Hlavná značka", "SSE.Views.EditChart.textMaxValue": "Maximálna hodnota", "SSE.Views.EditChart.textMinor": "Vedľajší", "SSE.Views.EditChart.textMinorType": "Vedľajšia značka", @@ -392,19 +392,19 @@ "SSE.Views.EditChart.textNoOverlay": "Žiadne prekrytie", "SSE.Views.EditChart.textOverlay": "Prekrytie", "SSE.Views.EditChart.textRemoveChart": "Odstrániť graf", - "SSE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "SSE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia", "SSE.Views.EditChart.textRight": "Vpravo", "SSE.Views.EditChart.textRightOverlay": "Pravé prekrytie", "SSE.Views.EditChart.textRotated": "Otočený", "SSE.Views.EditChart.textSize": "Veľkosť", "SSE.Views.EditChart.textStyle": "Štýl", - "SSE.Views.EditChart.textTickOptions": "Možnosti značiek\n\n", + "SSE.Views.EditChart.textTickOptions": "Možnosti značiek", "SSE.Views.EditChart.textToBackground": "Presunúť do pozadia", "SSE.Views.EditChart.textToForeground": "Premiestniť do popredia", "SSE.Views.EditChart.textTop": "Hore", "SSE.Views.EditChart.textType": "Typ", "SSE.Views.EditChart.textValReverseOrder": "Hodnoty v opačnom poradí", - "SSE.Views.EditChart.textVerAxis": "Vertikálna os\n\n", + "SSE.Views.EditChart.textVerAxis": "Vertikálna os", "SSE.Views.EditChart.textVertical": "Zvislý", "SSE.Views.EditHyperlink.textBack": "Späť", "SSE.Views.EditHyperlink.textDisplay": "Zobraziť", @@ -425,11 +425,11 @@ "SSE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice", "SSE.Views.EditImage.textFromURL": "Obrázok z URL adresy", "SSE.Views.EditImage.textImageURL": "URL obrázka", - "SSE.Views.EditImage.textLinkSettings": "Nastavenia odkazu\n\n", + "SSE.Views.EditImage.textLinkSettings": "Nastavenia odkazu", "SSE.Views.EditImage.textRemove": "Odstrániť obrázok", - "SSE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "SSE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia", "SSE.Views.EditImage.textReplace": "Nahradiť", - "SSE.Views.EditImage.textReplaceImg": "Nahradiť obrázok\n\n", + "SSE.Views.EditImage.textReplaceImg": "Nahradiť obrázok", "SSE.Views.EditImage.textToBackground": "Presunúť do pozadia", "SSE.Views.EditImage.textToForeground": "Premiestniť do popredia", "SSE.Views.EditShape.textBack": "Späť", @@ -441,7 +441,7 @@ "SSE.Views.EditShape.textForward": "Posunúť vpred", "SSE.Views.EditShape.textOpacity": "Priehľadnosť", "SSE.Views.EditShape.textRemoveShape": "Odstrániť tvar", - "SSE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia\n\n\n", + "SSE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia", "SSE.Views.EditShape.textReplace": "Nahradiť", "SSE.Views.EditShape.textSize": "Veľkosť", "SSE.Views.EditShape.textStyle": "Štýl", @@ -467,7 +467,7 @@ "SSE.Views.Settings.textAuthor": "Autor", "SSE.Views.Settings.textBack": "Späť", "SSE.Views.Settings.textCreateDate": "Dátum vytvorenia", - "SSE.Views.Settings.textDocInfo": "Informácie tabuľky\n\n", + "SSE.Views.Settings.textDocInfo": "Informácie tabuľky", "SSE.Views.Settings.textDocTitle": "Názov zošitu", "SSE.Views.Settings.textDone": "Hotovo", "SSE.Views.Settings.textDownload": "Stiahnuť", diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json new file mode 100644 index 000000000..935ae3066 --- /dev/null +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -0,0 +1,487 @@ +{ + "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", + "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "SSE.Controllers.AddChart.txtDiagramTitle": "Grafik başlığı", + "SSE.Controllers.AddChart.txtSeries": "Seriler", + "SSE.Controllers.AddChart.txtXAxis": "X Ekseni", + "SSE.Controllers.AddChart.txtYAxis": "Y Ekseni", + "SSE.Controllers.AddContainer.textChart": "Grafik", + "SSE.Controllers.AddContainer.textFormula": "Fonksiyon", + "SSE.Controllers.AddContainer.textImage": "Resim", + "SSE.Controllers.AddContainer.textOther": "Diğer", + "SSE.Controllers.AddContainer.textShape": "Şekil", + "SSE.Controllers.AddLink.textInvalidRange": "HATA! Geçersiz hücre aralığı", + "SSE.Controllers.AddLink.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", + "SSE.Controllers.AddOther.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", + "SSE.Controllers.AddOther.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", + "SSE.Controllers.DocumentHolder.menuAddLink": "Link Ekle", + "SSE.Controllers.DocumentHolder.menuCell": "Hücre", + "SSE.Controllers.DocumentHolder.menuCopy": "Kopyala", + "SSE.Controllers.DocumentHolder.menuCut": "Kes", + "SSE.Controllers.DocumentHolder.menuDelete": "Sil", + "SSE.Controllers.DocumentHolder.menuEdit": "Düzenle", + "SSE.Controllers.DocumentHolder.menuHide": "Gizle", + "SSE.Controllers.DocumentHolder.menuMerge": "Birleştir", + "SSE.Controllers.DocumentHolder.menuMore": "Daha fazla", + "SSE.Controllers.DocumentHolder.menuOpenLink": "Linki Aç", + "SSE.Controllers.DocumentHolder.menuPaste": "Yapıştır", + "SSE.Controllers.DocumentHolder.menuShow": "Göster", + "SSE.Controllers.DocumentHolder.menuUnmerge": "Birleştirmeyi kaldır", + "SSE.Controllers.DocumentHolder.menuUnwrap": "Kaydırmayı kaldır", + "SSE.Controllers.DocumentHolder.menuWrap": "Metni Kaydır", + "SSE.Controllers.DocumentHolder.sheetCancel": "İptal", + "SSE.Controllers.DocumentHolder.warnMergeLostData": "İşlem seçili hücrelerdeki veriyi yok edebilir.
Devam etmek istiyor musunuz?", + "SSE.Controllers.EditCell.textAuto": "Otomatik", + "SSE.Controllers.EditCell.textFonts": "Yazı Tipleri", + "SSE.Controllers.EditCell.textPt": "pt", + "SSE.Controllers.EditChart.errorMaxRows": "HATA! Veri serisi grafik başına en fazla 255 olabilir.", + "SSE.Controllers.EditChart.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı.", + "SSE.Controllers.EditChart.textAuto": "Otomatik", + "SSE.Controllers.EditChart.textBetweenTickMarks": "Tik İşaretleri Arasında", + "SSE.Controllers.EditChart.textBillions": "Milyar", + "SSE.Controllers.EditChart.textBottom": "Alt", + "SSE.Controllers.EditChart.textCenter": "Orta", + "SSE.Controllers.EditChart.textCross": "Çarpı", + "SSE.Controllers.EditChart.textCustom": "Özel", + "SSE.Controllers.EditChart.textFit": "Genişliğe Sığdır", + "SSE.Controllers.EditChart.textFixed": "Sabit", + "SSE.Controllers.EditChart.textHigh": "Yüksek", + "SSE.Controllers.EditChart.textHorizontal": "Yatay", + "SSE.Controllers.EditChart.textHundredMil": "100 000 000", + "SSE.Controllers.EditChart.textHundreds": "Yüzler", + "SSE.Controllers.EditChart.textHundredThousands": "100 000", + "SSE.Controllers.EditChart.textIn": "içinde", + "SSE.Controllers.EditChart.textInnerBottom": "İç Alt", + "SSE.Controllers.EditChart.textInnerTop": "İç Üst", + "SSE.Controllers.EditChart.textLeft": "Sol", + "SSE.Controllers.EditChart.textLeftOverlay": "Sol Bindirme", + "SSE.Controllers.EditChart.textLow": "Düşük", + "SSE.Controllers.EditChart.textManual": "Manüel", + "SSE.Controllers.EditChart.textMaxValue": "Maksimum Değer", + "SSE.Controllers.EditChart.textMillions": "Milyon", + "SSE.Controllers.EditChart.textMinValue": "Minimum Değer", + "SSE.Controllers.EditChart.textNextToAxis": "Eksen yanına", + "SSE.Controllers.EditChart.textNone": "Hiçbiri", + "SSE.Controllers.EditChart.textNoOverlay": "Bindirme yok", + "SSE.Controllers.EditChart.textOnTickMarks": "Tik İşaretlerinde", + "SSE.Controllers.EditChart.textOut": "Dışarı", + "SSE.Controllers.EditChart.textOuterTop": "Dış Üst", + "SSE.Controllers.EditChart.textOverlay": "Bindirme", + "SSE.Controllers.EditChart.textRight": "Sağ", + "SSE.Controllers.EditChart.textRightOverlay": "Sağ Bindirme", + "SSE.Controllers.EditChart.textRotated": "Döndürülmüş", + "SSE.Controllers.EditChart.textTenMillions": "10 000 000", + "SSE.Controllers.EditChart.textTenThousands": "10 000", + "SSE.Controllers.EditChart.textThousands": "Binler", + "SSE.Controllers.EditChart.textTop": "Üst", + "SSE.Controllers.EditChart.textTrillions": "Trilyonlar", + "SSE.Controllers.EditChart.textValue": "Değer", + "SSE.Controllers.EditContainer.textCell": "Hücre", + "SSE.Controllers.EditContainer.textChart": "Grafik", + "SSE.Controllers.EditContainer.textHyperlink": "Hiper Link", + "SSE.Controllers.EditContainer.textImage": "Resim", + "SSE.Controllers.EditContainer.textSettings": "Ayarlar", + "SSE.Controllers.EditContainer.textShape": "Şekil", + "SSE.Controllers.EditContainer.textTable": "Tablo", + "SSE.Controllers.EditContainer.textText": "Metin", + "SSE.Controllers.EditHyperlink.textDefault": "Seçili aralık", + "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", + "SSE.Controllers.EditHyperlink.textExternalLink": "Harici Bağlantı", + "SSE.Controllers.EditHyperlink.textInternalLink": "Dahili Veri Aralığı", + "SSE.Controllers.EditHyperlink.textInvalidRange": "Geçersiz hücre aralığı", + "SSE.Controllers.EditHyperlink.txtNotUrl": "Bu alan \"http://www.example.com\" formatında bir URL olmak zorundadır", + "SSE.Controllers.Main.advCSVOptions": "CSV Seçenekleri Belirle", + "SSE.Controllers.Main.advDRMEnterPassword": "Şifrenizi girin:", + "SSE.Controllers.Main.advDRMOptions": "Korumalı Dosya", + "SSE.Controllers.Main.advDRMPassword": "Şifre", + "SSE.Controllers.Main.applyChangesTextText": "Veri yükleniyor...", + "SSE.Controllers.Main.applyChangesTitleText": "Veri Yükleniyor", + "SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", + "SSE.Controllers.Main.criticalErrorExtText": "Belge listesine dönmek için 'TAMAM' tuşuna tıklayın.", + "SSE.Controllers.Main.criticalErrorTitle": "Hata", + "SSE.Controllers.Main.defaultTitleText": "ONLYOFFICE Spreadsheet Editör", + "SSE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.", + "SSE.Controllers.Main.downloadMergeText": "İndiriliyor...", + "SSE.Controllers.Main.downloadMergeTitle": "İndiriliyor", + "SSE.Controllers.Main.downloadTextText": "Belge indiriliyor...", + "SSE.Controllers.Main.downloadTitleText": "Belge indiriliyor", + "SSE.Controllers.Main.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
Lütfen Belge Sunucu yöneticinize başvurun.", + "SSE.Controllers.Main.errorArgsRange": "Girilen formülde hata oluştu.
Yanlış argüman aralığı kullanıldı.", + "SSE.Controllers.Main.errorAutoFilterChange": "İşlem iş tablonuzdaki tablodaki hücreleri kaldırmaya çalıştığından gerçekleştirilemiyor.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Tablonun bir kısmı hareket ettirilemeyeceği için işlem tamamlanamadı.
Başka bir veri aralığı seçerek tüm tabloyu kaydırın ve tekrar deneyin.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "Seçilen hücre aralığı için operasyon tamamlanamadı.
Farklı bir monoton veri aralığı seçin ve tekrar deneyin.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "İşlem yapılamıyor çünkü alanda filtreli hücrelet mevcut.
Lütfen filtreli elemanların gizliliğini kaldırın ve tekrar deneyin.", + "SSE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Belge şu an düzenlenemez.", + "SSE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen bağlantı ayarlarınızı kontrol edin veya yöneticinizle irtibata geçin.
'TAMAM' tuşuna tıkladığınızda belgeyi indirmek isteyip istemediğiniz sorulacaktır.

Belge Sunucusu'na bağlanmak hakkında daha fazla bilgi almak için buraya tıklayın", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
Tek bir aralık seçin ve tekrar deneyin.", + "SSE.Controllers.Main.errorCountArg": "Girilen formülde hata oluştu.
Yanlış argüman sayısı kullanıldı.", + "SSE.Controllers.Main.errorCountArgExceed": "Girilen formülde hata oluştu.
Argüman sayısı aşıldı.", + "SSE.Controllers.Main.errorCreateDefName": "Mevcut ad aralığı düzenlenemiyor ve yenileri şu anda oluşturulamıyor
çünkü bazıları başkaları tarafından düzenleniyor.", + "SSE.Controllers.Main.errorDatabaseConnection": "Harici hata.
Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", + "SSE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", + "SSE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1", + "SSE.Controllers.Main.errorFilePassProtect": "Belge şifre korumalı ve açılamadı.", + "SSE.Controllers.Main.errorFileRequest": "Harici hata.
Dosya istek hatası. Sorun devam ederse lütfen destekle iletişime geçiniz.", + "SSE.Controllers.Main.errorFileVKey": "Harici hata.
Yanlış güvenlik anahtarı. Problem devam ederse lütfen destekle iletişime geçin.", + "SSE.Controllers.Main.errorFillRange": "Seçili hücre aralığı doldurulamıyor.
Birleştirilen tüm hücrelerin aynı boyutta olması gerekir.", + "SSE.Controllers.Main.errorFormulaName": "Girilen formülde hata oluştu.
Yanlış formül ismi kullanıldı.", + "SSE.Controllers.Main.errorFormulaParsing": "Formül öğelerine ayrılırken dahili hata", + "SSE.Controllers.Main.errorFrmlWrongReferences": "Fonksiyon olmayan bir iş tablosuna bağlı.
Lütfen veriyi kontrol edin ve tekrar deneyin.", + "SSE.Controllers.Main.errorInvalidRef": "Seçim için doğru bir ad veya geçerli bir referans girin.", + "SSE.Controllers.Main.errorKeyEncrypt": "Bilinmeyen anahtar tanımlayıcı", + "SSE.Controllers.Main.errorKeyExpire": "Anahtar tanımlayıcının süresi doldu", + "SSE.Controllers.Main.errorLockedAll": "İşlem yapılamıyor çünkü iş tablosu başka bir kullanıcı tarafından kilitlenmiş.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "İş tablosu yeniden adlandırılamıyor çünkü başka bir kullanıcı tarafından yeniden adlandırılıyor", + "SSE.Controllers.Main.errorMailMergeLoadFile": "Yükleme başarısız", + "SSE.Controllers.Main.errorMailMergeSaveFile": "Birleştirme başarısız.", + "SSE.Controllers.Main.errorMoveRange": "Birleştirilmiş hücrenin parçası değiştirilemez", + "SSE.Controllers.Main.errorOpenWarning": "Belgedeki formüllerin birinin uzunluğu
izin verilen karakter sayısını aştı ve kaldırıldı.", + "SSE.Controllers.Main.errorOperandExpected": "Girilen fonksiyon kodu hatalı. Lütfen parantezlerinizi kontrol edin - '(' veya ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "Kopyalama ve yapıştırma alanları eşleşmişyor.
Lütfen aynı boyutta bir alan seçin veya kopyalanmış hücrelere yapıştırmak için satırdaki ilk hücreyi seçin.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Maalesef 1500 sayfadan fazla yazdırmak mevcut program sürümü ile mümkün değildir.
Bu kısıt, önümüzdeki güncellemeler ile kaldırılacaktır.", + "SSE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız oldu", + "SSE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", + "SSE.Controllers.Main.errorSessionAbsolute": "Belge düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", + "SSE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", + "SSE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", + "SSE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı.", + "SSE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış.
Lütfen Belge Sunucu yöneticinize başvurun.", + "SSE.Controllers.Main.errorTokenExpire": "Belge güvenlik belirteci süresi doldu.
Lütfen Belge Sunucusu yöneticinize başvurun.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Harici hata.
Beklenmeyen GUID. Hata devam ederse lütfen destekle iletişime geçiniz.", + "SSE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.", + "SSE.Controllers.Main.errorUserDrop": "Belgeye şu an erişilemiyor.", + "SSE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", + "SSE.Controllers.Main.errorViewerDisconnect": "Bağlantı kesildi. Belgeyi yine de görüntüleyebilirsiniz,
ancak bağlantı geri yüklenene kadar indirme veya yazdırma yapamazsınız.", + "SSE.Controllers.Main.errorWrongBracketsCount": "Girilen formülde hata oluştu.
Yanlış sayıda köşeli parantez kullanıldı.", + "SSE.Controllers.Main.errorWrongOperator": "Girilen formülde hata oluştu. Yanlış operatör kullanıldı.
Lütfen hatayı düzeltin.", + "SSE.Controllers.Main.leavePageText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", + "SSE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", + "SSE.Controllers.Main.loadFontsTitleText": "Veri Yükleniyor", + "SSE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", + "SSE.Controllers.Main.loadFontTitleText": "Veri Yükleniyor", + "SSE.Controllers.Main.loadImagesTextText": "Resimler yükleniyor...", + "SSE.Controllers.Main.loadImagesTitleText": "Resimler yükleniyor", + "SSE.Controllers.Main.loadImageTextText": "Resim yükleniyor...", + "SSE.Controllers.Main.loadImageTitleText": "Resim yükleniyor", + "SSE.Controllers.Main.loadingDocumentTextText": "Belge yükleniyor...", + "SSE.Controllers.Main.loadingDocumentTitleText": "Belge yükleniyor", + "SSE.Controllers.Main.mailMergeLoadFileText": "Veri Kaynağı Yükleniyor...", + "SSE.Controllers.Main.mailMergeLoadFileTitle": "Veri Kaynağı Yükleniyor", + "SSE.Controllers.Main.notcriticalErrorTitle": "Uyarı", + "SSE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", + "SSE.Controllers.Main.openTextText": "Belge açılıyor...", + "SSE.Controllers.Main.openTitleText": "Belge Açılıyor", + "SSE.Controllers.Main.printTextText": "Belge yazdırılıyor...", + "SSE.Controllers.Main.printTitleText": "Belge Yazdırılıyor", + "SSE.Controllers.Main.reloadButtonText": "Sayfayı Yenile", + "SSE.Controllers.Main.requestEditFailedMessageText": "Şu anda bu belge başka birisi tarafından düzenleniyor. Lütfen daha sonra tekrar deneyin.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Erişim reddedildi", + "SSE.Controllers.Main.saveErrorText": "Dosya kaydedilirken bir hata oluştu", + "SSE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor", + "SSE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", + "SSE.Controllers.Main.saveTextText": "Belge kaydediliyor...", + "SSE.Controllers.Main.saveTitleText": "Belge Kaydediliyor", + "SSE.Controllers.Main.sendMergeText": "Birleştirme Gönderiliyor...", + "SSE.Controllers.Main.sendMergeTitle": "Birleştirme Gönderiliyor", + "SSE.Controllers.Main.textAnonymous": "Anonim", + "SSE.Controllers.Main.textBack": "Geri", + "SSE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", + "SSE.Controllers.Main.textCancel": "İptal", + "SSE.Controllers.Main.textClose": "Kapat", + "SSE.Controllers.Main.textContactUs": "Satış departmanı ile iletişime geçin", + "SSE.Controllers.Main.textDone": "Bitti", + "SSE.Controllers.Main.textLoadingDocument": "Belge yükleniyor", + "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", + "SSE.Controllers.Main.textOK": "TAMAM", + "SSE.Controllers.Main.textPassword": "Şifre", + "SSE.Controllers.Main.textPreloader": "Yükleniyor...", + "SSE.Controllers.Main.textShape": "Şekil", + "SSE.Controllers.Main.textStrict": "Katı mod", + "SSE.Controllers.Main.textTryUndoRedo": "Geri al/İleri al fonksiyonları hızlı birlikte çalışma modunda devre dışı kalır.
'Katı mod' tuşuna tıklayarak Katı birlikte düzenleme moduna geçebilir ve diğer kullanıcıların müdehalesi olmadan, yalnızca siz belgeyi kaydettikten sonra değişiklik yapılmasını sağlayın. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", + "SSE.Controllers.Main.textUsername": "Kullanıcı adı", + "SSE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", + "SSE.Controllers.Main.titleServerVersion": "Editör güncellendi", + "SSE.Controllers.Main.titleUpdateVersion": "Versiyon değiştirildi", + "SSE.Controllers.Main.txtAccent": "Aksan", + "SSE.Controllers.Main.txtArt": "Metni buraya giriniz", + "SSE.Controllers.Main.txtBasicShapes": "Temel Şekiller", + "SSE.Controllers.Main.txtButtons": "Maddeler", + "SSE.Controllers.Main.txtCallouts": "Belirtme Çizgileri", + "SSE.Controllers.Main.txtCharts": "Grafikler", + "SSE.Controllers.Main.txtDelimiter": "Sınırlayıcı", + "SSE.Controllers.Main.txtDiagramTitle": "Grafik başlığı", + "SSE.Controllers.Main.txtEditingMode": "Düzenleme modunu belirle...", + "SSE.Controllers.Main.txtEncoding": "Kodlama", + "SSE.Controllers.Main.txtErrorLoadHistory": "Geçmiş yüklemesi başarısız", + "SSE.Controllers.Main.txtFiguredArrows": "Şekilli Oklar", + "SSE.Controllers.Main.txtLines": "Satırlar", + "SSE.Controllers.Main.txtMath": "Matematik", + "SSE.Controllers.Main.txtRectangles": "Dikdörtgenler", + "SSE.Controllers.Main.txtSeries": "Seriler", + "SSE.Controllers.Main.txtSpace": "Boşluk", + "SSE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", + "SSE.Controllers.Main.txtStyle_Bad": "Kötü", + "SSE.Controllers.Main.txtStyle_Calculation": "Hesaplama", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Hücreyi İşaretle", + "SSE.Controllers.Main.txtStyle_Comma": "Virgül", + "SSE.Controllers.Main.txtStyle_Currency": "Para Birimi", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Açıklayıcı Metin", + "SSE.Controllers.Main.txtStyle_Good": "İyi", + "SSE.Controllers.Main.txtStyle_Heading_1": "Başlık 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Başlık 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Başlık 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Başlık 4", + "SSE.Controllers.Main.txtStyle_Input": "Girdi", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Bağlı Hücre", + "SSE.Controllers.Main.txtStyle_Neutral": "Nötr", + "SSE.Controllers.Main.txtStyle_Normal": "Normal", + "SSE.Controllers.Main.txtStyle_Note": "Not", + "SSE.Controllers.Main.txtStyle_Output": "Çıktı", + "SSE.Controllers.Main.txtStyle_Percent": "Yüzde", + "SSE.Controllers.Main.txtStyle_Title": "Başlık", + "SSE.Controllers.Main.txtStyle_Total": "Toplam", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Uyarı Metni", + "SSE.Controllers.Main.txtTab": "Sekme", + "SSE.Controllers.Main.txtXAxis": "X Ekseni", + "SSE.Controllers.Main.txtYAxis": "Y Ekseni", + "SSE.Controllers.Main.unknownErrorText": "Bilinmeyen hata.", + "SSE.Controllers.Main.unsupportedBrowserErrorText ": "Tarayıcınız desteklenmiyor.", + "SSE.Controllers.Main.uploadImageExtMessage": "Bilinmeyen resim formatı.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "Resim yüklenmedi.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Maksimum resim boyutu aşıldı.", + "SSE.Controllers.Main.uploadImageTextText": "Resim yükleniyor...", + "SSE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", + "SSE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", + "SSE.Controllers.Main.warnNoLicense": "ONLYOFFICE'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, belge sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı).
Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.", + "SSE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", + "SSE.Controllers.Search.textNoTextFound": "Metin bulunamadı", + "SSE.Controllers.Search.textReplaceAll": "Tümünü Değiştir", + "SSE.Controllers.Settings.notcriticalErrorTitle": "Uyarı", + "SSE.Controllers.Settings.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.
Devam etmek istediğinizden emin misiniz?", + "SSE.Controllers.Statusbar.errorLastSheet": "Not defterinde en az bir görünür çalışma tablosu olmalıdır.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Çalışma kağıdı silinemiyor.", + "SSE.Controllers.Statusbar.menuDelete": "Sil", + "SSE.Controllers.Statusbar.menuDuplicate": "Çoğalt", + "SSE.Controllers.Statusbar.menuHide": "Gizle", + "SSE.Controllers.Statusbar.menuUnhide": "Gizlemeyi kaldır", + "SSE.Controllers.Statusbar.strSheet": "Tablo", + "SSE.Controllers.Statusbar.textExternalLink": "Harici Bağlantı", + "SSE.Controllers.Statusbar.warnDeleteSheet": "İş tablosunda veri olabilir. İşleme devam etmek istiyor musunuz?", + "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", + "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Uygulamadan çıktınız", + "SSE.Controllers.Toolbar.leaveButtonText": "Bu Sayfadan Ayrıl", + "SSE.Controllers.Toolbar.stayButtonText": "Bu Sayfada Kal", + "SSE.Views.AddFunction.sCatDateAndTime": "Tarih ve saat", + "SSE.Views.AddFunction.sCatEngineering": "Mühendislik", + "SSE.Views.AddFunction.sCatFinancial": "Finansal", + "SSE.Views.AddFunction.sCatInformation": "Bilgi", + "SSE.Views.AddFunction.sCatLogical": "Mantıklı", + "SSE.Views.AddFunction.sCatLookupAndReference": "Lookup ve Referans", + "SSE.Views.AddFunction.sCatMathematic": "Matematik ve trigonometri", + "SSE.Views.AddFunction.sCatStatistical": "İstatistiksel", + "SSE.Views.AddFunction.sCatTextAndData": "Metin ve veri", + "SSE.Views.AddFunction.textBack": "Geri", + "SSE.Views.AddFunction.textGroups": "Kategoriler", + "SSE.Views.AddLink.textAddLink": "Link Ekle", + "SSE.Views.AddLink.textAddress": "Adres", + "SSE.Views.AddLink.textDisplay": "Görünüm", + "SSE.Views.AddLink.textExternalLink": "Harici Bağlantı", + "SSE.Views.AddLink.textInsert": "Ekle", + "SSE.Views.AddLink.textInternalLink": "Dahili Veri Aralığı", + "SSE.Views.AddLink.textLink": "Link", + "SSE.Views.AddLink.textLinkSettings": "Link Ayarları", + "SSE.Views.AddLink.textLinkType": "Link Tipi", + "SSE.Views.AddLink.textRange": "Aralık", + "SSE.Views.AddLink.textRequired": "Gerekli", + "SSE.Views.AddLink.textSheet": "Tablo", + "SSE.Views.AddLink.textTip": "Ekran İpucu", + "SSE.Views.AddOther.textAddress": "Adres", + "SSE.Views.AddOther.textBack": "Geri", + "SSE.Views.AddOther.textFilter": "Filtre", + "SSE.Views.AddOther.textFromLibrary": "Kütüphane'den Resim", + "SSE.Views.AddOther.textFromURL": "URL'den resim", + "SSE.Views.AddOther.textImageURL": "Resim URL'si", + "SSE.Views.AddOther.textInsert": "Ekle", + "SSE.Views.AddOther.textInsertImage": "Resim Ekle", + "SSE.Views.AddOther.textLink": "Link", + "SSE.Views.AddOther.textSort": "Sırala ve Filtrele", + "SSE.Views.EditCell.textAccounting": "Muhasebe", + "SSE.Views.EditCell.textAlignBottom": "Alta Hizala", + "SSE.Views.EditCell.textAlignCenter": "Ortaya Hizala", + "SSE.Views.EditCell.textAlignLeft": "Sola Hizala", + "SSE.Views.EditCell.textAlignMiddle": "Ortaya hizala", + "SSE.Views.EditCell.textAlignRight": "Sağa Hizala", + "SSE.Views.EditCell.textAlignTop": "Üste Hizala", + "SSE.Views.EditCell.textAllBorders": "Tüm Sınırlar", + "SSE.Views.EditCell.textBack": "Geri", + "SSE.Views.EditCell.textBorderStyle": "Sınır Stili", + "SSE.Views.EditCell.textBottomBorder": "Alt Sınır", + "SSE.Views.EditCell.textCellStyle": "Hücre Tipleri", + "SSE.Views.EditCell.textColor": "Renk", + "SSE.Views.EditCell.textCurrency": "Para Birimi", + "SSE.Views.EditCell.textDate": "Tarih", + "SSE.Views.EditCell.textDiagDownBorder": "Diyagonal Aşağı Sınır", + "SSE.Views.EditCell.textDiagUpBorder": "Diyagonal Yukarı Sınır", + "SSE.Views.EditCell.textDollar": "Dolar", + "SSE.Views.EditCell.textEuro": "Avro", + "SSE.Views.EditCell.textFillColor": "Doldur Rengi", + "SSE.Views.EditCell.textFonts": "Yazı Tipleri", + "SSE.Views.EditCell.textFormat": "Format", + "SSE.Views.EditCell.textGeneral": "Genel", + "SSE.Views.EditCell.textInBorders": "İç Sınırlar", + "SSE.Views.EditCell.textInHorBorder": "İç Yatay Sınır", + "SSE.Views.EditCell.textInteger": "Tamsayı", + "SSE.Views.EditCell.textInVertBorder": "İç dikey Sınır", + "SSE.Views.EditCell.textJustified": "İki yana yaslı", + "SSE.Views.EditCell.textLeftBorder": "Sol Sınır", + "SSE.Views.EditCell.textMedium": "Orta", + "SSE.Views.EditCell.textNoBorder": "Sınırsız", + "SSE.Views.EditCell.textNumber": "Sayı", + "SSE.Views.EditCell.textPercentage": "Yüzde", + "SSE.Views.EditCell.textPound": "Pound", + "SSE.Views.EditCell.textRightBorder": "Sağ Sınır", + "SSE.Views.EditCell.textRouble": "Ruble", + "SSE.Views.EditCell.textScientific": "Bilimsel", + "SSE.Views.EditCell.textSize": "Boyut", + "SSE.Views.EditCell.textText": "Metin", + "SSE.Views.EditCell.textTextColor": "Metin Rengi", + "SSE.Views.EditCell.textTextFormat": "Metin formatı", + "SSE.Views.EditCell.textThick": "Katı", + "SSE.Views.EditCell.textThin": "İnce", + "SSE.Views.EditCell.textTime": "Saat", + "SSE.Views.EditCell.textTopBorder": "Üst Sınır", + "SSE.Views.EditCell.textWrapText": "Metni Kaydır", + "SSE.Views.EditCell.textYen": "Yen", + "SSE.Views.EditChart.textAuto": "Otomatik", + "SSE.Views.EditChart.textAxisCrosses": "Eksen Kesişmeleri", + "SSE.Views.EditChart.textAxisOptions": "Eksen Seçenekleri", + "SSE.Views.EditChart.textAxisPosition": "Eksen Pozisyonu", + "SSE.Views.EditChart.textAxisTitle": "Eksen Başlığı", + "SSE.Views.EditChart.textBack": "Geri", + "SSE.Views.EditChart.textBackward": "Geri Taşı", + "SSE.Views.EditChart.textBorder": "Sınır", + "SSE.Views.EditChart.textBottom": "Alt", + "SSE.Views.EditChart.textChart": "Grafik", + "SSE.Views.EditChart.textChartTitle": "Grafik başlığı", + "SSE.Views.EditChart.textColor": "Renk", + "SSE.Views.EditChart.textCrossesValue": "Çarpma Değeri", + "SSE.Views.EditChart.textDataLabels": "Veri Etiketleri", + "SSE.Views.EditChart.textDesign": "Tasarım", + "SSE.Views.EditChart.textDisplayUnits": "Görünen Birimler", + "SSE.Views.EditChart.textFill": "Doldur", + "SSE.Views.EditChart.textForward": "İleri Taşı", + "SSE.Views.EditChart.textHorAxis": "Yatay Eksen", + "SSE.Views.EditChart.textHorizontal": "Yatay", + "SSE.Views.EditChart.textLabelOptions": "Etiket Seçenekleri", + "SSE.Views.EditChart.textLabelPos": "Etiket Pozisyonu", + "SSE.Views.EditChart.textLayout": "Tasarım", + "SSE.Views.EditChart.textLeft": "Sol", + "SSE.Views.EditChart.textLeftOverlay": "Sol Bindirme", + "SSE.Views.EditChart.textLegend": "Gösterge", + "SSE.Views.EditChart.textMajor": "Majör", + "SSE.Views.EditChart.textMajorMinor": "Majör ve Minör", + "SSE.Views.EditChart.textMajorType": "Majör Tipi", + "SSE.Views.EditChart.textMaxValue": "Maksimum Değer", + "SSE.Views.EditChart.textMinor": "Minör", + "SSE.Views.EditChart.textMinorType": "Minör Tipi", + "SSE.Views.EditChart.textMinValue": "Minimum Değer", + "SSE.Views.EditChart.textNone": "Hiçbiri", + "SSE.Views.EditChart.textNoOverlay": "Bindirme yok", + "SSE.Views.EditChart.textOverlay": "Bindirme", + "SSE.Views.EditChart.textRemoveChart": "Grafiği Kaldır", + "SSE.Views.EditChart.textReorder": "Yeniden Sırala", + "SSE.Views.EditChart.textRight": "Sağ", + "SSE.Views.EditChart.textRightOverlay": "Sağ Bindirme", + "SSE.Views.EditChart.textRotated": "Döndürülmüş", + "SSE.Views.EditChart.textSize": "Boyut", + "SSE.Views.EditChart.textStyle": "Stil", + "SSE.Views.EditChart.textTickOptions": "Tik Seçenekleri", + "SSE.Views.EditChart.textToBackground": "Arka Plana gönder", + "SSE.Views.EditChart.textToForeground": "Ön Plana Getir", + "SSE.Views.EditChart.textTop": "Üst", + "SSE.Views.EditChart.textType": "Tip", + "SSE.Views.EditChart.textValReverseOrder": "Ters Sıralanmış Değerler", + "SSE.Views.EditChart.textVerAxis": "Dikey Eksen", + "SSE.Views.EditChart.textVertical": "Dikey", + "SSE.Views.EditHyperlink.textBack": "Geri", + "SSE.Views.EditHyperlink.textDisplay": "Görünüm", + "SSE.Views.EditHyperlink.textEditLink": "Link Düzenle", + "SSE.Views.EditHyperlink.textExternalLink": "Harici Bağlantı", + "SSE.Views.EditHyperlink.textInternalLink": "Dahili Veri Aralığı", + "SSE.Views.EditHyperlink.textLink": "Link", + "SSE.Views.EditHyperlink.textLinkType": "Link Tipi", + "SSE.Views.EditHyperlink.textRange": "Aralık", + "SSE.Views.EditHyperlink.textRemoveLink": "Linki Kaldır", + "SSE.Views.EditHyperlink.textScreenTip": "Ekran İpucu", + "SSE.Views.EditHyperlink.textSheet": "Tablo", + "SSE.Views.EditImage.textAddress": "Adres", + "SSE.Views.EditImage.textBack": "Geri", + "SSE.Views.EditImage.textBackward": "Geri Taşı", + "SSE.Views.EditImage.textDefault": "Varsayılan Boyut", + "SSE.Views.EditImage.textForward": "İleri Taşı", + "SSE.Views.EditImage.textFromLibrary": "Kütüphane'den Resim", + "SSE.Views.EditImage.textFromURL": "URL'den resim", + "SSE.Views.EditImage.textImageURL": "Resim URL'si", + "SSE.Views.EditImage.textLinkSettings": "Link Ayarları", + "SSE.Views.EditImage.textRemove": "Resmi Kaldır", + "SSE.Views.EditImage.textReorder": "Yeniden Sırala", + "SSE.Views.EditImage.textReplace": "Değiştir", + "SSE.Views.EditImage.textReplaceImg": "Resmi Değiştir", + "SSE.Views.EditImage.textToBackground": "Arka Plana gönder", + "SSE.Views.EditImage.textToForeground": "Ön Plana Getir", + "SSE.Views.EditShape.textBack": "Geri", + "SSE.Views.EditShape.textBackward": "Geri Taşı", + "SSE.Views.EditShape.textBorder": "Sınır", + "SSE.Views.EditShape.textColor": "Renk", + "SSE.Views.EditShape.textEffects": "Efektler", + "SSE.Views.EditShape.textFill": "Doldur", + "SSE.Views.EditShape.textForward": "İleri Taşı", + "SSE.Views.EditShape.textOpacity": "Opasite", + "SSE.Views.EditShape.textRemoveShape": "Şekli Kaldır", + "SSE.Views.EditShape.textReorder": "Yeniden Sırala", + "SSE.Views.EditShape.textReplace": "Değiştir", + "SSE.Views.EditShape.textSize": "Boyut", + "SSE.Views.EditShape.textStyle": "Stil", + "SSE.Views.EditShape.textToBackground": "Arka Plana gönder", + "SSE.Views.EditShape.textToForeground": "Ön Plana Getir", + "SSE.Views.EditText.textBack": "Geri", + "SSE.Views.EditText.textFillColor": "Doldur Rengi", + "SSE.Views.EditText.textFonts": "Yazı Tipleri", + "SSE.Views.EditText.textSize": "Boyut", + "SSE.Views.EditText.textTextColor": "Metin Rengi", + "SSE.Views.Search.textDone": "Bitti", + "SSE.Views.Search.textFind": "Bul", + "SSE.Views.Search.textFindAndReplace": "Bul ve Değiştir", + "SSE.Views.Search.textMatchCase": "Büyük Küçük Harfe Duyarlı", + "SSE.Views.Search.textMatchCell": "Hücre Eşleştir", + "SSE.Views.Search.textReplace": "Değiştir", + "SSE.Views.Search.textSearch": "Ara", + "SSE.Views.Search.textSearchIn": "İçinde Ara", + "SSE.Views.Search.textSheet": "Tablo", + "SSE.Views.Search.textWorkbook": "İş Tablosu", + "SSE.Views.Settings.textAbout": "Hakkında", + "SSE.Views.Settings.textAddress": "adres", + "SSE.Views.Settings.textAuthor": "Yazar", + "SSE.Views.Settings.textBack": "Geri", + "SSE.Views.Settings.textCreateDate": "Oluşturulma tarihi", + "SSE.Views.Settings.textDocInfo": "İş Tablosu Bilgisi", + "SSE.Views.Settings.textDocTitle": "Spreadsheet Başlığı", + "SSE.Views.Settings.textDone": "Bitti", + "SSE.Views.Settings.textDownload": "İndir", + "SSE.Views.Settings.textDownloadAs": "Farklı Kaydet...", + "SSE.Views.Settings.textEditDoc": "Belge Düzenle", + "SSE.Views.Settings.textEmail": "e-posta", + "SSE.Views.Settings.textFind": "Bul", + "SSE.Views.Settings.textFindAndReplace": "Bul ve Değiştir", + "SSE.Views.Settings.textHelp": "Yardım", + "SSE.Views.Settings.textLoading": "Yükleniyor...", + "SSE.Views.Settings.textPoweredBy": "Sunucu", + "SSE.Views.Settings.textSettings": "Ayarlar", + "SSE.Views.Settings.textTel": "telefon", + "SSE.Views.Settings.textVersion": "Versiyon", + "SSE.Views.Settings.unknownText": "Bilinmeyen", + "SSE.Views.Toolbar.textBack": "Geri" +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 7f2927db4..d805c2463 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -1,7 +1,7 @@ { "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", "Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми", - "Common.Utils.Metric.txtCm": "см\n", + "Common.Utils.Metric.txtCm": "см", "Common.Utils.Metric.txtPt": "Пт", "SSE.Controllers.AddChart.txtDiagramTitle": "Назва діграми", "SSE.Controllers.AddChart.txtSeries": "Серії", @@ -192,7 +192,7 @@ "SSE.Controllers.Main.textCancel": "Скасувати", "SSE.Controllers.Main.textClose": "Закрити", "SSE.Controllers.Main.textContactUs": "Зв'язатися з відділом продажів", - "SSE.Controllers.Main.textDone": "Готово\n", + "SSE.Controllers.Main.textDone": "Готово", "SSE.Controllers.Main.textLoadingDocument": "Завантаження документа", "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", "SSE.Controllers.Main.textOK": "OК", @@ -452,7 +452,7 @@ "SSE.Views.EditText.textFonts": "Шрифти", "SSE.Views.EditText.textSize": "Розмір", "SSE.Views.EditText.textTextColor": "Колір тексту", - "SSE.Views.Search.textDone": "Готово\n", + "SSE.Views.Search.textDone": "Готово", "SSE.Views.Search.textFind": "Знайти", "SSE.Views.Search.textFindAndReplace": "Знайти та перемістити", "SSE.Views.Search.textMatchCase": "Додати обставини", @@ -469,16 +469,16 @@ "SSE.Views.Settings.textCreateDate": "Дата створення", "SSE.Views.Settings.textDocInfo": "Інформація про електронну таблицю", "SSE.Views.Settings.textDocTitle": "Назва електронної таблиці", - "SSE.Views.Settings.textDone": "Готово\n", + "SSE.Views.Settings.textDone": "Готово", "SSE.Views.Settings.textDownload": "Скачати", "SSE.Views.Settings.textDownloadAs": "Завантажити як...", "SSE.Views.Settings.textEditDoc": "Редагувати документ", - "SSE.Views.Settings.textEmail": "Електронна пошта\n", + "SSE.Views.Settings.textEmail": "Електронна пошта", "SSE.Views.Settings.textFind": "Знайти", "SSE.Views.Settings.textFindAndReplace": "Знайти та перемістити", "SSE.Views.Settings.textHelp": "Допомога", "SSE.Views.Settings.textLoading": "Завантаження...", - "SSE.Views.Settings.textPoweredBy": "Під керуванням\n", + "SSE.Views.Settings.textPoweredBy": "Під керуванням", "SSE.Views.Settings.textSettings": "Налаштування", "SSE.Views.Settings.textTel": "Телефон", "SSE.Views.Settings.textVersion": "Версія", diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 268ee194d..69df0f37c 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -110,7 +110,7 @@ "SSE.Controllers.Main.errorAccessDeny": "您正在尝试执行您没有权限的操作。
请联系您的文档服务器管理员.", "SSE.Controllers.Main.errorArgsRange": "一个错误的输入公式。< br >使用不正确的参数范围。", "SSE.Controllers.Main.errorAutoFilterChange": "不允许操作,因为它正在尝试在工作表上的表格中移动单元格。", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "无法对所选单元格进行操作,因为您无法移动表格的一部分。
选择其他数据范围,以便整个表格被移动并重试。\n", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "无法对所选单元格进行操作,因为您无法移动表格的一部分。
选择其他数据范围,以便整个表格被移动并重试。", "SSE.Controllers.Main.errorAutoFilterDataRange": "所选单元格区域无法进行操作。
选择与现有单元格不同的统一数据范围,然后重试。", "SSE.Controllers.Main.errorAutoFilterHiddenRange": "无法执行操作,因为该区域包含已过滤的单元格。
请取消隐藏已过滤的元素,然后重试。", "SSE.Controllers.Main.errorBadImageUrl": "图片地址不正确", @@ -124,21 +124,21 @@ "SSE.Controllers.Main.errorDataRange": "数据范围不正确", "SSE.Controllers.Main.errorDefaultMessage": "错误代码:%1", "SSE.Controllers.Main.errorFilePassProtect": "该文档受密码保护,无法打开。", - "SSE.Controllers.Main.errorFileRequest": "外部错误。
文件请求错误。如果错误仍然存​​在,请与支持部门联系。\n", + "SSE.Controllers.Main.errorFileRequest": "外部错误。
文件请求错误。如果错误仍然存​​在,请与支持部门联系。", "SSE.Controllers.Main.errorFileVKey": "外部错误。
安全密钥不正确。如果错误仍然存​​在,请与支持部门联系。", "SSE.Controllers.Main.errorFillRange": "无法填充所选范围的单元格。
所有合并的单元格的大小必须相同。", "SSE.Controllers.Main.errorFormulaName": "一个错误的输入公式。< br >正确使用公式名称。", "SSE.Controllers.Main.errorFormulaParsing": "解析公式时出现内部错误。", - "SSE.Controllers.Main.errorFrmlWrongReferences": "该功能是指不存在的工作表。
请检查数据,然后重试。\n", + "SSE.Controllers.Main.errorFrmlWrongReferences": "该功能是指不存在的工作表。
请检查数据,然后重试。", "SSE.Controllers.Main.errorInvalidRef": "输入选择的正确名称或有效参考。", "SSE.Controllers.Main.errorKeyEncrypt": "未知密钥描述", "SSE.Controllers.Main.errorKeyExpire": "密钥过期", - "SSE.Controllers.Main.errorLockedAll": "由于工作表被其他用户锁定,因此无法进行操作。\n", + "SSE.Controllers.Main.errorLockedAll": "由于工作表被其他用户锁定,因此无法进行操作。", "SSE.Controllers.Main.errorLockedWorksheetRename": "此时由于其他用户重命名该表单,因此无法重命名该表", "SSE.Controllers.Main.errorMailMergeLoadFile": "加载失败", "SSE.Controllers.Main.errorMailMergeSaveFile": "合并失败", "SSE.Controllers.Main.errorMoveRange": "不能改变合并单元的一部分", - "SSE.Controllers.Main.errorOpenWarning": "文件中的一个公式的长度超过了
允许的字符数,并被删除。\n", + "SSE.Controllers.Main.errorOpenWarning": "文件中的一个公式的长度超过了
允许的字符数,并被删除。", "SSE.Controllers.Main.errorOperandExpected": "输入的函数语法不正确。请检查你是否缺少一个括号 - '('或')'。", "SSE.Controllers.Main.errorPasteMaxRange": "复制和粘贴区域不匹配。
请选择相同尺寸的区域,或单击一行中的第一个单元格以粘贴复制的单元格。", "SSE.Controllers.Main.errorPrintMaxPagesCount": "不幸的是,不能在当前的程序版本中一次打印超过1500页。
这个限制将在即将发布的版本中被删除。", @@ -205,6 +205,7 @@ "SSE.Controllers.Main.titleLicenseExp": "许可证过期", "SSE.Controllers.Main.titleServerVersion": "编辑器已更新", "SSE.Controllers.Main.titleUpdateVersion": "版本已变化", + "SSE.Controllers.Main.txtAccent": "强调", "SSE.Controllers.Main.txtArt": "你的文本在此", "SSE.Controllers.Main.txtBasicShapes": "基本形状", "SSE.Controllers.Main.txtButtons": "按钮", @@ -279,7 +280,7 @@ "SSE.Views.AddFunction.sCatInformation": "信息", "SSE.Views.AddFunction.sCatLogical": "合乎逻辑", "SSE.Views.AddFunction.sCatLookupAndReference": "查找和参考", - "SSE.Views.AddFunction.sCatMathematic": "数学和三角学\n", + "SSE.Views.AddFunction.sCatMathematic": "数学和三角学", "SSE.Views.AddFunction.sCatStatistical": "统计", "SSE.Views.AddFunction.sCatTextAndData": "文字和数据", "SSE.Views.AddFunction.textBack": "返回", From ce409130236199a7c27a5d3fb3c383edbb76a205 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Wed, 20 Sep 2017 11:31:59 +0300 Subject: [PATCH 11/20] Update helps. --- .../main/resources/help/en/Contents.json | 4 +- .../help/en/HelpfulHints/AdvancedSettings.htm | 4 +- .../en/HelpfulHints/CollaborativeEditing.htm | 15 +- .../en/HelpfulHints/KeyboardShortcuts.htm | 12 +- .../help/en/HelpfulHints/Navigation.htm | 25 +-- .../resources/help/en/HelpfulHints/Review.htm | 39 +++- .../help/en/HelpfulHints/SpellChecking.htm | 28 +-- .../en/UsageInstructions/AddHyperlinks.htm | 5 +- .../UsageInstructions/AlignArrangeObjects.htm | 44 ++++ .../help/en/UsageInstructions/AlignText.htm | 7 +- .../en/UsageInstructions/BackgroundColor.htm | 6 +- .../UsageInstructions/ChangeColorScheme.htm | 4 +- .../UsageInstructions/ChangeWrappingStyle.htm | 67 +++++++ .../UsageInstructions/CopyClearFormatting.htm | 8 +- .../UsageInstructions/CopyPasteUndoRedo.htm | 4 +- .../help/en/UsageInstructions/CreateLists.htm | 3 +- .../en/UsageInstructions/DecorationStyles.htm | 2 +- .../UsageInstructions/FontTypeSizeColor.htm | 20 +- .../UsageInstructions/FormattingPresets.htm | 2 +- .../en/UsageInstructions/InsertAutoshapes.htm | 17 +- .../en/UsageInstructions/InsertCharts.htm | 19 +- .../en/UsageInstructions/InsertDropCap.htm | 9 +- .../en/UsageInstructions/InsertEquation.htm | 11 +- .../en/UsageInstructions/InsertFootnotes.htm | 11 +- .../InsertHeadersFooters.htm | 3 +- .../en/UsageInstructions/InsertImages.htm | 19 +- .../UsageInstructions/InsertPageNumbers.htm | 5 +- .../en/UsageInstructions/InsertTables.htm | 5 +- .../UsageInstructions/InsertTextObjects.htm | 18 +- .../help/en/UsageInstructions/LineSpacing.htm | 2 +- .../NonprintingCharacters.htm | 8 +- .../en/UsageInstructions/OpenCreateNew.htm | 6 +- .../help/en/UsageInstructions/PageBreaks.htm | 2 +- .../en/UsageInstructions/ParagraphIndents.htm | 2 +- .../UsageInstructions/SavePrintDownload.htm | 6 +- .../en/UsageInstructions/SectionBreaks.htm | 4 +- .../UsageInstructions/SetPageParameters.htm | 16 +- .../en/UsageInstructions/UseMailMerge.htm | 6 +- .../help/en/UsageInstructions/ViewDocInfo.htm | 26 ++- .../help/en/images/access_rights.png | Bin 561 -> 347 bytes .../resources/help/en/images/addfootnote.png | Bin 384 -> 664 bytes .../resources/help/en/images/addhyperlink.png | Bin 239 -> 838 bytes .../help/en/images/align_toptoolbar.png | Bin 0 -> 250 bytes .../help/en/images/alignobjectbottom.png | Bin 0 -> 109 bytes .../help/en/images/alignobjectcenter.png | Bin 0 -> 114 bytes .../help/en/images/alignobjectleft.png | Bin 0 -> 111 bytes .../help/en/images/alignobjectmiddle.png | Bin 0 -> 112 bytes .../help/en/images/alignobjectright.png | Bin 0 -> 112 bytes .../help/en/images/alignobjecttop.png | Bin 0 -> 107 bytes .../resources/help/en/images/bringforward.png | Bin 0 -> 115 bytes .../en/images/bringforward_toptoolbar.png | Bin 0 -> 261 bytes .../resources/help/en/images/bringtofront.png | Bin 0 -> 132 bytes .../resources/help/en/images/collapse.png | Bin 0 -> 271 bytes .../help/en/images/comment_toptoolbar.png | Bin 0 -> 304 bytes .../help/en/images/document_language.png | Bin 501 -> 854 bytes .../main/resources/help/en/images/expand.png | Bin 0 -> 276 bytes .../help/en/images/gotodocuments.png | Bin 0 -> 174 bytes .../main/resources/help/en/images/group.png | Bin 0 -> 123 bytes .../help/en/images/group_toptoolbar.png | Bin 0 -> 261 bytes .../resources/help/en/images/headerfooter.png | Bin 223 -> 125 bytes .../main/resources/help/en/images/image.png | Bin 288 -> 225 bytes .../help/en/images/insert_dropcap_icon.png | Bin 263 -> 232 bytes .../help/en/images/insertautoshape.png | Bin 263 -> 593 bytes .../resources/help/en/images/insertchart.png | Bin 230 -> 218 bytes .../help/en/images/insertcolumns.png | Bin 183 -> 108 bytes .../help/en/images/insertequationicon.png | Bin 306 -> 625 bytes .../help/en/images/inserttextarticon.png | Bin 0 -> 639 bytes .../help/en/images/inserttexticon.png | Bin 251 -> 219 bytes .../resources/help/en/images/orientation.png | Bin 227 -> 334 bytes .../resources/help/en/images/pagebreak1.png | Bin 251 -> 222 bytes .../resources/help/en/images/pagemargins.png | Bin 219 -> 123 bytes .../resources/help/en/images/pagesize.png | Bin 241 -> 233 bytes .../en/images/review_accepttoptoolbar.png | Bin 0 -> 499 bytes .../help/en/images/review_delete.png | Bin 0 -> 133 bytes .../help/en/images/review_displaymode.png | Bin 0 -> 464 bytes .../resources/help/en/images/review_next.png | Bin 315 -> 444 bytes .../help/en/images/review_previous.png | Bin 276 -> 459 bytes .../en/images/review_rejecttoptoolbar.png | Bin 0 -> 562 bytes .../resources/help/en/images/sendbackward.png | Bin 0 -> 116 bytes .../en/images/sendbackward_toptoolbar.png | Bin 0 -> 242 bytes .../resources/help/en/images/sendtoback.png | Bin 0 -> 131 bytes .../help/en/images/spellcheckactivated.png | Bin 338 -> 264 bytes .../en/images/spellchecking_toptoolbar.png | Bin 0 -> 511 bytes .../spellchecking_toptoolbar_activated.png | Bin 0 -> 344 bytes .../main/resources/help/en/images/table.png | Bin 206 -> 118 bytes .../help/en/images/trackchangesstatusbar.png | Bin 0 -> 337 bytes .../help/en/images/trackchangestoptoolbar.png | Bin 0 -> 606 bytes .../main/resources/help/en/images/ungroup.png | Bin 0 -> 135 bytes .../resources/help/en/images/usersnumber.png | Bin 565 -> 391 bytes .../help/en/images/versionhistory.png | Bin 0 -> 3285 bytes .../help/en/images/wrapping_toptoolbar.png | Bin 0 -> 353 bytes .../wrappingstyle_behind_toptoolbar.png | Bin 0 -> 195 bytes .../wrappingstyle_infront_toptoolbar.png | Bin 0 -> 292 bytes .../wrappingstyle_inline_toptoolbar.png | Bin 0 -> 299 bytes .../wrappingstyle_square_toptoolbar.png | Bin 0 -> 302 bytes .../wrappingstyle_through_toptoolbar.png | Bin 0 -> 304 bytes .../images/wrappingstyle_tight_toptoolbar.png | Bin 0 -> 302 bytes .../wrappingstyle_topandbottom_toptoolbar.png | Bin 0 -> 297 bytes .../help/en/HelpfulHints/AdvancedSettings.htm | 3 +- .../en/HelpfulHints/CollaborativeEditing.htm | 8 +- .../en/HelpfulHints/KeyboardShortcuts.htm | 18 +- .../help/en/HelpfulHints/Navigation.htm | 21 +- .../help/en/HelpfulHints/SpellChecking.htm | 28 +-- .../en/UsageInstructions/AddHyperlinks.htm | 5 +- .../UsageInstructions/AlignArrangeObjects.htm | 16 +- .../en/UsageInstructions/ApplyTransitions.htm | 6 +- .../UsageInstructions/CopyClearFormatting.htm | 4 +- .../UsageInstructions/CopyPasteUndoRedo.htm | 4 +- .../help/en/UsageInstructions/CreateLists.htm | 3 +- .../FillObjectsSelectColor.htm | 6 +- .../en/UsageInstructions/InsertAutoshapes.htm | 10 +- .../en/UsageInstructions/InsertCharts.htm | 9 +- .../en/UsageInstructions/InsertEquation.htm | 11 +- .../en/UsageInstructions/InsertImages.htm | 6 +- .../en/UsageInstructions/InsertTables.htm | 7 +- .../help/en/UsageInstructions/InsertText.htm | 51 +++-- .../en/UsageInstructions/ManageSlides.htm | 35 +++- .../en/UsageInstructions/OpenCreateNew.htm | 6 +- .../UsageInstructions/PreviewPresentation.htm | 53 ++++- .../UsageInstructions/SavePrintDownload.htm | 6 +- .../UsageInstructions/SetSlideParameters.htm | 33 ++- .../ViewPresentationInfo.htm | 6 +- .../help/en/images/access_rights.png | Bin 561 -> 332 bytes .../resources/help/en/images/addhyperlink.png | Bin 239 -> 838 bytes .../resources/help/en/images/addslide.png | Bin 280 -> 130 bytes .../help/en/images/alignobjectbottom.png | Bin 162 -> 109 bytes .../help/en/images/alignobjectcenter.png | Bin 156 -> 114 bytes .../help/en/images/alignobjectleft.png | Bin 179 -> 111 bytes .../help/en/images/alignobjectmiddle.png | Bin 166 -> 112 bytes .../help/en/images/alignobjectright.png | Bin 171 -> 112 bytes .../help/en/images/alignobjecttop.png | Bin 161 -> 107 bytes .../resources/help/en/images/bringforward.png | Bin 172 -> 115 bytes .../resources/help/en/images/bringtofront.png | Bin 179 -> 132 bytes .../help/en/images/comment_toptoolbar.png | Bin 0 -> 304 bytes .../help/en/images/distributehorizontally.png | Bin 153 -> 113 bytes .../help/en/images/distributevertically.png | Bin 196 -> 114 bytes .../help/en/images/gotodocuments.png | Bin 0 -> 172 bytes .../main/resources/help/en/images/group.png | Bin 187 -> 123 bytes .../resources/help/en/images/hidden_slide.png | Bin 0 -> 41901 bytes .../main/resources/help/en/images/image.png | Bin 288 -> 225 bytes .../help/en/images/insertautoshape.png | Bin 263 -> 593 bytes .../resources/help/en/images/insertchart.png | Bin 230 -> 218 bytes .../help/en/images/insertequationicon.png | Bin 305 -> 625 bytes .../resources/help/en/images/inserttable.png | Bin 216 -> 118 bytes .../help/en/images/inserttextarticon.png | Bin 0 -> 639 bytes .../help/en/images/inserttexticon.png | Bin 251 -> 219 bytes .../main/resources/help/en/images/pointer.png | Bin 0 -> 279 bytes .../help/en/images/pointer_enabled.png | Bin 0 -> 183 bytes .../help/en/images/pointer_screen.png | Bin 0 -> 994 bytes .../help/en/images/presenter_mode.png | Bin 0 -> 3207 bytes .../resources/help/en/images/preview_mode.png | Bin 0 -> 8538 bytes .../resources/help/en/images/sendbackward.png | Bin 183 -> 116 bytes .../resources/help/en/images/sendtoback.png | Bin 187 -> 131 bytes .../resources/help/en/images/showsettings.png | Bin 0 -> 4818 bytes .../en/images/slidesizesettingswindow.png | Bin 7451 -> 7744 bytes .../help/en/images/spellcheckactivated.png | Bin 338 -> 264 bytes .../en/images/spellchecking_toptoolbar.png | Bin 0 -> 511 bytes .../spellchecking_toptoolbar_activated.png | Bin 0 -> 344 bytes .../main/resources/help/en/images/ungroup.png | Bin 197 -> 135 bytes .../resources/help/en/images/usersnumber.png | Bin 565 -> 369 bytes .../main/resources/help/en/Functions/abs.htm | 2 +- .../resources/help/en/Functions/accrint.htm | 2 +- .../resources/help/en/Functions/accrintm.htm | 2 +- .../main/resources/help/en/Functions/acos.htm | 2 +- .../resources/help/en/Functions/acosh.htm | 2 +- .../main/resources/help/en/Functions/acot.htm | 2 +- .../resources/help/en/Functions/acoth.htm | 2 +- .../resources/help/en/Functions/address.htm | 2 +- .../resources/help/en/Functions/aggregate.htm | 189 ++++++++++++++++++ .../resources/help/en/Functions/amordegrc.htm | 2 +- .../resources/help/en/Functions/amorintm.htm | 2 +- .../resources/help/en/Functions/amorlinc.htm | 2 +- .../main/resources/help/en/Functions/and.htm | 2 +- .../resources/help/en/Functions/arabic.htm | 2 +- .../main/resources/help/en/Functions/asin.htm | 2 +- .../resources/help/en/Functions/asinh.htm | 2 +- .../main/resources/help/en/Functions/atan.htm | 2 +- .../resources/help/en/Functions/atan2.htm | 2 +- .../resources/help/en/Functions/atanh.htm | 2 +- .../resources/help/en/Functions/avedev.htm | 2 +- .../resources/help/en/Functions/average.htm | 2 +- .../resources/help/en/Functions/averagea.htm | 2 +- .../resources/help/en/Functions/averageif.htm | 2 +- .../help/en/Functions/averageifs.htm | 2 +- .../main/resources/help/en/Functions/base.htm | 2 +- .../resources/help/en/Functions/besseli.htm | 35 ++++ .../resources/help/en/Functions/besselj.htm | 35 ++++ .../resources/help/en/Functions/besselk.htm | 35 ++++ .../resources/help/en/Functions/bessely.htm | 35 ++++ .../resources/help/en/Functions/beta-dist.htm | 2 +- .../resources/help/en/Functions/beta-inv.htm | 2 +- .../resources/help/en/Functions/betadist.htm | 2 +- .../resources/help/en/Functions/bin2dec.htm | 2 +- .../resources/help/en/Functions/bin2hex.htm | 2 +- .../resources/help/en/Functions/bin2oct.htm | 2 +- .../help/en/Functions/binom-dist-range.htm | 37 ++++ .../help/en/Functions/binom-dist.htm | 2 +- .../resources/help/en/Functions/binom-inv.htm | 2 +- .../resources/help/en/Functions/binomdist.htm | 2 +- .../resources/help/en/Functions/bitand.htm | 36 ++++ .../resources/help/en/Functions/bitlshift.htm | 36 ++++ .../resources/help/en/Functions/bitor.htm | 36 ++++ .../resources/help/en/Functions/bitrshift.htm | 36 ++++ .../resources/help/en/Functions/bitxor.htm | 36 ++++ .../resources/help/en/Functions/ceiling.htm | 2 +- .../help/en/Functions/ceilingmath.htm | 2 +- .../help/en/Functions/ceilingprecise.htm | 2 +- .../main/resources/help/en/Functions/char.htm | 2 +- .../resources/help/en/Functions/chidist.htm | 2 +- .../resources/help/en/Functions/chiinv.htm | 2 +- .../help/en/Functions/chisq-dist-rt.htm | 2 +- .../help/en/Functions/chisq-dist.htm | 2 +- .../help/en/Functions/chisq-inv-rt.htm | 2 +- .../resources/help/en/Functions/chisq-inv.htm | 2 +- .../help/en/Functions/chisq-test.htm | 35 ++++ .../resources/help/en/Functions/chitest.htm | 35 ++++ .../resources/help/en/Functions/choose.htm | 2 +- .../resources/help/en/Functions/clean.htm | 2 +- .../main/resources/help/en/Functions/code.htm | 2 +- .../resources/help/en/Functions/column.htm | 2 +- .../resources/help/en/Functions/columns.htm | 2 +- .../resources/help/en/Functions/combin.htm | 2 +- .../resources/help/en/Functions/combina.htm | 2 +- .../resources/help/en/Functions/complex.htm | 2 +- .../resources/help/en/Functions/concat.htm | 2 +- .../help/en/Functions/concatenate.htm | 2 +- .../help/en/Functions/confidence-norm.htm | 2 +- .../help/en/Functions/confidence-t.htm | 2 +- .../help/en/Functions/confidence.htm | 2 +- .../resources/help/en/Functions/correl.htm | 2 +- .../main/resources/help/en/Functions/cos.htm | 2 +- .../main/resources/help/en/Functions/cosh.htm | 2 +- .../main/resources/help/en/Functions/cot.htm | 2 +- .../main/resources/help/en/Functions/coth.htm | 2 +- .../resources/help/en/Functions/count.htm | 2 +- .../resources/help/en/Functions/counta.htm | 2 +- .../help/en/Functions/countblank.htm | 2 +- .../resources/help/en/Functions/countif.htm | 2 +- .../resources/help/en/Functions/countifs.htm | 2 +- .../resources/help/en/Functions/coupdaybs.htm | 2 +- .../resources/help/en/Functions/coupdays.htm | 2 +- .../help/en/Functions/coupdaysnc.htm | 2 +- .../resources/help/en/Functions/coupncd.htm | 2 +- .../resources/help/en/Functions/coupnum.htm | 2 +- .../resources/help/en/Functions/couppcd.htm | 2 +- .../resources/help/en/Functions/covar.htm | 2 +- .../help/en/Functions/covariance-p.htm | 33 +++ .../help/en/Functions/covariance-s.htm | 33 +++ .../resources/help/en/Functions/critbinom.htm | 2 +- .../main/resources/help/en/Functions/csc.htm | 2 +- .../main/resources/help/en/Functions/csch.htm | 2 +- .../resources/help/en/Functions/cumipmt.htm | 2 +- .../resources/help/en/Functions/cumprinc.htm | 2 +- .../main/resources/help/en/Functions/date.htm | 2 +- .../resources/help/en/Functions/datedif.htm | 2 +- .../resources/help/en/Functions/datevalue.htm | 2 +- .../resources/help/en/Functions/daverage.htm | 36 ++++ .../main/resources/help/en/Functions/day.htm | 2 +- .../main/resources/help/en/Functions/days.htm | 33 +++ .../resources/help/en/Functions/days360.htm | 2 +- .../main/resources/help/en/Functions/db.htm | 2 +- .../resources/help/en/Functions/dcount.htm | 36 ++++ .../resources/help/en/Functions/dcounta.htm | 36 ++++ .../main/resources/help/en/Functions/ddb.htm | 2 +- .../resources/help/en/Functions/dec2bin.htm | 2 +- .../resources/help/en/Functions/dec2hex.htm | 2 +- .../resources/help/en/Functions/dec2oct.htm | 2 +- .../resources/help/en/Functions/decimal.htm | 2 +- .../resources/help/en/Functions/degrees.htm | 2 +- .../resources/help/en/Functions/delta.htm | 2 +- .../resources/help/en/Functions/devsq.htm | 2 +- .../main/resources/help/en/Functions/dget.htm | 36 ++++ .../main/resources/help/en/Functions/disc.htm | 2 +- .../main/resources/help/en/Functions/dmax.htm | 36 ++++ .../main/resources/help/en/Functions/dmin.htm | 36 ++++ .../resources/help/en/Functions/dollar.htm | 2 +- .../resources/help/en/Functions/dollarde.htm | 2 +- .../resources/help/en/Functions/dollarfr.htm | 2 +- .../resources/help/en/Functions/dproduct.htm | 36 ++++ .../resources/help/en/Functions/dstdev.htm | 36 ++++ .../resources/help/en/Functions/dstdevp.htm | 36 ++++ .../main/resources/help/en/Functions/dsum.htm | 36 ++++ .../resources/help/en/Functions/duration.htm | 2 +- .../main/resources/help/en/Functions/dvar.htm | 36 ++++ .../resources/help/en/Functions/dvarp.htm | 36 ++++ .../help/en/Functions/ecma-ceiling.htm | 35 ++++ .../resources/help/en/Functions/edate.htm | 2 +- .../resources/help/en/Functions/effect.htm | 2 +- .../resources/help/en/Functions/eomonth.htm | 2 +- .../help/en/Functions/erf-precise.htm | 34 ++++ .../main/resources/help/en/Functions/erf.htm | 2 +- .../help/en/Functions/erfc-precise.htm | 32 +++ .../main/resources/help/en/Functions/erfc.htm | 4 +- .../help/en/Functions/error.type.htm | 2 +- .../main/resources/help/en/Functions/even.htm | 2 +- .../resources/help/en/Functions/exact.htm | 2 +- .../main/resources/help/en/Functions/exp.htm | 2 +- .../help/en/Functions/expon-dist.htm | 2 +- .../resources/help/en/Functions/expondist.htm | 2 +- .../resources/help/en/Functions/f-dist-rt.htm | 2 +- .../resources/help/en/Functions/f-dist.htm | 2 +- .../resources/help/en/Functions/f-inv-rt.htm | 2 +- .../resources/help/en/Functions/f-inv.htm | 2 +- .../main/resources/help/en/Functions/fact.htm | 2 +- .../help/en/Functions/factdouble.htm | 2 +- .../resources/help/en/Functions/false.htm | 2 +- .../resources/help/en/Functions/fdist.htm | 2 +- .../main/resources/help/en/Functions/find.htm | 2 +- .../main/resources/help/en/Functions/finv.htm | 2 +- .../resources/help/en/Functions/fisher.htm | 2 +- .../resources/help/en/Functions/fisherinv.htm | 2 +- .../resources/help/en/Functions/fixed.htm | 2 +- .../resources/help/en/Functions/floor.htm | 2 +- .../resources/help/en/Functions/floormath.htm | 2 +- .../help/en/Functions/floorprecise.htm | 2 +- .../help/en/Functions/forecast-linear.htm | 35 ++++ .../resources/help/en/Functions/forecast.htm | 4 +- .../resources/help/en/Functions/frequency.htm | 2 +- .../main/resources/help/en/Functions/fv.htm | 2 +- .../help/en/Functions/fvschedule.htm | 2 +- .../help/en/Functions/gamma-dist.htm | 2 +- .../resources/help/en/Functions/gamma-inv.htm | 2 +- .../resources/help/en/Functions/gamma.htm | 2 +- .../resources/help/en/Functions/gammadist.htm | 2 +- .../resources/help/en/Functions/gammainv.htm | 2 +- .../help/en/Functions/gammaln-precise.htm | 2 +- .../resources/help/en/Functions/gammaln.htm | 2 +- .../resources/help/en/Functions/gauss.htm | 2 +- .../main/resources/help/en/Functions/gcd.htm | 2 +- .../resources/help/en/Functions/geomean.htm | 2 +- .../resources/help/en/Functions/gestep.htm | 2 +- .../resources/help/en/Functions/harmean.htm | 2 +- .../resources/help/en/Functions/hex2bin.htm | 2 +- .../resources/help/en/Functions/hex2dec.htm | 2 +- .../resources/help/en/Functions/hex2oct.htm | 2 +- .../resources/help/en/Functions/hlookup.htm | 2 +- .../main/resources/help/en/Functions/hour.htm | 2 +- .../help/en/Functions/hypgeomdist.htm | 2 +- .../main/resources/help/en/Functions/if.htm | 2 +- .../resources/help/en/Functions/iferror.htm | 2 +- .../main/resources/help/en/Functions/ifna.htm | 2 +- .../resources/help/en/Functions/imabs.htm | 2 +- .../resources/help/en/Functions/imaginary.htm | 2 +- .../help/en/Functions/imargument.htm | 2 +- .../help/en/Functions/imconjugate.htm | 2 +- .../resources/help/en/Functions/imcos.htm | 2 +- .../resources/help/en/Functions/imcosh.htm | 2 +- .../resources/help/en/Functions/imcot.htm | 2 +- .../resources/help/en/Functions/imcsc.htm | 2 +- .../resources/help/en/Functions/imcsch.htm | 2 +- .../resources/help/en/Functions/imdiv.htm | 2 +- .../resources/help/en/Functions/imexp.htm | 2 +- .../main/resources/help/en/Functions/imln.htm | 2 +- .../resources/help/en/Functions/imlog10.htm | 2 +- .../resources/help/en/Functions/imlog2.htm | 2 +- .../resources/help/en/Functions/impower.htm | 2 +- .../resources/help/en/Functions/improduct.htm | 2 +- .../resources/help/en/Functions/imreal.htm | 2 +- .../resources/help/en/Functions/imsec.htm | 2 +- .../resources/help/en/Functions/imsech.htm | 2 +- .../resources/help/en/Functions/imsin.htm | 2 +- .../resources/help/en/Functions/imsinh.htm | 2 +- .../resources/help/en/Functions/imsqrt.htm | 2 +- .../resources/help/en/Functions/imsub.htm | 2 +- .../resources/help/en/Functions/imsum.htm | 2 +- .../resources/help/en/Functions/imtan.htm | 2 +- .../resources/help/en/Functions/index.htm | 2 +- .../resources/help/en/Functions/indirect.htm | 2 +- .../main/resources/help/en/Functions/int.htm | 2 +- .../resources/help/en/Functions/intercept.htm | 2 +- .../resources/help/en/Functions/intrate.htm | 2 +- .../main/resources/help/en/Functions/ipmt.htm | 2 +- .../main/resources/help/en/Functions/irr.htm | 2 +- .../resources/help/en/Functions/isblank.htm | 2 +- .../resources/help/en/Functions/iserr.htm | 2 +- .../resources/help/en/Functions/iserror.htm | 2 +- .../resources/help/en/Functions/iseven.htm | 2 +- .../resources/help/en/Functions/isformula.htm | 32 +++ .../resources/help/en/Functions/islogical.htm | 2 +- .../main/resources/help/en/Functions/isna.htm | 2 +- .../resources/help/en/Functions/isnontext.htm | 2 +- .../resources/help/en/Functions/isnumber.htm | 2 +- .../help/en/Functions/isoceiling.htm | 2 +- .../resources/help/en/Functions/isodd.htm | 2 +- .../help/en/Functions/isoweeknum.htm | 34 ++++ .../resources/help/en/Functions/ispmt.htm | 2 +- .../resources/help/en/Functions/isref.htm | 2 +- .../resources/help/en/Functions/istext.htm | 2 +- .../main/resources/help/en/Functions/kurt.htm | 2 +- .../resources/help/en/Functions/large.htm | 2 +- .../main/resources/help/en/Functions/lcm.htm | 2 +- .../main/resources/help/en/Functions/left.htm | 2 +- .../main/resources/help/en/Functions/len.htm | 2 +- .../main/resources/help/en/Functions/ln.htm | 2 +- .../main/resources/help/en/Functions/log.htm | 2 +- .../resources/help/en/Functions/log10.htm | 2 +- .../resources/help/en/Functions/loginv.htm | 2 +- .../help/en/Functions/lognorm-dist.htm | 2 +- .../help/en/Functions/lognorm-inv.htm | 2 +- .../help/en/Functions/lognormdist.htm | 2 +- .../resources/help/en/Functions/lookup.htm | 2 +- .../resources/help/en/Functions/lower.htm | 2 +- .../resources/help/en/Functions/match.htm | 2 +- .../main/resources/help/en/Functions/max.htm | 2 +- .../main/resources/help/en/Functions/maxa.htm | 2 +- .../resources/help/en/Functions/maxifs.htm | 36 ++++ .../resources/help/en/Functions/mdeterm.htm | 2 +- .../resources/help/en/Functions/mduration.htm | 2 +- .../resources/help/en/Functions/median.htm | 2 +- .../main/resources/help/en/Functions/mid.htm | 2 +- .../main/resources/help/en/Functions/min.htm | 2 +- .../main/resources/help/en/Functions/mina.htm | 2 +- .../resources/help/en/Functions/minifs.htm | 36 ++++ .../resources/help/en/Functions/minute.htm | 2 +- .../resources/help/en/Functions/minverse.htm | 2 +- .../main/resources/help/en/Functions/mirr.htm | 2 +- .../resources/help/en/Functions/mmult.htm | 2 +- .../main/resources/help/en/Functions/mod.htm | 2 +- .../resources/help/en/Functions/mode-mult.htm | 33 +++ .../resources/help/en/Functions/mode-sngl.htm | 33 +++ .../main/resources/help/en/Functions/mode.htm | 2 +- .../resources/help/en/Functions/month.htm | 2 +- .../resources/help/en/Functions/mround.htm | 2 +- .../help/en/Functions/multinomial.htm | 2 +- .../main/resources/help/en/Functions/n.htm | 2 +- .../main/resources/help/en/Functions/na.htm | 2 +- .../help/en/Functions/negbinom-dist.htm | 37 ++++ .../help/en/Functions/negbinomdist.htm | 2 +- .../help/en/Functions/networkdays-intl.htm | 100 +++++++++ .../help/en/Functions/networkdays.htm | 8 +- .../resources/help/en/Functions/nominal.htm | 2 +- .../resources/help/en/Functions/norm-dist.htm | 37 ++++ .../resources/help/en/Functions/norm-inv.htm | 36 ++++ .../help/en/Functions/norm-s-dist.htm | 34 ++++ .../help/en/Functions/norm-s-inv.htm | 32 +++ .../resources/help/en/Functions/normdist.htm | 2 +- .../resources/help/en/Functions/norminv.htm | 2 +- .../resources/help/en/Functions/normsdist.htm | 2 +- .../resources/help/en/Functions/normsinv.htm | 2 +- .../main/resources/help/en/Functions/not.htm | 2 +- .../main/resources/help/en/Functions/now.htm | 2 +- .../main/resources/help/en/Functions/nper.htm | 2 +- .../main/resources/help/en/Functions/npv.htm | 2 +- .../help/en/Functions/numbervalue.htm | 2 +- .../resources/help/en/Functions/oct2bin.htm | 2 +- .../resources/help/en/Functions/oct2dec.htm | 2 +- .../resources/help/en/Functions/oct2hex.htm | 2 +- .../main/resources/help/en/Functions/odd.htm | 2 +- .../resources/help/en/Functions/oddfprice.htm | 2 +- .../resources/help/en/Functions/oddfyield.htm | 2 +- .../resources/help/en/Functions/oddlprice.htm | 2 +- .../resources/help/en/Functions/oddlyield.htm | 2 +- .../resources/help/en/Functions/offset.htm | 2 +- .../main/resources/help/en/Functions/or.htm | 2 +- .../resources/help/en/Functions/pearson.htm | 2 +- .../help/en/Functions/percentile-exc.htm | 2 +- .../help/en/Functions/percentile-inc.htm | 2 +- .../help/en/Functions/percentile.htm | 2 +- .../help/en/Functions/percentrank-exc.htm | 2 +- .../help/en/Functions/percentrank-inc.htm | 2 +- .../help/en/Functions/percentrank.htm | 2 +- .../resources/help/en/Functions/permut.htm | 2 +- .../help/en/Functions/permutationa.htm | 35 ++++ .../main/resources/help/en/Functions/phi.htm | 34 ++++ .../main/resources/help/en/Functions/pi.htm | 2 +- .../main/resources/help/en/Functions/pmt.htm | 2 +- .../help/en/Functions/poisson-dist.htm | 36 ++++ .../resources/help/en/Functions/poisson.htm | 2 +- .../resources/help/en/Functions/power.htm | 2 +- .../main/resources/help/en/Functions/ppmt.htm | 2 +- .../resources/help/en/Functions/price.htm | 2 +- .../resources/help/en/Functions/pricedisc.htm | 2 +- .../resources/help/en/Functions/pricemat.htm | 2 +- .../main/resources/help/en/Functions/prob.htm | 2 +- .../resources/help/en/Functions/product.htm | 2 +- .../resources/help/en/Functions/proper.htm | 2 +- .../main/resources/help/en/Functions/pv.htm | 2 +- .../help/en/Functions/quartile-exc.htm | 52 +++++ .../help/en/Functions/quartile-inc.htm | 61 ++++++ .../resources/help/en/Functions/quartile.htm | 2 +- .../resources/help/en/Functions/quotient.htm | 2 +- .../resources/help/en/Functions/radians.htm | 2 +- .../main/resources/help/en/Functions/rand.htm | 2 +- .../help/en/Functions/randbetween.htm | 2 +- .../resources/help/en/Functions/rank-avg.htm | 2 +- .../resources/help/en/Functions/rank-eq.htm | 2 +- .../main/resources/help/en/Functions/rank.htm | 2 +- .../main/resources/help/en/Functions/rate.htm | 2 +- .../resources/help/en/Functions/received.htm | 2 +- .../resources/help/en/Functions/replace.htm | 2 +- .../main/resources/help/en/Functions/rept.htm | 2 +- .../resources/help/en/Functions/right.htm | 2 +- .../resources/help/en/Functions/roman.htm | 2 +- .../resources/help/en/Functions/round.htm | 2 +- .../resources/help/en/Functions/rounddown.htm | 2 +- .../resources/help/en/Functions/roundup.htm | 2 +- .../main/resources/help/en/Functions/row.htm | 2 +- .../main/resources/help/en/Functions/rows.htm | 2 +- .../main/resources/help/en/Functions/rri.htm | 36 ++++ .../main/resources/help/en/Functions/rsq.htm | 2 +- .../resources/help/en/Functions/search.htm | 2 +- .../main/resources/help/en/Functions/sec.htm | 2 +- .../main/resources/help/en/Functions/sech.htm | 2 +- .../resources/help/en/Functions/second.htm | 2 +- .../resources/help/en/Functions/seriessum.htm | 2 +- .../resources/help/en/Functions/sheet.htm | 32 +++ .../resources/help/en/Functions/sheets.htm | 32 +++ .../main/resources/help/en/Functions/sign.htm | 2 +- .../main/resources/help/en/Functions/sin.htm | 2 +- .../main/resources/help/en/Functions/sinh.htm | 2 +- .../resources/help/en/Functions/skew-p.htm | 33 +++ .../main/resources/help/en/Functions/skew.htm | 2 +- .../main/resources/help/en/Functions/sln.htm | 2 +- .../resources/help/en/Functions/slope.htm | 2 +- .../resources/help/en/Functions/small.htm | 2 +- .../main/resources/help/en/Functions/sqrt.htm | 2 +- .../resources/help/en/Functions/sqrtpi.htm | 2 +- .../help/en/Functions/standardize.htm | 2 +- .../resources/help/en/Functions/stdev-p.htm | 33 +++ .../resources/help/en/Functions/stdev-s.htm | 33 +++ .../resources/help/en/Functions/stdev.htm | 5 +- .../resources/help/en/Functions/stdeva.htm | 4 +- .../resources/help/en/Functions/stdevp.htm | 4 +- .../resources/help/en/Functions/stdevpa.htm | 4 +- .../resources/help/en/Functions/steyx.htm | 2 +- .../help/en/Functions/substitute.htm | 2 +- .../resources/help/en/Functions/subtotal.htm | 2 +- .../main/resources/help/en/Functions/sum.htm | 2 +- .../resources/help/en/Functions/sumif.htm | 2 +- .../resources/help/en/Functions/sumifs.htm | 2 +- .../help/en/Functions/sumproduct.htm | 2 +- .../resources/help/en/Functions/sumsq.htm | 2 +- .../resources/help/en/Functions/sumx2my2.htm | 2 +- .../resources/help/en/Functions/sumx2py2.htm | 2 +- .../resources/help/en/Functions/sumxmy2.htm | 2 +- .../resources/help/en/Functions/switch.htm | 38 ++++ .../main/resources/help/en/Functions/syd.htm | 2 +- .../resources/help/en/Functions/t-dist-2t.htm | 2 +- .../resources/help/en/Functions/t-dist-rt.htm | 2 +- .../resources/help/en/Functions/t-dist.htm | 2 +- .../resources/help/en/Functions/t-inv-2t.htm | 2 +- .../resources/help/en/Functions/t-inv.htm | 2 +- .../resources/help/en/Functions/t-test.htm | 55 +++++ .../main/resources/help/en/Functions/t.htm | 2 +- .../main/resources/help/en/Functions/tan.htm | 2 +- .../main/resources/help/en/Functions/tanh.htm | 2 +- .../resources/help/en/Functions/tbilleq.htm | 2 +- .../help/en/Functions/tbillprice.htm | 2 +- .../help/en/Functions/tbillyield.htm | 2 +- .../resources/help/en/Functions/tdist.htm | 2 +- .../main/resources/help/en/Functions/text.htm | 2 +- .../resources/help/en/Functions/textjoin.htm | 35 ++++ .../main/resources/help/en/Functions/time.htm | 2 +- .../resources/help/en/Functions/timevalue.htm | 2 +- .../main/resources/help/en/Functions/tinv.htm | 2 +- .../resources/help/en/Functions/today.htm | 2 +- .../resources/help/en/Functions/transpose.htm | 2 +- .../main/resources/help/en/Functions/trim.htm | 2 +- .../resources/help/en/Functions/trimmean.htm | 35 ++++ .../main/resources/help/en/Functions/true.htm | 2 +- .../resources/help/en/Functions/trunc.htm | 2 +- .../resources/help/en/Functions/ttest.htm | 55 +++++ .../main/resources/help/en/Functions/type.htm | 2 +- .../resources/help/en/Functions/unichar.htm | 33 +++ .../resources/help/en/Functions/unicode.htm | 33 +++ .../resources/help/en/Functions/upper.htm | 2 +- .../resources/help/en/Functions/value.htm | 2 +- .../resources/help/en/Functions/var-p.htm | 33 +++ .../resources/help/en/Functions/var-s.htm | 33 +++ .../main/resources/help/en/Functions/var.htm | 2 +- .../main/resources/help/en/Functions/vara.htm | 2 +- .../main/resources/help/en/Functions/varp.htm | 2 +- .../resources/help/en/Functions/varpa.htm | 2 +- .../main/resources/help/en/Functions/vdb.htm | 2 +- .../resources/help/en/Functions/vlookup.htm | 2 +- .../resources/help/en/Functions/weekday.htm | 2 +- .../resources/help/en/Functions/weeknum.htm | 2 +- .../help/en/Functions/weibull-dist.htm | 37 ++++ .../resources/help/en/Functions/weibull.htm | 37 ++++ .../help/en/Functions/workday-intl.htm | 100 +++++++++ .../resources/help/en/Functions/workday.htm | 9 +- .../main/resources/help/en/Functions/xirr.htm | 2 +- .../main/resources/help/en/Functions/xnpv.htm | 2 +- .../main/resources/help/en/Functions/xor.htm | 2 +- .../main/resources/help/en/Functions/year.htm | 2 +- .../resources/help/en/Functions/yearfrac.htm | 2 +- .../resources/help/en/Functions/yield.htm | 2 +- .../resources/help/en/Functions/yielddisc.htm | 2 +- .../resources/help/en/Functions/yieldmat.htm | 2 +- .../resources/help/en/Functions/z-test.htm | 36 ++++ .../resources/help/en/Functions/ztest.htm | 36 ++++ .../help/en/HelpfulHints/AdvancedSettings.htm | 2 +- .../en/HelpfulHints/CollaborativeEditing.htm | 12 +- .../en/HelpfulHints/KeyboardShortcuts.htm | 6 +- .../help/en/HelpfulHints/Navigation.htm | 21 +- .../help/en/UsageInstructions/AddBorders.htm | 2 +- .../en/UsageInstructions/AddHyperlinks.htm | 3 +- .../help/en/UsageInstructions/AlignText.htm | 16 +- .../UsageInstructions/ChangeNumberFormat.htm | 12 +- .../en/UsageInstructions/ClearFormatting.htm | 8 +- .../en/UsageInstructions/CopyPasteData.htm | 2 +- .../UsageInstructions/FontTypeSizeStyle.htm | 30 +-- .../en/UsageInstructions/InsertAutoshapes.htm | 9 +- .../help/en/UsageInstructions/InsertChart.htm | 9 +- .../UsageInstructions/InsertDeleteCells.htm | 10 +- .../en/UsageInstructions/InsertEquation.htm | 9 +- .../en/UsageInstructions/InsertFunction.htm | 41 ++-- .../en/UsageInstructions/InsertImages.htm | 9 +- .../UsageInstructions/InsertTextObjects.htm | 26 +-- .../UsageInstructions/ManipulateObjects.htm | 6 +- .../help/en/UsageInstructions/MergeCells.htm | 2 +- .../en/UsageInstructions/OpenCreateNew.htm | 6 +- .../UsageInstructions/SavePrintDownload.htm | 8 +- .../help/en/UsageInstructions/SortData.htm | 18 +- .../help/en/UsageInstructions/UndoRedo.htm | 2 +- .../en/UsageInstructions/UseNamedRanges.htm | 6 +- .../help/en/UsageInstructions/ViewDocInfo.htm | 6 +- .../help/en/images/access_rights.png | Bin 561 -> 347 bytes .../resources/help/en/images/addhyperlink.png | Bin 239 -> 838 bytes .../resources/help/en/images/aggregate.png | Bin 0 -> 4074 bytes .../resources/help/en/images/aggregate2.png | Bin 0 -> 3937 bytes .../help/en/images/basiccalculations.png | Bin 13199 -> 13505 bytes .../main/resources/help/en/images/besseli.png | Bin 0 -> 3507 bytes .../main/resources/help/en/images/besselj.png | Bin 0 -> 3401 bytes .../main/resources/help/en/images/besselk.png | Bin 0 -> 3427 bytes .../main/resources/help/en/images/bessely.png | Bin 0 -> 3457 bytes .../help/en/images/binom-dist-range.png | Bin 0 -> 4792 bytes .../main/resources/help/en/images/bitand.png | Bin 0 -> 3149 bytes .../resources/help/en/images/bitlshift.png | Bin 0 -> 2920 bytes .../main/resources/help/en/images/bitor.png | Bin 0 -> 3004 bytes .../resources/help/en/images/bitrshift.png | Bin 0 -> 2861 bytes .../main/resources/help/en/images/bitxor.png | Bin 0 -> 2947 bytes .../main/resources/help/en/images/chart.png | Bin 186 -> 218 bytes .../help/en/images/chartsettingsicon.png | Bin 0 -> 126 bytes .../resources/help/en/images/chisq-test.png | Bin 0 -> 7070 bytes .../main/resources/help/en/images/chitest.png | Bin 0 -> 6998 bytes .../help/en/images/comment_toptoolbar.png | Bin 0 -> 304 bytes .../main/resources/help/en/images/covar.png | Bin 5007 -> 4643 bytes .../resources/help/en/images/covariance-p.png | Bin 0 -> 4839 bytes .../resources/help/en/images/covariance-s.png | Bin 0 -> 4713 bytes .../resources/help/en/images/daverage.png | Bin 0 -> 8117 bytes .../main/resources/help/en/images/days.png | Bin 0 -> 3481 bytes .../main/resources/help/en/images/dcount.png | Bin 0 -> 7989 bytes .../main/resources/help/en/images/dcounta.png | Bin 0 -> 8343 bytes .../main/resources/help/en/images/dget.png | Bin 0 -> 9115 bytes .../main/resources/help/en/images/dmax.png | Bin 0 -> 8610 bytes .../main/resources/help/en/images/dmin.png | Bin 0 -> 8642 bytes .../resources/help/en/images/dproduct.png | Bin 0 -> 10085 bytes .../main/resources/help/en/images/dstdev.png | Bin 0 -> 8724 bytes .../main/resources/help/en/images/dstdevp.png | Bin 0 -> 8679 bytes .../main/resources/help/en/images/dsum.png | Bin 0 -> 8586 bytes .../main/resources/help/en/images/dvar.png | Bin 0 -> 8644 bytes .../main/resources/help/en/images/dvarp.png | Bin 0 -> 8794 bytes .../resources/help/en/images/ecma-ceiling.png | Bin 0 -> 3398 bytes .../resources/help/en/images/erf-precise.png | Bin 0 -> 3312 bytes .../resources/help/en/images/erfc-precise.png | Bin 0 -> 3384 bytes .../resources/help/en/images/firstsheet.png | Bin 160 -> 191 bytes .../help/en/images/forecast-linear.png | Bin 0 -> 5629 bytes .../resources/help/en/images/forecast.png | Bin 5696 -> 5054 bytes .../help/en/images/gotodocuments.png | Bin 0 -> 176 bytes .../resources/help/en/images/grouping.png | Bin 9452 -> 8457 bytes .../main/resources/help/en/images/image.png | Bin 288 -> 225 bytes .../help/en/images/insertautoshape.png | Bin 263 -> 593 bytes .../help/en/images/insertequationicon.png | Bin 306 -> 625 bytes .../help/en/images/inserttextarticon.png | Bin 0 -> 639 bytes .../help/en/images/inserttexticon.png | Bin 251 -> 219 bytes .../resources/help/en/images/isformula.png | Bin 0 -> 3729 bytes .../resources/help/en/images/isoweeknum.png | Bin 0 -> 3771 bytes .../resources/help/en/images/lastsheet.png | Bin 157 -> 217 bytes .../help/en/images/maintain_proportions.png | Bin 1459 -> 1324 bytes .../main/resources/help/en/images/maxifs.png | Bin 0 -> 9050 bytes .../main/resources/help/en/images/minifs.png | Bin 0 -> 9052 bytes .../resources/help/en/images/mode-mult.png | Bin 0 -> 4281 bytes .../resources/help/en/images/mode-sngl.png | Bin 0 -> 4341 bytes .../main/resources/help/en/images/mode.png | Bin 4295 -> 4179 bytes .../help/en/images/negbinom-dist.png | Bin 0 -> 4396 bytes .../resources/help/en/images/negbinomdist.png | Bin 4204 -> 3856 bytes .../help/en/images/networkdays-intl.png | Bin 0 -> 5554 bytes .../resources/help/en/images/nextsheet.png | Bin 149 -> 188 bytes .../resources/help/en/images/norm-dist.png | Bin 0 -> 5417 bytes .../resources/help/en/images/norm-inv.png | Bin 0 -> 4026 bytes .../resources/help/en/images/norm-s-dist.png | Bin 0 -> 3681 bytes .../resources/help/en/images/norm-s-inv.png | Bin 0 -> 3623 bytes .../resources/help/en/images/normdist.png | Bin 5900 -> 5432 bytes .../resources/help/en/images/permutationa.png | Bin 0 -> 3452 bytes .../main/resources/help/en/images/phi.png | Bin 0 -> 3196 bytes .../resources/help/en/images/poisson-dist.png | Bin 0 -> 4315 bytes .../help/en/images/previoussheet.png | Bin 157 -> 177 bytes .../resources/help/en/images/quartile-exc.png | Bin 0 -> 4902 bytes .../resources/help/en/images/quartile-inc.png | Bin 0 -> 4955 bytes .../resources/help/en/images/reshaping.png | Bin 3679 -> 3591 bytes .../main/resources/help/en/images/rri.png | Bin 0 -> 4826 bytes .../main/resources/help/en/images/sheet.png | Bin 0 -> 2520 bytes .../main/resources/help/en/images/sheets.png | Bin 0 -> 2842 bytes .../main/resources/help/en/images/skew-p.png | Bin 0 -> 4918 bytes .../main/resources/help/en/images/stdev-p.png | Bin 0 -> 6011 bytes .../main/resources/help/en/images/stdev-s.png | Bin 0 -> 4948 bytes .../main/resources/help/en/images/stdev.png | Bin 5536 -> 5325 bytes .../main/resources/help/en/images/sumifs.png | Bin 11149 -> 9107 bytes .../main/resources/help/en/images/switch.png | Bin 0 -> 3755 bytes .../main/resources/help/en/images/t-test.png | Bin 0 -> 4469 bytes .../main/resources/help/en/images/table.png | Bin 206 -> 118 bytes .../resources/help/en/images/textjoin.png | Bin 0 -> 6653 bytes .../resources/help/en/images/trimmean.png | Bin 0 -> 3574 bytes .../main/resources/help/en/images/ttest.png | Bin 0 -> 4390 bytes .../main/resources/help/en/images/unichar.png | Bin 0 -> 4073 bytes .../main/resources/help/en/images/unicode.png | Bin 0 -> 4491 bytes .../resources/help/en/images/usersnumber.png | Bin 565 -> 390 bytes .../main/resources/help/en/images/var-p.png | Bin 0 -> 5411 bytes .../main/resources/help/en/images/var-s.png | Bin 0 -> 5462 bytes .../main/resources/help/en/images/varp.png | Bin 5318 -> 5407 bytes .../resources/help/en/images/weibull-dist.png | Bin 0 -> 4364 bytes .../main/resources/help/en/images/weibull.png | Bin 0 -> 4251 bytes .../resources/help/en/images/workday-intl.png | Bin 0 -> 5387 bytes .../main/resources/help/en/images/z-test.png | Bin 0 -> 5829 bytes .../main/resources/help/en/images/ztest.png | Bin 0 -> 5828 bytes 716 files changed, 3837 insertions(+), 819 deletions(-) create mode 100644 apps/documenteditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm create mode 100644 apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeWrappingStyle.htm create mode 100644 apps/documenteditor/main/resources/help/en/images/align_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/alignobjectbottom.png create mode 100644 apps/documenteditor/main/resources/help/en/images/alignobjectcenter.png create mode 100644 apps/documenteditor/main/resources/help/en/images/alignobjectleft.png create mode 100644 apps/documenteditor/main/resources/help/en/images/alignobjectmiddle.png create mode 100644 apps/documenteditor/main/resources/help/en/images/alignobjectright.png create mode 100644 apps/documenteditor/main/resources/help/en/images/alignobjecttop.png create mode 100644 apps/documenteditor/main/resources/help/en/images/bringforward.png create mode 100644 apps/documenteditor/main/resources/help/en/images/bringforward_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/bringtofront.png create mode 100644 apps/documenteditor/main/resources/help/en/images/collapse.png create mode 100644 apps/documenteditor/main/resources/help/en/images/comment_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/expand.png create mode 100644 apps/documenteditor/main/resources/help/en/images/gotodocuments.png create mode 100644 apps/documenteditor/main/resources/help/en/images/group.png create mode 100644 apps/documenteditor/main/resources/help/en/images/group_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/inserttextarticon.png create mode 100644 apps/documenteditor/main/resources/help/en/images/review_accepttoptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/review_delete.png create mode 100644 apps/documenteditor/main/resources/help/en/images/review_displaymode.png create mode 100644 apps/documenteditor/main/resources/help/en/images/review_rejecttoptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/sendbackward.png create mode 100644 apps/documenteditor/main/resources/help/en/images/sendbackward_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/sendtoback.png create mode 100644 apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png create mode 100644 apps/documenteditor/main/resources/help/en/images/trackchangesstatusbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/trackchangestoptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/ungroup.png create mode 100644 apps/documenteditor/main/resources/help/en/images/versionhistory.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrapping_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_behind_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_infront_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_inline_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_square_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_through_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_tight_toptoolbar.png create mode 100644 apps/documenteditor/main/resources/help/en/images/wrappingstyle_topandbottom_toptoolbar.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/comment_toptoolbar.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/gotodocuments.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/hidden_slide.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/inserttextarticon.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/pointer.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/pointer_enabled.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/pointer_screen.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/presenter_mode.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/preview_mode.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/showsettings.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar.png create mode 100644 apps/presentationeditor/main/resources/help/en/images/spellchecking_toptoolbar_activated.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/aggregate.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/besseli.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/besselj.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/besselk.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/bessely.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/binom-dist-range.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/bitand.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/bitlshift.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/bitor.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/bitrshift.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/bitxor.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/chisq-test.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/chitest.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-p.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/covariance-s.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/daverage.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/days.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dcount.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dcounta.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dget.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dmax.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dmin.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dproduct.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dstdev.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dstdevp.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dsum.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dvar.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/dvarp.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/ecma-ceiling.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/erf-precise.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/erfc-precise.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/forecast-linear.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/isformula.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/isoweeknum.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/maxifs.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/minifs.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/mode-mult.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/mode-sngl.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/negbinom-dist.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/networkdays-intl.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/norm-dist.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/norm-inv.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-dist.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/norm-s-inv.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/permutationa.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/phi.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/poisson-dist.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-exc.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/quartile-inc.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/rri.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/sheet.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/sheets.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/skew-p.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-p.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/stdev-s.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/switch.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/t-test.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/textjoin.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/trimmean.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/ttest.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/unichar.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/unicode.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/var-p.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/var-s.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/weibull-dist.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/weibull.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/workday-intl.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/z-test.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/Functions/ztest.htm create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/aggregate.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/aggregate2.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/besseli.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/besselj.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/besselk.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/bessely.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/binom-dist-range.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/bitand.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/bitlshift.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/bitor.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/bitrshift.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/bitxor.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/chartsettingsicon.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/chisq-test.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/chitest.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/comment_toptoolbar.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/covariance-p.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/covariance-s.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/daverage.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/days.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dcount.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dcounta.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dget.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dmax.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dmin.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dproduct.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dstdev.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dstdevp.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dsum.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dvar.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/dvarp.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/ecma-ceiling.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/erf-precise.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/erfc-precise.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/forecast-linear.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/gotodocuments.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/inserttextarticon.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/isformula.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/isoweeknum.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/maxifs.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/minifs.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/mode-mult.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/mode-sngl.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/negbinom-dist.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/networkdays-intl.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/norm-dist.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/norm-inv.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/norm-s-dist.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/norm-s-inv.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/permutationa.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/phi.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/poisson-dist.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/quartile-exc.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/quartile-inc.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/rri.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/sheet.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/sheets.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/skew-p.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/stdev-p.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/stdev-s.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/switch.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/t-test.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/textjoin.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/trimmean.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/ttest.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/unichar.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/unicode.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/var-p.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/var-s.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/weibull-dist.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/weibull.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/workday-intl.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/z-test.png create mode 100644 apps/spreadsheeteditor/main/resources/help/en/images/ztest.png diff --git a/apps/documenteditor/main/resources/help/en/Contents.json b/apps/documenteditor/main/resources/help/en/Contents.json index 5d2dcc725..12879ec72 100644 --- a/apps/documenteditor/main/resources/help/en/Contents.json +++ b/apps/documenteditor/main/resources/help/en/Contents.json @@ -19,7 +19,9 @@ {"src": "UsageInstructions/InsertTables.htm", "name": "Insert tables"}, {"src": "UsageInstructions/InsertImages.htm", "name": "Insert images"}, {"src": "UsageInstructions/InsertAutoshapes.htm", "name": "Insert autoshapes"}, - {"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts"}, + {"src": "UsageInstructions/InsertCharts.htm", "name": "Insert charts" }, + {"src": "UsageInstructions/AlignArrangeObjects.htm", "name": "Align and arrange objects on a page" }, + {"src": "UsageInstructions/ChangeWrappingStyle.htm", "name": "Change wrapping style"}, {"src": "UsageInstructions/AddHyperlinks.htm", "name": "Add hyperlinks"}, {"src": "UsageInstructions/InsertDropCap.htm", "name": "Insert a drop cap"}, {"src": "UsageInstructions/InsertHeadersFooters.htm", "name": "Insert headers and footers"}, diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm index b9920b1a6..274ba1f24 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/AdvancedSettings.htm @@ -9,7 +9,7 @@

Advanced Settings of Document Editor

-

Document Editor lets you change its advanced settings. To access them, click the File File icon icon at the left sidebar and select the Advanced Settings... option. You can also use the Advanced Settings icon icon in the right upper corner of the top toolbar.

+

Document Editor lets you change its advanced settings. To access them, open the File tab at the top toolbar and select the Advanced Settings... option. You can also use the Advanced settings icon icon in the right upper corner at the Home tab of the top toolbar.

The advanced settings are:

  • Commenting Display is used to turn on/off the live commenting option: @@ -29,7 +29,7 @@
  • - Realtime Collaboration Changes* is used to specify what changes you want to be highlighted during co-editing: + Realtime Collaboration Changes is used to specify what changes you want to be highlighted during co-editing:
    • Selecting the View None option, changes made during the current session will not be highlighted.
    • Selecting the View All option, all the changes made during the current session will be highlighted.
    • diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm index 77111091f..b3ca6fbc1 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/CollaborativeEditing.htm @@ -22,10 +22,10 @@

      Co-editing

      Document Editor allows to select one of the two available co-editing modes. Fast is used by default and shows the changes made by other users in realtime. Strict is selected to hide other user changes until you click the Save Save icon icon to save your own changes and accept the changes made by others. The mode can be selected in the Advanced Settings.

      When a document is being edited by several users simultaneously in the Strict mode, the edited text passages are marked with dashed lines of different colors. By hovering the mouse cursor over one of the edited passages, the name of the user who is editing it at the moment is displayed. The Fast mode will show the actions and the names of the co-editors once they are editing the text.

      -

      The number of users who are working at the current document is specified in the left lower corner at the status bar - Number of users icon. If you want to see who exactly are editing the file now, you can open the Chat panel with the full list of the users.

      -

      When no users are viewing or editing the file, the icon in the status bar will look like Manage document access rights icon allowing you to manage the users who have access to the file right from the document: invite new users giving them either full or read-only access, or denying some users access rights to the file. Click this icon to manage the access to the file; this can be done both when there are no other users who view or co-edit the document at the moment and when there are other users and the icon looks like Number of users icon.

      +

      The number of users who are working at the current document is specified on the right side of the editor header - Number of users icon. If you want to see who exactly are editing the file now, you can click this icon or open the Chat panel with the full list of the users.

      +

      When no users are viewing or editing the file, the icon in the editor header will look like Manage document access rights icon allowing you to manage the users who have access to the file right from the document: invite new users giving them permissions to edit, read or review the document, or deny some users access rights to the file. Click this icon to manage the access to the file; this can be done both when there are no other users who view or co-edit the document at the moment and when there are other users and the icon looks like Number of users icon.

      As soon as one of the users saves his/her changes by clicking the Save icon icon, the others will see a note within the status bar stating that they have updates. To save the changes you made, so that other users can view them, and get the updates saved by your co-editors, click the Save icon icon in the left upper corner of the top toolbar. The updates will be highlighted for you to check what exactly has been changed.

      -

      You can specify what changes you want to be highlighted during co-editing if you click the File icon icon at the left sidebar, select the Advanced Settings... option and choose between none, all and last realtime collaboration changes. Selecting View all changes, all the changes made during the current session will be highlighted. Selecting View last changes, only the changes made since you last time clicked the Save icon icon will be highlighted. Selecting View None changes, changes made during the current session will not be highlighted.

      +

      You can specify what changes you want to be highlighted during co-editing if you click the File tab at the top toolbar, select the Advanced Settings... option and choose between none, all and last realtime collaboration changes. Selecting View all changes, all the changes made during the current session will be highlighted. Selecting View last changes, only the changes made since you last time clicked the Save icon icon will be highlighted. Selecting View None changes, changes made during the current session will not be highlighted.

      Chat

      You can use this tool to coordinate the co-editing process on-the-fly, for example, to arrange with your collaborators about who is doing what, which paragraph you are going to edit now etc.

      The chat messages are stored during one session only. To discuss the document content it is better to use comments which are stored until you decide to delete them.

      @@ -43,22 +43,23 @@
      1. select a text passage where you think there is an error or problem,
      2. + switch to the Insert or Review tab of the top toolbar and click the Comment icon Comment button, or
        use the Comments icon icon at the left sidebar to open the Comments panel and click the Add Comment to Document link, or
        - right-click the selected text passage and select the Add Сomment option from the menu, + right-click the selected text passage and select the Add Сomment option from the contextual menu,
      3. enter the needed text,
      4. click the Add Comment/Add button.

      The comment will be seen on the panel on the left. Any other user can answer to the added comment asking questions or reporting on the work he/she has done. For this purpose, click the Add Reply link situated under the comment.

      -

      The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the File icon icon, select the Advanced Settings... option and uncheck the Turn on display of the comments box. In this case the commented passages will be highlighted only if you click the Comments icon icon.

      +

      The text passage you commented will be highlighted in the document. To view the comment, just click within the passage. If you need to disable this feature, click the File tab at the top toolbar, select the Advanced Settings... option and uncheck the Turn on display of the comments box. In this case the commented passages will be highlighted only if you click the Comments icon icon.

      You can manage the comments you added in the following way:

      • edit them by clicking the Edit icon icon,
      • delete them by clicking the Delete icon icon,
      • -
      • close the discussion by clicking the Resolve icon icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the Open again icon icon. If you want to hide resolved comments, click the File icon icon, select the Advanced Settings... option and uncheck the Turn on display of the resolved comments box. In this case the resolved comments will be highlighted only if you click the Comments icon icon.
      • +
      • close the discussion by clicking the Resolve icon icon if the task or problem you stated in your comment was solved, after that the discussion you opened with your comment gets the resolved status. To open it again, click the Open again icon icon. If you want to hide resolved comments, click the File tab at the top toolbar, select the Advanced Settings... option, uncheck the Turn on display of the resolved comments box and click Apply. In this case the resolved comments will be highlighted only if you click the Comments icon icon.

      If you are using the Strict co-editing mode, new comments added by other users will become visible only after you click the Save icon icon in the left upper corner of the top toolbar.

      -

      To close the panel with comments, click the Comments icon icon once again.

      +

      To close the panel with comments, click the Comments icon icon at the left sidebar once again.

  • \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm index 02ead77f3..7bd104742 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/KeyboardShortcuts.htm @@ -50,9 +50,9 @@ Print the document with one of the available printers or save it to a file. - Save As (Download As) + Download As... Ctrl+Shift+S - Save the currently edited document to the computer hard disk drive in one of the supported formats: PDF, TXT, DOCX, DOC, ODT, RTF, HTML, EPUB. + Save the currently edited document to the computer hard disk drive in one of the supported formats: PDF, TXT, DOCX, ODT, HTML. Full screen @@ -109,12 +109,12 @@ Zoom In - Ctrl++ + Ctrl+plus (+) Zoom in the currently edited document. Zoom Out - Ctrl+- + Ctrl+minus (-) Zoom out the currently edited document. @@ -239,12 +239,12 @@ Subscript - Ctrl+.(dot) + Ctrl+dot (.) Make the selected text fragment smaller and place it to the lower part of the text line, e.g. as in chemical formulas. Superscript - Ctrl+,(comma) + Ctrl+comma (,) Make the selected text fragment smaller and place it to the upper part of the text line, e.g. as in fractions. diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm index f4aae2018..e01f5a41c 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Navigation.htm @@ -9,29 +9,30 @@

    View Settings and Navigation Tools

    -

    Document Editor offers several tools to help you view and navigate through your document: zoom, previous/next page buttons, page number indicator.

    +

    Document Editor offers several tools to help you view and navigate through your document: zoom, page number indicator etc.

    Adjust the View Settings

    -

    To adjust default view settings and set the most convenient mode to work with the document, click the View Settings View Settings icon icon at the upper right corner of the top toolbar and select which interface elements you want to be hidden or shown. - You can select the following options from the View Settings drop-down list: +

    To adjust default view settings and set the most convenient mode to work with the document, switch to the Home tab of the top toolbar, click the View settings View settings icon icon at the upper right corner and select which interface elements you want to be hidden or shown. + You can select the following options from the View settings drop-down list:

      -
    • View Compact Toolbar - enables a compact toolbar mode that provides access to basic features. To view the default toolbar click this option once again.
    • -
    • Hide Title Bar - hides the topmost bar where the document name and the Go to Documents option are displayed. To show the hidden Title Bar click this option once again.
    • +
    • + Hide Toolbar - hides the top toolbar that contains commands while tabs remain visible. When this option is enabled, you can click any tab to display the toolbar. The toolbar is displayed until you click anywhere outside it.
      To disable this mode switch to the Home tab, then click the View settings View settings icon icon and click the Hide Toolbar option once again. The top toolbar will be displayed all the time. +

      Note: alternatively, you can just double-click any tab to hide the top toolbar or display it again.

      +
    • Hide Status Bar - hides the bottommost bar where the Page Number Indicator and Zoom buttons are situated. To show the hidden Status Bar click this option once again.
    • Hide Rulers - hides rulers which are used to align text, graphics, tables, and other elements in a document, set up margins, tab stops, and paragraph indents. To show the hidden Rulers click this option once again.
    -

    The right sidebar is minimized by default. To expand it, select any object/text passage and click the icon of the currently activated tab on the right (click the icon once again to minimize the right sidebar).

    +

    The right sidebar is minimized by default. To expand it, select any object (e.g. image, chart, shape) or text passage and click the icon of the currently activated tab on the right. To minimize the right sidebar, click the icon once again.

    When the Comments or Chat panel is opened, the left sidebar width is adjusted by simple drag-and-drop: - move the mouse cursor over the left sidebar border so that it turns into the bidirectional arrow and drag the border to the to the right to extend the sidebar width. To restore its original width move the border to the left.

    + move the mouse cursor over the left sidebar border so that it turns into the bidirectional arrow and drag the border to the right to extend the sidebar width. To restore its original width move the border to the left.

    Use the Navigation Tools

    To navigate through your document, use the following tools:

    The Zoom buttons are situated in the right lower corner and are used to zoom in and out the current document. To change the currently selected zoom value that is displayed in percent, click it and select one of the available zoom options from the list - or use the Zoom In Zoom In button or Zoom Out Zoom Out button buttons. - Click the Fit Width Fit Width button icon to fit the document page width to the visible part of the working area. - To fit the whole document page to the visible part of the working area, click the Fit Page Fit Page button icon. - Zoom settings are also available in the View Settings View Settings icon drop-down list that can be useful if you decide to hide the Status Bar.

    -

    The Previous Page Previous Page button and Next Page Next Page button buttons are situated in the lower right corner under the scrollbar and used to go to the previous or next page of the current document.

    + or use the Zoom in Zoom in button or Zoom out Zoom out button buttons. + Click the Fit width Fit width button icon to fit the document page width to the visible part of the working area. + To fit the whole document page to the visible part of the working area, click the Fit page Fit page button icon. + Zoom settings are also available in the View settings View settings icon drop-down list that can be useful if you decide to hide the Status Bar.

    The Page Number Indicator shows the current page as a part of all the pages in the current document (page 'n' of 'nn'). Click this caption to open the window where you can enter the page number and quickly go to it.

    diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm index 4b489270c..6bbe17489 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/Review.htm @@ -12,14 +12,37 @@

    When somebody shares a file with you that has review permissions, you need to use the document Review feature.

    If you are the reviewer, then you can use the Review option to review the document, change the sentences, phrases and other page elements, correct spelling, and do other things to the document without actually editing it. All your changes will be recorded and shown to the person who sent the document to you.

    If you are the person who sends the file for the review, you will need to display all the changes which were made to it, view and either accept or reject them.

    -

    In either case the Review is enabled with the help of the Review button button in the right lower corner at the status bar. You can click the Review button to enable both Track Changes and Changes Panel options, or use the arrow next to it to select which options you want to be enabled.

    -

    Once selected the Changes Panel is displayed:

    -

    Review panel

    -

    Note: it is not necessary for the reviewer to display the Changes Panel, the Track Changes option is enabled by default and cannot be disabled when the document is shared with review only access rights.

    -

    To accept the changes use the appropriate Changes Panel menu option (Accept) or the Accept Accept button button of the change notification.

    -

    Note: if you review the document please do not use Accept as your changes will not be visible to anyone else.

    -

    Use the To Previous Change button To Previous Change and the To Next Change button To Next Change buttons to navigate among the changes or use the the Accept Current Change menu option of the Changes Panel to progress from one change to another. To quickly accept all the changes, the Accept All Changes menu option of the Changes Panel can be used.

    -

    To reject the current change click the Reject button Reject button or use the Reject Current Change menu option of the Changes Panel and move on to the next available change. To quickly reject all the changes, the Reject All Changes menu option of the Changes Panel can be used.

    +

    Enable the Track Changes feature

    +

    To see changes suggested by a reviewer, enable the Track Changes option in one of the following ways:

    +
      +
    • click the Track changes button button in the right lower corner at the status bar, or
    • +
    • switch to the Review tab at the top toolbar and press the Track Changes button Track Changes button.
    • +
    +

    Note: it is not necessary for the reviewer to enable the Track Changes option. It is enabled by default and cannot be disabled when the document is shared with review only access rights.

    +

    Choose the changes display mode

    +

    Click the Display Mode button Display Mode button at the top toolbar and select one of the available modes from the list:

    +
      +
    • All changes (Editing) - this option is selected by default. It allows both to view suggested changes and edit the document.
    • +
    • All changes accepted (Preview) - this mode is used to display all the changes as if they were accepted. This option does not actually accept all changes, it only allows you to see how the document will look like after you accept all the changes. In this mode, you cannot edit the document.
    • +
    • All changes rejected (Preview) - this mode is used to display all the changes as if they were rejected. This option does not actually reject all changes, it only allows you to view the document without changes. In this mode, you cannot edit the document.
    • +
    +

    Accept or reject changes

    +

    Use the To Previous Change button Previous and the To Next Change button Next buttons at the top toolbar to navigate among the changes.

    +

    To accept the currently selected change you can:

    +
      +
    • click the Accept button Accept button at the top toolbar, or
    • +
    • click the downward arrow below the Accept button and select the Accept Current Change option (in this case, the change will be accepted and you will proceed to the next change), or
    • +
    • click the Accept Accept button button of the change notification.
    • +
    +

    To quickly accept all the changes, click the downward arrow below the Accept button Accept button and select the Accept All Changes option.

    +

    To reject the current change you can:

    +
      +
    • click the Reject button Reject button at the top toolbar, or
    • +
    • click the downward arrow below the Reject button and select the Reject Current Change option (in this case, the change will be rejected and you will move on to the next available change), or
    • +
    • click the Reject Reject button button of the change notification.
    • +
    +

    To quickly reject all the changes, click the downward arrow below the Reject button Reject button and select the Reject All Changes option.

    +

    Note: if you review the document the Accept and Reject options are not available for you. You can delete your changes using the Delete change button icon within the change balloon.

    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm index 0c9a123c5..ec6746e0a 100644 --- a/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm +++ b/apps/documenteditor/main/resources/help/en/HelpfulHints/SpellChecking.htm @@ -10,25 +10,29 @@

    Spell-checking

    Document Editor allows you to check the spelling of your text in a certain language and correct mistakes while editing.

    -

    First of all, choose a language for your document. Click the Set Document Language icon icon at the right part of the Status bar. In the window that appears, select the necessary language and click OK. The selected language will be applied to the whole document.

    +

    First of all, choose a language for your document. Switch to the Review tab of the top toolbar and click the Set Document Language icon Language icon. In the window that appears, select the necessary language and click OK. The selected language will be applied to the whole document.

    Set Document Language window

    -

    To choose a different language for any piece of text within the document, select the necessary text passage with the mouse and use the Spell-checking - Text Language selector menu at the Status bar.

    -

    Incorrectly spelled words will be underlined by a red line.

    +

    To choose a different language for any piece of text within the document, select the necessary text passage with the mouse and use the Spell-checking - Text Language selector menu at the status bar.

    +

    To enable the spell checking option, you can:

    +
      +
    • click the Spell Checking top toolbar icon Spell Checking icon at the Review tab of the top toolbar, or
    • +
    • click the Spell checking deactivated icon Spell checking icon at the status bar, or
    • +
    • open the File tab of the top toolbar, select the Advanced Settings... option, check the Turn on spell checking option box and click the Apply button.
    • +
    +

    Incorrectly spelled words will be underlined by a red line.

    Right click on the necessary word to activate the menu and:

    • choose one of the suggested similar words spelled correctly to replace the misspelled word with the suggested one. If too many variants are found, the More variants... option appears in the menu;
    • -
    • use the Ignore option to skip just that word and remove underlining or Ignore all to skip all the identical words repeated in the text;
    • +
    • use the Ignore option to skip just that word and remove underlining or Ignore All to skip all the identical words repeated in the text;
    • select a different language for this word.

    Spell-checking

    -

    To turn off the spell checking option,

    -
      -
    1. click the File File icon icon at the left sidebar,
    2. -
    3. select the Advanced Settings... option,
    4. -
    5. uncheck the Turn on spell checking option box,
    6. -
    7. click the Apply button.
    8. -
    -

    You can alternatively click the Spell Checking activated icon icon at the right part of the Status bar - after that the icon will look like this Spell Checking deactivated icon.

    +

    To disable the spell checking option, you can:

    +
      +
    • click the Spell Checking top toolbar icon Spell Checking icon at the Review tab of the top toolbar, or
    • +
    • click the Spell checking activated icon Spell checking icon at the status bar, or
    • +
    • open the File tab of the top toolbar, select the Advanced Settings... option, uncheck the Turn on spell checking option box and click the Apply button.
    • +
    \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm index 0fc215d8b..02d34c6b9 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/AddHyperlinks.htm @@ -13,7 +13,8 @@

    To add a hyperlink,

    1. place the cursor to a position where a hyperlink will be added,
    2. -
    3. click the Add Hyperlink Add Hyperlink icon icon at the top toolbar,
    4. +
    5. switch to the Insert tab of the top toolbar,
    6. +
    7. click the Hyperlink icon Hyperlink icon at the top toolbar,
    8. after that the Hyperlink Settings window will appear where you can specify the hyperlink parameters:
      • Link to - enter a URL in the format http://www.example.com.
      • @@ -26,7 +27,7 @@

    To add a hyperlink, you can also click with the right mouse button at a position where a hyperlink will be added and select the Hyperlink option in the menu that opens the window displayed above.

    Note: it's also possible to select a caracter, word, word combination, text passage with the mouse or using the keyboard and - click the Add Hyperlink Add Hyperlink icon icon at the top toolbar or right-click the selection and choose the Hyperlink option in the menu. + click the Hyperlink icon Hyperlink icon at the Insert tab of the top toolbar or right-click the selection and choose the Hyperlink option in the menu. After that the window displayed above will open with the Display field filled with the text fragment you selected.

    By hovering the cursor over the added hyperlink, the ScreenTip will appear containing the text you specified. You can follow the link by pressing the CTRL key and clicking the link in your document.

    diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm new file mode 100644 index 000000000..984c82e5e --- /dev/null +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignArrangeObjects.htm @@ -0,0 +1,44 @@ + + + + Align and arrange objects on a page + + + + + +
    +

    Align and arrange objects on a page

    +

    The added autoshapes, images, charts or text boxes can be aligned, grouped and ordered on a page. To perform any of these actions, first select a separate object or several objects on the page. To select several objects, hold down the Ctrl key and left-click the necessary objects. To select a text box, click on its border, not the text within it. After that you can use either the icons at the Layout tab of the top toolbar described below or the analogous options from the right-click menu.

    +

    Align objects

    +

    To align the selected object(s), click the Align icon Align icon at the Layout tab of the top toolbar and select the necessary alignment type from the list:

    +
      +
    • Align Left Align Left icon - to line up the object(s) horizontally by the left side of the page,
    • +
    • Align Center Align Center icon - to line up the object(s) horizontally by the center of the page,
    • +
    • Align Right Align Right icon - to line up the object(s) horizontally by the right side of the page,
    • +
    • Align Top Align Top icon - to line up the object(s) vertically by the top side of the page,
    • +
    • Align Middle Align Middle icon - to line up the object(s) vertically by the middle of the page,
    • +
    • Align Bottom Align Bottom icon - to line up the object(s) vertically by the bottom side of the page.
    • +
    +

    Group objects

    +

    To group two or more selected objects or ungroup them, click the arrow next to the Group icon Group icon at the Layout tab of the top toolbar and select the necessary option from the list:

    +
      +
    • Group Group icon - to join several objects into a group so that they can be simultaneously rotated, moved, resized, aligned, arranged, copied, pasted, formatted like a single object.
    • +
    • Ungroup Ungroup icon - to ungroup the selected group of the previously joined objects.
    • +
    +

    Alternatively, you can right-click the selected objects, choose the Arrange option from the contextual menu and then use the Group or Ungroup option.

    +

    Arrange objects

    +

    To arrange objects (i.e. to change their order when several objects overlap each other), you can use the Bring Forward icon Bring Forward and Send Backward icon Send Backward icons at the Layout tab of the top toolbar and select the necessary arrangement type from the list.

    +

    To move the selected object(s) forward, click the arrow next to the Bring Forward icon Bring Forward icon at the Layout tab of the top toolbar and select the necessary arrangement type from the list:

    +
      +
    • Bring To Foreground Bring To Foreground icon - to move the object(s) in front of all other objects,
    • +
    • Bring Forward Bring Forward icon - to move the selected object(s) by one level forward as related to other objects.
    • +
    +

    To move the selected object(s) backward, click the arrow next to the Send Backward icon Send Backward icon at the Layout tab of the top toolbar and select the necessary arrangement type from the list:

    +
      +
    • Send To Background Send To Background icon - to move the object(s) behind all other objects,
    • +
    • Send Backward Send Backward icon - to move the selected object(s) by one level backward as related to other objects.
    • +
    +
    + + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm index c15af6d83..269611471 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/AlignText.htm @@ -12,11 +12,12 @@

    The text is commonly aligned in four ways: left, right, center or justified. To do that,

    1. place the cursor to the position where you want the alignment to be applied (this can be a new line or already entered text),
    2. +
    3. switch to the Home tab of the top toolbar,
    4. select the alignment type you would like to apply:
        -
      • Left alignment with the text lined up by the left side of the page (the right side remains unaligned) is done with the Align Left Align Left icon icon situated at the top toolbar.
      • -
      • Center alignment with the text lined up by the center of the page (the right and the left sides remains unaligned) is done with the Align Center Align Center icon icon situated at the top toolbar.
      • -
      • Right alignment with the text lined up by the right side of the page (the left side remains unaligned) is done with the Align Right Align Right icon icon situated at the top toolbar.
      • +
      • Left alignment with the text lined up by the left side of the page (the right side remains unaligned) is done with the Align left Align left icon icon situated at the top toolbar.
      • +
      • Center alignment with the text lined up by the center of the page (the right and the left sides remains unaligned) is done with the Align center Align center icon icon situated at the top toolbar.
      • +
      • Right alignment with the text lined up by the right side of the page (the left side remains unaligned) is done with the Align right Align right icon icon situated at the top toolbar.
      • Justify alignment with the text lined up by both the left and the right sides of the page (additional spacing is added where necessary to keep the alignment) is done with the Justify Justify icon icon situated at the top toolbar.
    5. diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/BackgroundColor.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/BackgroundColor.htm index feb399dba..f722d640f 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/BackgroundColor.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/BackgroundColor.htm @@ -13,18 +13,18 @@

      Background color is applied to the whole paragraph and completely fills all the paragraph space from the left page margin to the right page margin.

      To apply a background color to a certain paragraph or change the current one,

        -
      1. select a color scheme for your document from the available ones clicking the Change Color Scheme Change Color Scheme icon at the top toolbar
      2. +
      3. select a color scheme for your document from the available ones clicking the Change color scheme Change color scheme icon at the Home tab of the top toolbar
      4. put the cursor within the paragraph you need, or select several paragraphs with the mouse or the whole text using the Ctrl+A key combination
      5. open the color palettes window. You can access it in one of the following ways:
          -
        • click the downward arrow next to the Paragraph Background Color Icon icon at the top toolbar, or
        • +
        • click the downward arrow next to the Paragraph background color Icon icon at the Home tab of the top toolbar, or
        • click the color field next to the Background Color caption at the right sidebar, or
        • click the 'Show advanced settings' link at the right sidebar or select the 'Paragraph Advanced Settings' option in the right-click menu, then switch to the 'Borders & Fill' tab within the 'Paragraph - Advanced Settings' window and click the color field next to the Background Color caption.
      6. select any color in the available palettes
      -

      After you select the necessary color using the Paragraph Background Color Icon icon, you'll be able to apply this color to any selected paragraph just clicking the Selected Paragraph Background Color icon (it displays the selected color), without the necessity to choose this color on the palette again. If you use the Background Color option at the right sidebar or within the 'Paragraph - Advanced Settings' window, remember that the selected color is not retained for quick access. (These options can be useful if you wish to select a different background color for a specific paragraph, while you are also using some general color selected with the help of the Paragraph Background Color Icon icon).

      +

      After you select the necessary color using the Paragraph background color Icon icon, you'll be able to apply this color to any selected paragraph just clicking the Selected paragraph background color icon (it displays the selected color), without the necessity to choose this color on the palette again. If you use the Background Color option at the right sidebar or within the 'Paragraph - Advanced Settings' window, remember that the selected color is not retained for quick access. (These options can be useful if you wish to select a different background color for a specific paragraph, while you are also using some general color selected with the help of the Paragraph background color Icon icon).


      To clear the background color of a certain paragraph,

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeColorScheme.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeColorScheme.htm index cda3a79e1..2572dfc4c 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeColorScheme.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeColorScheme.htm @@ -11,9 +11,9 @@

        Change color scheme

        Color schemes are applied to the whole document. They are used to quickly change the appearance of your document, since they are define the Theme Colors palette for document elements (font, background, tables, autoshapes, charts). If you've applied some Theme Colors to document elements and then selected a different Color Scheme, the applied colors in your document change correspondingly.

        -

        To change a color scheme, click the downward arrow next to the Change Color Scheme Change Color Scheme icon at the right part of the top toolbar and select the necessary color scheme from the available ones: Office, Grayscale, Apex, Aspect, Civic, Concourse, Equity, Flow, Foundry, Median, Metro, Module, Odulent, Oriel, Origin, Paper, Solstice, Technic, Trek, Urban, Verve.

        +

        To change a color scheme, click the downward arrow next to the Change color scheme Change color scheme icon at the Home tab of the top toolbar and select the necessary color scheme from the available ones: Office, Grayscale, Apex, Aspect, Civic, Concourse, Equity, Flow, Foundry, Median, Metro, Module, Odulent, Oriel, Origin, Paper, Solstice, Technic, Trek, Urban, Verve.

        Color Schemes

        -

        Once you select the preferred color scheme, you can select colors in a color palettes window that corresponds to the document element you want to apply the color to. For most of the document elements, the color palettes window can be accessed by clicking the colored box at the right sidebar when the necessary element is selected. For the font, this window can be opened using the downward arrow next to the Font Color Font Color icon at the top toolbar. The following palettes are available:

        +

        Once you select the preferred color scheme, you can select colors in a color palettes window that corresponds to the document element you want to apply the color to. For most of the document elements, the color palettes window can be accessed by clicking the colored box at the right sidebar when the necessary element is selected. For the font, this window can be opened using the downward arrow next to the Font color Font color icon at the Home tab of the top toolbar. The following palettes are available:

        Palette

        • Theme Colors - the colors that correspond to the selected color scheme of the document.
        • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeWrappingStyle.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeWrappingStyle.htm new file mode 100644 index 000000000..adb9de041 --- /dev/null +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/ChangeWrappingStyle.htm @@ -0,0 +1,67 @@ + + + + Change text wrapping + + + + + +
          +

          Change text wrapping

          +

          The Wrapping Style option determines the way the object is positioned relative to the text. You can change the text wrapping style for inserted objects, such as shapes, images, charts, text boxes or tables.

          +

          Change text wrapping for shapes, images, charts, text boxes

          +

          To change the currently selected wrapping style:

          +
            +
          1. select a separate object on the page left-clicking it. To select a text box, click on its border, not the text within it.
          2. +
          3. open the text wrapping settings: +
              +
            • switch to the the Layout tab of the top toolbar and click the arrow next to the Wrapping icon Wrapping icon, or
            • +
            • right-click the object and select the Wrapping Style option from the contextual menu, or
            • +
            • right-click the object, select the Advanced Settings option and switch to the Text Wrapping tab of the object Advanced Settings window.
            • +
            +
          4. +
          5. select the necessary wrapping style: +
              +
            • +

              Wrapping Style - Inline Inline - the object is considered to be a part of the text, like a character, so when the text moves, the object moves as well. In this case the positioning options are inaccessible.

              +

              If one of the following styles is selected, the object can be moved independently of the text and positioned on the page exactly:

              +
            • +
            • Wrapping Style - Square Square - the text wraps the rectangular box that bounds the object.

            • +
            • Wrapping Style - Tight Tight - the text wraps the actual object edges.

            • +
            • Wrapping Style - Through Through - the text wraps around the object edges and fills in the open white space within the object. So that the effect can appear, use the Edit Wrap Boundary option from the right-click menu.

            • +
            • Wrapping Style - Top and bottom Top and bottom - the text is only above and below the object.

            • +
            • Wrapping Style - In front In front - the object overlaps the text.

            • +
            • Wrapping Style - Behind Behind - the text overlaps the object.

            • +
            +
          6. +
          +

          If you select the Square, Tight, Through, or Top and bottom style, you will be able to set up some additional parameters - Distance from Text at all sides (top, bottom, left, right). To access these parameters, right-click the object, select the Advanced Settings option and switch to the Text Wrapping tab of the object Advanced Settings window. Set the necessary values and click OK.

          +

          If you select a wrapping style other than Inline, the Position tab is also available in the object Advanced Settings window. To learn more on these parameters, please refer to the corresponding pages with the instructions on how to work with shapes, images or charts.

          +

          If you select a wrapping style other than Inline, you can also edit the wrap boundary for images or shapes. Right-click the object, select the Wrapping Style option from the contextual menu and click the Edit Wrap Boundary option. Drag wrap points to customize the boundary. To create a new wrap point, click anywhere on the red line and drag it to the necessary position. Editing Wrap Boundary

          +

          Change text wrapping for tables

          +

          For tables, the following two wrapping styles are available: Inline and Flow.

          +

          To change the currently selected wrapping style:

          +
            +
          1. right-click the table,
          2. +
          3. open the text wrapping settings: +
              + +
            • select the Table Advanced Settings option and switch to the Text Wrapping tab of the Table - Advanced Settings window, or
            • +
            • select one of the following options from the contextual menu: +
                +
              • Wrapping Style - Inline is used to select the inline style (when the text is broken by the table) as well as the alignment: left, center, right.
              • +
              • Wrapping Style - Flow is used to select the flow style when the text is wrapped around the table.
              • +
              +
            • +
            +
          4. +
          +

          Using the Text Wrapping tab of the Table - Advanced Settings window you can also set up the following additional parameters:

          +
            +
          • For inline tables, you can set the table Alignment type (left, center or right) and Indent from left.
          • +
          • For floating tables, you can set the Distance from text and the table position at the Table Position tab.
          • +
          +
          + + \ No newline at end of file diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm index e8fe3e3ab..9ec503d98 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyClearFormatting.htm @@ -13,20 +13,20 @@

          To copy a certain text formatting,

          1. select the text passage which formatting you need to copy with the mouse or using the keyboard,
          2. -
          3. click the Copy Style Copy Style icon at the top toolbar (the mouse pointer will look like this Mouse pointer while pasting style),
          4. +
          5. click the Copy style Copy style icon at the Home tab of the top toolbar (the mouse pointer will look like this Mouse pointer while pasting style),
          6. select the text passage you want to apply the same formatting to.

          To apply the copied formatting to multiple text passages,

          1. select the text passage which formatting you need to copy with the mouse or using the keyboard,
          2. -
          3. double-click the Copy Style Copy Style icon at the top toolbar (the mouse pointer will look like this Mouse pointer while pasting style and the Copy Style icon will remain selected: Multiple copying style),
          4. +
          5. double-click the Copy style Copy style icon at the Home tab of the top toolbar (the mouse pointer will look like this Mouse pointer while pasting style and the Copy style icon will remain selected: Multiple copying style),
          6. select the necessary text passages one by one to apply the same formatting to each of them,
          7. -
          8. to exit this mode, click the Copy Style Multiple copying style icon once again or press the Esc key on the keyboard.
          9. +
          10. to exit this mode, click the Copy style Multiple copying style icon once again or press the Esc key on the keyboard.

          To quickly remove the applied formatting from your text,

          1. select the text passage which formatting you want to remove,
          2. -
          3. click the Clear Style Clear Style icon at the top toolbar.
          4. +
          5. click the Clear style Clear style icon at the Home tab of the top toolbar.
        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm index a27c7bba2..103c25423 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/CopyPasteUndoRedo.htm @@ -10,7 +10,7 @@

        Copy/paste text passages, undo/redo your actions

        Use basic clipboard operations

        -

        To cut, copy and paste text passages and inserted objects (autoshapes, images, charts) within the current document use the corresponding options from the right-click menu or icons at the top toolbar:

        +

        To cut, copy and paste text passages and inserted objects (autoshapes, images, charts) within the current document use the corresponding options from the right-click menu or icons available at any tab of the top toolbar:

        • Cut – select a text fragment or an object and use the Cut option from the right-click menu to delete the selection and send it to the computer clipboard memory. The cut data can be later inserted to another place in the same document.
        • Copy – select a text fragment or an object and use the Copy option from the right-click menu, or the Copy Copy icon icon at the top toolbar to copy the selection to the computer clipboard memory. The copied data can be later inserted to another place in the same document.
        • @@ -32,7 +32,7 @@
        • Keep text only - allows to paste the text without its original formatting.

        Undo/redo your actions

        -

        To perform the undo/redo operations, use the corresponding icons at the top toolbar or keyboard shortcuts:

        +

        To perform the undo/redo operations, use the corresponding icons available at any tab of the top toolbar or keyboard shortcuts:

        • Undo – use the Undo Undo icon icon at the top toolbar or the Ctrl+Z key combination to undo the last operation you performed.
        • Redo – use the Redo Redo icon icon at the top toolbar or the Ctrl+Y key combination to redo the last undone operation.
        • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/CreateLists.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/CreateLists.htm index 38f041a89..73749e8a9 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/CreateLists.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/CreateLists.htm @@ -13,6 +13,7 @@

          To create a list in your document,

          1. place the cursor to the position where a list will be started (this can be a new line or the already entered text),
          2. +
          3. switch to the Home tab of the top toolbar,
          4. select the list type you would like to start:
            • Unordered list with markers is created using the Bullets Unordered List icon icon situated at the top toolbar
            • @@ -23,7 +24,7 @@
            • now each time you press the Enter key at the end of the line a new ordered or unordered list item will appear. To stop that, press the Backspace key and continue with the common text paragraph.
          -

          You can also change the text indentation in the lists and their nesting using the Outline Outline icon, Decrease Indent Decrease Indent icon, and Increase Indent Increase Indent icon icons at the top toolbar.

          +

          You can also change the text indentation in the lists and their nesting using the Outline Outline icon, Decrease indent Decrease indent icon, and Increase indent Increase indent icon icons at the Home tab of the top toolbar.

          Note: the additional indentation and spacing parameters can be changed at the right sidebar and in the advanced settings window. To learn more about it, read the Change paragraph indents and Set paragraph line spacing section.

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/DecorationStyles.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/DecorationStyles.htm index 3e0744702..c01b05fc6 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/DecorationStyles.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/DecorationStyles.htm @@ -10,7 +10,7 @@

        Apply font decoration styles

        -

        You can apply various font decoration styles using the corresponding icons situated at the top toolbar.

        +

        You can apply various font decoration styles using the corresponding icons situated at the Home tab of the top toolbar.

        Note: in case you want to apply the formatting to the text already present in the document, select it with the mouse or using the keyboard and apply the formatting.

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/FontTypeSizeColor.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/FontTypeSizeColor.htm index 89c6545d4..c8b7b60b4 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/FontTypeSizeColor.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/FontTypeSizeColor.htm @@ -10,17 +10,17 @@

        Set font type, size, and color

        -

        You can select the font type, its size and color using the corresponding icons situated at the top toolbar.

        +

        You can select the font type, its size and color using the corresponding icons situated at the Home tab of the top toolbar.

        Note: in case you want to apply the formatting to the text already present in the document, select it with the mouse or using the keyboard and apply the formatting.

        - - + + - - + + @@ -34,13 +34,13 @@ - - - + + + - - + +
        Font NameFont NameFontFont Is used to select one of the fonts from the list of the available ones.
        Font SizeFont SizeFont sizeFont size Is used to select among the preset font size values from the dropdown list, or can be entered manually to the font size field.
        Is used to change the font size making it smaller one point each time the button is pressed.
        Highlight ColorHighlight ColorIs used to mark separate sentences, phrases, words, or even characters by adding a color band that imitates highlighter pen effect around the text. You can select the necessary part of the text and then click the downward arrow next to the icon to select a color on the palette (this color set does not depend on the selected Color Scheme and includes 16 colors) - the color will be applied to the text selection. Alternatively, you can first choose a highlight color and then start selecting the text with the mouse - the mouse pointer will look like this Mouse pointer while highlighting and you'll be able to highlight several different parts of your text sequentially. To stop highlighting just click the icon once again. To clear the highlight color, choose the No Fill option. Highlight Color is different from the Background Color Paragraph Background Color Icon as the latter is applied to the whole paragraph and completely fills all the paragraph space from the left page margin to the right page margin.Highlight colorHighlight colorIs used to mark separate sentences, phrases, words, or even characters by adding a color band that imitates highlighter pen effect around the text. You can select the necessary part of the text and then click the downward arrow next to the icon to select a color on the palette (this color set does not depend on the selected Color scheme and includes 16 colors) - the color will be applied to the text selection. Alternatively, you can first choose a highlight color and then start selecting the text with the mouse - the mouse pointer will look like this Mouse pointer while highlighting and you'll be able to highlight several different parts of your text sequentially. To stop highlighting just click the icon once again. To clear the highlight color, choose the No Fill option. Highlight color is different from the Background color Paragraph background color icon as the latter is applied to the whole paragraph and completely fills all the paragraph space from the left page margin to the right page margin.
        Font ColorFont ColorFont colorFont color Is used to change the color of the letters/characters in the text. By default, the automatic font color is set in a new blank document. It is displayed as a black font on the white background. If you change the background color into black, the font color will automatically change into white to keep the text clearly visible. To choose a different color, click the downward arrow next to the icon and select a color from the available palettes (the colors on the Theme Colors palette depend on the selected color scheme). After you change the default font color, you can use the Automatic option in the color palettes window to quickly restore the automatic color for the selected text passage.
        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/FormattingPresets.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/FormattingPresets.htm index bec058738..6d0731be3 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/FormattingPresets.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/FormattingPresets.htm @@ -14,7 +14,7 @@

        To apply one of the available text formatting styles,

        1. place the cursor within the paragraph you need, or select several paragraphs you want to apply one of the formatting styles to,
        2. -
        3. select the needed style from the style gallery on the right at the top toolbar.
        4. +
        5. select the needed style from the style gallery on the right at the Home tab of the top toolbar.

        The following formatting styles are available: normal, no spacing, heading 1-9, title, subtitle, quote, intense quote, list paragraph.

        Formatting styles

        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm index 099ed430b..3887e14b0 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertAutoshapes.htm @@ -13,7 +13,8 @@

        Insert an autoshape

        To add an autoshape to your document,

          -
        1. click the Insert Autoshape Insert Autoshape icon icon at the top toolbar,
        2. +
        3. switch to the Insert tab of the top toolbar,
        4. +
        5. click the Shape icon Shape icon at the top toolbar,
        6. select one of the available autoshape groups: basic shapes, figured arrows, math, charts, stars & ribbons, callouts, buttons, rectangles, lines,
        7. click the necessary autoshape within the selected group,
        8. place the mouse cursor where you want the shape to be put,
        9. @@ -26,7 +27,7 @@

          When modifying some shapes, for example figured arrows or callouts, the yellow diamond-shaped Yellow diamond icon icon is also available. It allows you to adjust some aspects of the shape, for example, the length of the head of an arrow.

          To alter the autoshape position, use the Arrow icon that appears after hovering your mouse cursor over the autoshape. Drag the autoshape to the necessary position without releasing the mouse button. When you move the autoshape, guide lines are displayed to help you position the object on the page precisely (if a wrapping style other than inline is selected). - To move the autoshape by three-pixel increments, hold down the Ctrl key and use the keybord arrows. + To move the autoshape by one-pixel increments, hold down the Ctrl key and use the keybord arrows. To move the autoshape strictly horizontally/vertically and prevent it from moving in a perpendicular direction, hold down the Shift key when dragging.

          To rotate the autoshape, hover the mouse cursor over the rotation handle Rotation handle and drag it clockwise or counterclockwise. To constrain the rotation angle to 15 degree increments, hold down the Shift key while rotating.


          @@ -34,13 +35,13 @@

          To align and arrange autoshapes, use the right-click menu. The menu options are:

          • Cut, Copy, Paste - standard options which are used to cut or copy a selected text/object and paste a previously cut/copied text passage or object to the current cursor position.
          • -
          • Arrange is used to bring the selected autoshape to foreground, send to background, move forward or backward as well as group or ungroup shapes to perform operations with several of them at once.
          • -
          • Align is used to align the shape left, center, right, top, middle, bottom.
          • +
          • Arrange is used to bring the selected autoshape to foreground, send to background, move forward or backward as well as group or ungroup shapes to perform operations with several of them at once. To learn more on how to arrange objects you can refer to this page.
          • +
          • Align is used to align the shape left, center, right, top, middle, bottom. To learn more on how to align objects you can refer to this page.
          • Wrapping Style is used to select a text wrapping style from the available ones - inline, square, tight, through, top and bottom, in front, behind - or edit the wrap boundary. The Edit Wrap Boundary option is available only if you select a wrapping style other than Inline. Drag wrap points to customize the boundary. To create a new wrap point, click anywhere on the red line and drag it to the necessary position. Editing Wrap Boundary
          • Shape Advanced Settings is used to open the 'Shape - Advanced Settings' window.

          -

          Some of the autoshape settings can be altered using the Shape Settings tab of the right sidebar. To activate it click the shape and choose the Shape Settings Shape Settings icon icon on the right. Here you can change the following properties:

          +

          Some of the autoshape settings can be altered using the Shape settings tab of the right sidebar. To activate it click the shape and choose the Shape settings Shape settings icon icon on the right. Here you can change the following properties:

          • Fill - use this section to select the autoshape fill. You can choose the following options:
              @@ -127,14 +128,14 @@
            • Wrapping Style - Square Square - the text wraps the rectangular box that bounds the shape.

            • Wrapping Style - Tight Tight - the text wraps the actual shape edges.

            • Wrapping Style - Through Through - the text wraps around the shape edges and fills in the open white space within the shape. So that the effect can appear, use the Edit Wrap Boundary option from the right-click menu.

            • -
            • Wrapping Style - Top and Bottom Top and Bottom - the text is only above and below the shape.

            • -
            • Wrapping Style - In Front In Front - the shape overlaps the text.

            • +
            • Wrapping Style - Top and bottom Top and bottom - the text is only above and below the shape.

            • +
            • Wrapping Style - In front In front - the shape overlaps the text.

            • Wrapping Style - Behind Behind - the text overlaps the shape.

          If you select the square, tight, through, or top and bottom style you will be able to set up some additional parameters - distance from text at all sides (top, bottom, left, right).

          -

          Shape - Advanced Settings

          +

          Shape - Advanced Settings

          The Position tab is available only if you select a wrapping style other than inline. This tab contains the following parameters that vary depending on the selected wrapping style:

          • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm index e17118c6c..78b6d856f 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertCharts.htm @@ -14,7 +14,8 @@

            To insert a chart into your document,

            1. put the cursor at the place where you want to add a chart,
            2. -
            3. click the Insert Chart Insert Chart icon icon at the top toolbar,
            4. +
            5. switch to the Insert tab of the top toolbar,
            6. +
            7. click the Chart icon Chart icon at the top toolbar,
            8. select the needed chart type from the available ones - Column, Line, Pie, Bar, Area, XY (Scatter), or Stock,

              Note: for Column, Line, Pie, or Bar charts, a 3D format is also available.

            9. @@ -176,7 +177,7 @@

              Adjust chart settings

              Chart Settings tab

              -

              Some of the chart settings can be altered using the Chart Settings tab of the right sidebar. To activate it click the chart and choose the Chart Settings Chart Settings icon icon on the right. Here you can change the following properties:

              +

              Some of the chart settings can be altered using the Chart settings tab of the right sidebar. To activate it click the chart and choose the Chart settings Chart settings icon icon on the right. Here you can change the following properties:

              • Size is used to view the current chart Width and Height.
              • Wrapping Style is used to select a text wrapping style from the available ones - inline, square, tight, through, top and bottom, in front, behind (for more information see the advanced settings description below).
              • @@ -190,13 +191,13 @@

                Some of these options you can also find in the right-click menu. The menu options are:

                • Cut, Copy, Paste - standard options which are used to cut or copy a selected text/object and paste a previously cut/copied text passage or object to the current cursor position.
                • -
                • Arrange is used to bring the selected chart to foreground, send to background, move forward or backward as well as group or ungroup charts to perform operations with several of them at once.
                • -
                • Align is used to align the chart left, center, right, top, middle, bottom.
                • +
                • Arrange is used to bring the selected chart to foreground, send to background, move forward or backward as well as group or ungroup charts to perform operations with several of them at once. To learn more on how to arrange objects you can refer to this page.
                • +
                • Align is used to align the chart left, center, right, top, middle, bottom. To learn more on how to align objects you can refer to this page.
                • Wrapping Style is used to select a text wrapping style from the available ones - inline, square, tight, through, top and bottom, in front, behind. The Edit Wrap Boundary option is unavailable for charts.
                • Edit Data is used to open the 'Chart Editor' window.
                • Chart Advanced Settings is used to open the 'Chart - Advanced Settings' window.
                -

                When the chart is selected, the Shape Settings Shape Settings icon icon is also available on the right, since a shape is used as a background for the chart. You can click this icon to open the Shape Settings tab at the right sidebar and adjust the shape Fill, Stroke and Wrapping Style. Note that you cannot change the shape type.

                +

                When the chart is selected, the Shape settings Shape settings icon icon is also available on the right, since a shape is used as a background for the chart. You can click this icon to open the Shape settings tab at the right sidebar and adjust the shape Fill, Stroke and Wrapping Style. Note that you cannot change the shape type.


                To change the chart advanced settings, click the needed chart with the right mouse button and select Chart Advanced Settings from the right-click menu or just click the Show advanced settings link at the right sidebar. The chart properties window will open:

                Chart - Advanced Settings: Size

                @@ -215,15 +216,15 @@
              • Wrapping Style - Square Square - the text wraps the rectangular box that bounds the chart.

              • Wrapping Style - Tight Tight - the text wraps the actual chart edges.

              • Wrapping Style - Through Through - the text wraps around the chart edges and fills in the open white space within the chart.

              • -
              • Wrapping Style - Top and Bottom Top and Bottom - the text is only above and below the chart.

              • -
              • Wrapping Style - In Front In Front - the chart overlaps the text.

              • +
              • Wrapping Style - Top and bottom Top and bottom - the text is only above and below the chart.

              • +
              • Wrapping Style - In front In front - the chart overlaps the text.

              • Wrapping Style - Behind Behind - the text overlaps the chart.

          If you select the square, tight, through, or top and bottom style you will be able to set up some additional parameters - distance from text at all sides (top, bottom, left, right).

          -

          Chart - Advanced Settings: Position

          -

          The Position tab is available only if you select a wrapping style other than inline. This tab contains the following parameters that vary depending on the selected wrapping style:

          +

          Chart - Advanced Settings: Position

          +

          The Position tab is available only if you select a wrapping style other than inline. This tab contains the following parameters that vary depending on the selected wrapping style:

          • The Horizontal section allows you to select one of the following three chart positioning types: diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm index f289ec03f..974b3312d 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertDropCap.htm @@ -13,7 +13,8 @@

            To add a drop cap,

            1. put the cursor within the paragraph you need,
            2. -
            3. click the Insert Drop Cap Insert Drop Cap icon icon at the top toolbar,
            4. +
            5. switch to the Insert tab of the top toolbar,
            6. +
            7. click the Drop Cap icon Drop Cap icon at the top toolbar,
            8. in the opened drop-down list select the option you need:
              • In Text Insert Drop Cap - In Text - to place the drop cap within the paragraph.
              • @@ -22,11 +23,11 @@

            Drop Cap exampleThe first character of the selected paragraph will be transformed into a drop cap. If you need the drop cap to include some more characters, add them manually: select the drop cap and type in other letters you need.

            -

            To adjust the drop cap appearance (i.e. font size, type, decoration style or color), select the letter and use the corresponding icons at the top toolbar.

            +

            To adjust the drop cap appearance (i.e. font size, type, decoration style or color), select the letter and use the corresponding icons at the Home tab of the top toolbar.

            When the drop cap is selected, it's surrounded by a frame (a container used to position the drop cap on the page). You can quickly change the frame size dragging its borders or change its position using the Arrow icon that appears after hovering your mouse cursor over the frame.

            -

            To delete the added drop cap, select it, click the Insert Drop Cap Insert Drop Cap icon icon at the top toolbar and choose the None Insert Drop Cap - None option from the drop-down list.

            +

            To delete the added drop cap, select it, click the Drop Cap icon Drop Cap icon at the Insert tab of the top toolbar and choose the None Insert Drop Cap - None option from the drop-down list.


            -

            To adjust the added drop cap parameters, select it, click the Insert Drop Cap Insert Drop Cap icon icon at the top toolbar and choose the Drop Cap Settings option from the drop-down list. The Drop Cap - Advanced Settings window will open:

            +

            To adjust the added drop cap parameters, select it, click the Drop Cap icon Drop Cap icon at the Insert tab of the top toolbar and choose the Drop Cap Settings option from the drop-down list. The Drop Cap - Advanced Settings window will open:

            Drop Cap - Advanced Settings

            The Drop Cap tab allows to set the following parameters:

              diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index ec20940a1..777e7c845 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -14,11 +14,12 @@

              To insert an equation from the gallery,

              1. put the cursor within the necessary line ,
              2. -
              3. click the arrow next to the Insert Equation Insert Equation icon icon at the top toolbar,
              4. +
              5. switch to the Insert tab of the top toolbar,
              6. +
              7. click the arrow next to the Equation icon Equation icon at the top toolbar,
              8. in the opened drop-down list select the equation category you need. The following categories are currently available: Symbols, Fractions, Scripts, Radicals, Integrals, Large Operators, Brackets, Functions, Accents, Limits and Logarithms, Operators, Matrices,
              9. click the certain symbol/equation in the corresponding set of templates.
              -

              The selected symbol/equation box will be inserted at the cursor position. If the selected line is empty, the equation will be centered. To align such an equation left or right, click on the equation box and use the Align Left icon or Align Right icon icon at the top toolbar.

              +

              The selected symbol/equation box will be inserted at the cursor position. If the selected line is empty, the equation will be centered. To align such an equation left or right, click on the equation box and use the Align Left icon or Align Right icon icon at the Home tab of the top toolbar.

              Inserted Equation

              Each equation template represents a set of slots. Slot is a position for each element that makes up the equation. An empty slot (also called as a placeholder) has a dotted outline Equation Placeholder. You need to fill in all the placeholders specifying the necessary values.

              Note: to start creating an equation, you can also use the Alt + = keyboard shortcut.

              @@ -29,7 +30,7 @@

              Once the insertion point is positioned, you can fill in the placeholder:

              • enter the desired numeric/literal value using the keyboard,
              • -
              • insert a special character using the Symbols palette from the Insert Equation Insert Equation icon menu on the top toolbar,
              • +
              • insert a special character using the Symbols palette from the Equation icon Equation menu at the Insert tab of the top toolbar,
              • add another equation template from the palette to create a complex nested equation. The size of the primary equation will be automatically adjusted to fit its content. The size of the nested equation elements depends on the primary equation placeholder size, but it cannot be smaller than the sub-subscript size.

              @@ -44,8 +45,8 @@

              When entering the values of the mathematical expressions, you do not need to use Spacebar as the spaces between the characters and signs of operations are set automatically.

              If the equation is too long and does not fit to a single line, automatic line breaking occurs as you type. You can also insert a line break in a specific position by right-clicking on a mathematical operator and selecting the Insert manual break option from the menu. The selected operator will start a new line. Once the manual line break is added, you can press the Tab key to align the new line to any math operator of the previous line. To delete the added manual line break, right-click on the mathematical operator that starts a new line and select the Delete manual break option.

              Format equations

              -

              To increase or decrease the equation font size, click anywhere within the equation box and use the Increment font size and Decrement font size buttons on the top toolbar or select the necessary font size from the list. All the equation elements will change correspondingly.

              -

              The letters within the equation are italicized by default. If necessary, you can change the font style (bold, italic, strikeout) or color for a whole equation or its part. The underlined style can be applied to the entire equation only, not to individual characters. Select the necessary part of the equation by clicking and dragging. The selected part will be highlighted blue. Then use the necessary buttons on the top toolbar to format the selection. For example, you can remove the italic format for ordinary words that are not variables or constants.

              +

              To increase or decrease the equation font size, click anywhere within the equation box and use the Increment font size and Decrement font size buttons at the Home tab of the top toolbar or select the necessary font size from the list. All the equation elements will change correspondingly.

              +

              The letters within the equation are italicized by default. If necessary, you can change the font style (bold, italic, strikeout) or color for a whole equation or its part. The underlined style can be applied to the entire equation only, not to individual characters. Select the necessary part of the equation by clicking and dragging. The selected part will be highlighted blue. Then use the necessary buttons at the Home tab of the top toolbar to format the selection. For example, you can remove the italic format for ordinary words that are not variables or constants.

              Edited Equation

              To modify some equation elements you can also use the right-click menu options:

              • To change the Fractions format, you can right-click on a fraction and select the Change to skewed/linear/stacked fraction option from the menu (the available options differ depending on the selected fraction type).
              • diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm index 13feac827..6a6f4c7e1 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertFootnotes.htm @@ -14,8 +14,9 @@

                To insert a footnote into your document,

                1. position the insertion point at the end of the text passage that you want to add a footnote to,
                2. -
                3. click the Footnotes Footnotes icon icon at the top toolbar, or
                  - click the arrow next to the Footnotes Footnotes icon icon and select the Insert Footnote option from the menu, +
                4. switch to the Insert tab of the top toolbar,
                5. +
                6. click the Footnote icon Footnote icon at the top toolbar, or
                  + click the arrow next to the Footnote icon Footnote icon and select the Insert Footnote option from the menu,

                  The footnote mark (i.e. the superscript character that indicates a footnote) appears in the document text and the insertion point moves to the bottom of the current page.

                7. type in the footnote text.
                8. @@ -26,13 +27,13 @@

                  Footnote text

                  To easily navigate between the added footnotes within the document text,

                    -
                  1. click the arrow next to the Footnotes Footnotes icon icon,
                  2. +
                  3. click the arrow next to the Footnote icon Footnote icon at the Insert tab of the top toolbar,
                  4. in the Go to Footnotes section, use the Previous footnote icon arrow to go to the previous footnote or the Next footnote icon arrow to go to the next footnote.

                  To edit the footnotes settings,

                    -
                  1. click the arrow next to the Footnotes Footnotes icon icon at the top toolbar,
                  2. +
                  3. click the arrow next to the Footnote icon Footnote icon at the Insert tab of the top toolbar,
                  4. select the Notes Settings option from the menu,
                  5. change the current parameters in the Notes Settings window that opens:

                    Footnotes Settings window

                    @@ -69,7 +70,7 @@

                    To remove a single footnote, position the insertion point directly before the footnote mark in the document text and press Delete. Other footnotes will be renumbered automatically.

                    To delete all the footnotes in the document,

                      -
                    1. click the arrow next to the Footnotes Footnotes icon icon at the top toolbar,
                    2. +
                    3. click the arrow next to the Footnote icon Footnote icon at the Insert tab of the top toolbar,
                    4. select the Delete All Footnotes option from the menu.
        diff --git a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm index d12ab703b..eae9a0247 100644 --- a/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm +++ b/apps/documenteditor/main/resources/help/en/UsageInstructions/InsertHeadersFooters.htm @@ -12,7 +12,8 @@

        Insert headers and footers

        To add a header or footer to your document or edit the existing one,

          -
        1. click the Edit Header or Footer Edit Header or Footer icon icon at the top toolbar,
        2. +
        3. switch to the Insert tab of the top toolbar,
        4. +
        5. click the Header/Footer icon Header/Footer icon at the top toolbar,
        6. select one of the following options: